Error when deploying code to jetson nano

조회 수: 3 (최근 30일)
Abdussalam Elhanashi
Abdussalam Elhanashi 2020년 6월 8일
댓글: Ram Kokku 2023년 1월 15일
Hi
I have a problem when i am deploying this code to jetson nano .I am using MATLAB 2020a . I am using raspi camera v2
This error happens when i add function for measuring frames per seconds fps
when i remove function for measuring frames per seconds , the deployment passed successfully
function yolo2detectobject()
%#codegen
%Copyright 2019 - 2019 The MathWorks, Inc.
%Load the pre-trained detection network
persistent yolov2Obj;
if isempty(yolov2Obj)
yolov2Obj = coder.loadDeepLearningNetwork('detectorYolo2.mat');
end
hwobj = jetson;
w = camera(hwobj,"vi-output, imx219 6-0010",[1280 720]);
d = imageDisplay(hwobj);
for k = 1:1800
% Capture the image from the webcam on hardware.
I = snapshot(w);
I=imresize(I,[640 480]);
fps = 0;
avgfps = [];
tic;
% Run the detector on the input test image
[bboxes, scores, ~] = detect(yolov2Obj, I,'Threshold',0.5);
newt = toc;
% fps
fps = .9*fps + .1*(1/newt);
avgfps = [avgfps, fps]; %#ok<NASGU,AGROW>
% Insert bounding box to test image
if isempty(scores) == 0
I = insertObjectAnnotation(I, 'rectangle', bboxes, scores);
I = insertText(I , [1, 1], sprintf('FPS %2.2f', fps));
end
% Display output on the target monitor
I = insertText(I , [1, 1], sprintf('FPS %2.2f', fps));
image(d, I);
end
end
I got this error
Error executing command "touch -c /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/*.*;make -f yolo2detectobject_rtw.mk all MATLAB_WORKSPACE="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a" -C /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject". Details:
STDERR: /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/frameReader.c: In function getPathAndName:
/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/frameReader.c:68:10: warning: implicit declaration of function ‘strdup’ [-Wimplicit-function-declaration]
dirc = strdup(fullname);
^~~~~~
/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/frameReader.c:68:10: warning: incompatible implicit declaration of built-in function ‘strdup’
In file included from /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/frameReader.c:2:0:
/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/frameReader.c: In function initializeVideoPipeline:
/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/frameReader.h:19:47: warning: too many arguments for format [-Wformat-extra-args]
#define MW_ERROR_ARGS(msg,arg) fprintf(stderr,"%s", msg, arg);
^
/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/frameReader.c:343:9: note: in expansion of macro ‘MW_ERROR_ARGS’
MW_ERROR_ARGS("Error: Creating '%s' element.\n",gstSrcElement);
^~~~~~~~~~~~~
In file included from /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/getCameraProps.h:18:0,
from /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/getCameraProps.c:2:
/usr/include/linux/videodev2.h:2225:20: error: field timestamphas incomplete type
struct timespec timestamp;
^~~~~~~~~
/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/getCameraProps.c: In function getCameraCaps:
/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/getCameraProps.c:60:31: warning: comparison between pointer and integer
while (!(caps.card[srcidx]==NULL))
^~
make: *** [getCameraProps.o] Error 1
STDOUT: make: Entering directory '/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject'
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWYoloExtractionLayer.o MWYoloExtractionLayer.cpp
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWYoloSoftmaxLayer.o MWYoloSoftmaxLayer.cpp
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o cnn_api.o cnn_api.cpp
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWCNNLayerImpl.o MWCNNLayerImpl.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWConvLayerImpl.o MWConvLayerImpl.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWDepthConcatenationLayerImpl.o MWDepthConcatenationLayerImpl.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWExponentialLayerImpl.o MWExponentialLayerImpl.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWExponentialLayerImplKernel.o MWExponentialLayerImplKernel.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWFusedConvReLULayerImpl.o MWFusedConvReLULayerImpl.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWSigmoidLayerImpl.o MWSigmoidLayerImpl.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWYoloExtractionLayerImpl.o MWYoloExtractionLayerImpl.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWYoloExtractionLayerImplKernel.o MWYoloExtractionLayerImplKernel.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWYoloSoftmaxLayerImpl.o MWYoloSoftmaxLayerImpl.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o MWTargetNetworkImpl.o MWTargetNetworkImpl.cu
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o rt_nonfinite.o /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/rt_nonfinite.cpp
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o rtGetNaN.o /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/rtGetNaN.cpp
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o rtGetInf.o /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/rtGetInf.cpp
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o frameReader.o /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/frameReader.c
nvcc -rdc=true -Xcudafe "--diag_suppress=unsigned_compare_with_zero" -c -Xcompiler -MMD,-MP -O2 -Xcompiler `pkg-config --cflags --libs gstreamer-app-1.0` -arch sm_35 -D_MW_MATLABTGT_ -D_POSIX_C_SOURCE=199309L -DMW_CUDA_ARCH=350 -D__MW_TARGET_USE_HARDWARE_RESOURCES_H__ -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -DMW_DL_DATA_PATH="/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject" -DMW_SCHED_OTHER=1 -DARM_PROJECT -D_USE_TARGET_UDP_ -D_RUNONTARGETHARDWARE_BUILD_ -DSTACK_SIZE=200000 -DMODEL=yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10 -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/eml/externalDependency/timefun -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/toolbox/vision/builtins/src/vision/export/include/vision -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Users/Abdussalam/Desktop/Train_R-CNN_SmokeDetector10/codegen/exe/yolo2detectobject/examples -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/include -I/home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/Program_Files/MATLAB/R2020a/extern/include -o getCameraProps.o /home/jetsonnano3/remoteBuildTest/MATLAB_ws/R2020a/C/ProgramData/MATLAB/SupportPackages/R2020a/toolbox/target/supportpackages/nvidia/sources/server/getCameraProps.c
  댓글 수: 2
Nurul Farhana Mohd Fadzli
Nurul Farhana Mohd Fadzli 2023년 1월 7일
Hi @Abdussalam Elhanashi, did you manage to solve this problem? If yes, I hope you can help me too. I am having the same problem.
Ram Kokku
Ram Kokku 2023년 1월 15일
@Abdussalam Elhanashi it looks like the build-system fails to locate time.h header file on your board. Can you check if your system has time.h somewhere? if yes, add the directory path to the header include paths by using coder.updateBuildInfo. for example, add the following line to your entry-point function.
coder.updateBuildInfo('addIncludePaths', <path of time.h>);

댓글을 달려면 로그인하십시오.

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by