Force MATLAB code to run on hardware

1 vue (au cours des 30 derniers jours)
Shehryaar Ali
Shehryaar Ali le 18 Fév 2022
I have written a code that also uses different function from toolboxes that are not yet supported for code generation in Simulink. It works fine in MATLAB, but I have to use Interpreted MATLAB Functions in Simulink. As it is important, I really want to run it on hardware, is there a workaround to do that?
What I think, is to use some kind of Machine Learning so that I can store the output to the function for each and every input, hence making a dataset. And then apply some ML algorithm which learns it, and thus give accurate results as no input would be unfamiliar, so that it can be implemented in Simulink without interpretation and then on Hardware. Is it possible?
  2 commentaires
Steven Lord
Steven Lord le 18 Fév 2022
What functions does your code use that are not yet supported for code generation in Simulink?
Shehryaar Ali
Shehryaar Ali le 6 Avr 2022
Sorry for late reply, but these function are primarily from Optimization Toolbox.

Connectez-vous pour commenter.

Réponses (2)

Ashutosh Thakur
Ashutosh Thakur le 22 Jan 2024
Hi Shehryaar,
In order to deploy a Machine Learning model on hardware which contains function from toolboxes which are not supported for code generation, Kindly follow the below mentioned suggestions while deploying the MATLAB code in hardware:
  • After training the model on the dataset, the next step is to convert it into target language code this could be C/C++.
  • Since you have a working MATLAB code, I suggest you to use MATLAB Coder product to convert the MATLAB code to C++ code. Kindly note that MATLAB Coder too have difficulty is producing code for some MATLAB functions so before using MATLAB code make sure that the functions present in MATLAB code are supported or not, the list of unsupported functions can be found in the following link: https://www.mathworks.com/help/compiler/unsupported-functions.html.
  • Deep Learning Toolbox product can also be used to train a model and generate code depending on the target hardware. It supports the generation of C/C++, CUDA or HDL code for the model.
Please take reference from the following documentation links regarding The MATLAB Coder and Deep Learning Toolbox:
I hope the above mentioned suggestions and links helped you in deploying the code in hardware.

Kiran Kintali
Kiran Kintali le 22 Jan 2024
Please share your code / model that you want to generate HDL from.
if you are taking the ML/DL route, please consider https://www.mathworks.com/products/deep-learning-hdl.html
Deep Learning HDL Toolbox
Prototype and deploy deep learning networks on FPGAs and SoCs

Catégories

En savoir plus sur Code Generation dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by