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!