DL + GPU Coder: Code generation for SequenceInputLayer is not supported.
显示 更早的评论
Hello guys,
I have a DL model I'd like to use to import to Simulink, with the help of the GPU coder. Is a simple function, and my model is uploaded in this message. The error I get when I try to run the "Check for Issues" option in the GPU Coder app from Matlab, is the following:
??? Error generating code for network n_0. Code generation for SequenceInputLayer SequenceInputLayer is not supported.
The function is the following:
function out=modelPred(data)
out=zeros(1,4);
model=coder.loadDeepLearningNetwork('n.mat','n');
out(1,:)=predict(model, data);
end
The full error log looks like this, see the screenshot:

Do you know any way in which I can solve this issue? Thanks in advance.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Get Started with GPU Coder 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!