You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello everyone, I encountered some issues while modifying resnet50.c. I only added: printf("%s\n", argv[1]); printf("%s\n", argv[2]); printf("%s\n", argv[3]);
to check the command line arguments of the main function. However, after compiling and simulating with Spike, it gives an error: (/home/zhangjie/chipyard/.conda-env) zhangjie@devjz-ubt20-s01:~/chipyard/generators/gemmini$ ./scripts/run-spike.sh resnet50 *** FAILED *** (tohost = 1337)
However, when I further simplified the code to: printf("1\n");
it worked successfully. What could be the reason for this?
The text was updated successfully, but these errors were encountered:
Hello everyone, I encountered some issues while modifying resnet50.c. I only added:
printf("%s\n", argv[1]); printf("%s\n", argv[2]); printf("%s\n", argv[3]);
to check the command line arguments of the main function. However, after compiling and simulating with Spike, it gives an error:
(/home/zhangjie/chipyard/.conda-env) zhangjie@devjz-ubt20-s01:~/chipyard/generators/gemmini$ ./scripts/run-spike.sh resnet50 *** FAILED *** (tohost = 1337)
However, when I further simplified the code to:
printf("1\n");
it worked successfully. What could be the reason for this?
The text was updated successfully, but these errors were encountered: