-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setup issue #5
Comments
use CFLAGS |
Hi I also got this error, have you fixed this?
|
Hello, have you resolved this issue? |
First, should use CUDA 9.0 not CUDA 11.0, and downgrade GCC & G++(So I directly use ubuntu 16.04, whose default GCC version is 5.4.0). After change to CUDA 9.0, when run this repo's cutlass, there may be error like:
My solution is to modify the <INITIAL,NOT_OPCODE,IN_INST,IN_FUNC_DECL>{
\.a\.sync\.aligned TC; yylval->int_value = LOAD_A; return WMMA_DIRECTIVE;
\.b\.sync\.aligned TC; yylval->int_value = LOAD_B; return WMMA_DIRECTIVE;
\.c\.sync\.aligned TC; yylval->int_value = LOAD_C; return WMMA_DIRECTIVE;
\.d\.sync\.aligned TC; yylval->int_value = STORE_D; return WMMA_DIRECTIVE;
+ \.a\.sync TC; yylval->int_value = LOAD_A; return WMMA_DIRECTIVE;
+ \.b\.sync TC; yylval->int_value = LOAD_B; return WMMA_DIRECTIVE;
+ \.c\.sync TC; yylval->int_value = LOAD_C; return WMMA_DIRECTIVE;
+ \.d\.sync TC; yylval->int_value = STORE_D; return WMMA_DIRECTIVE;
\.mma\.sync\.aligned TC;yylval->int_value=MMA; return WMMA_DIRECTIVE;
+ \.mma\.sync TC;yylval->int_value=MMA; return WMMA_DIRECTIVE; Then it can run in my environment. |
Hi there,
I have successfully run gpgpu-sim, and followed the steps to run cutlass-test with gpgpu-sim, but I got the output like this:
Could you tell me how to solve it? Thank you.
The text was updated successfully, but these errors were encountered: