-
Notifications
You must be signed in to change notification settings - Fork 150
Branch Elimination + Construction Utils #2201
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
base: main
Are you sure you want to change the base?
Changes from all commits
fc58b3e
f019f98
eadeda5
6a603c4
358aef3
60f7f9d
ce95213
1913054
e504b9d
f5bdd91
d0e6f2c
d4c7f70
e7e0c85
9268704
c6f15af
47ba690
2db5a92
38aa67c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -261,7 +261,7 @@ required: | |
| type: str | ||
| title: Arguments | ||
| description: Compiler argument flags | ||
| default: '-std=c++14 -fPIC -Wall -Wextra -O3 -march=native -ffast-math -Wno-unused-parameter -Wno-unused-label' | ||
| default: '-fopenmp -fPIC -Wall -Wextra -O3 -march=native -ffast-math -Wno-unused-parameter -Wno-unused-label' | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wait, why is this needed? We already run with OMP.. right?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, my I have some config problem in my system, I forgot the flag... Consexpr flag should be default tho imho |
||
| default_Windows: '/O2 /fp:fast /arch:AVX2 /D_USRDLL /D_WINDLL /D__restrict__=__restrict' | ||
|
|
||
| libs: | ||
|
|
@@ -303,7 +303,7 @@ required: | |
| type: str | ||
| title: nvcc Arguments | ||
| description: Compiler argument flags for CUDA | ||
| default: '-Xcompiler -march=native --use_fast_math -Xcompiler -Wno-unused-parameter' | ||
| default: '--expt-relaxed-constexpr -Xcompiler -march=native --use_fast_math -Xcompiler -Wno-unused-parameter' | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the issue when not passing this arg? A warning?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually DaCe needs this flag to compile, because it uses constexpr functions in functions marked as host and device. nvidia compiler is graceful enough to compile it as long we don't really call those functions (it is rare). We get a lot of warnings about this everytime we compile GPU code. About the openmp flag, I have some configuration problem,.openmp flag shouldn't be normally needed |
||
| default_Windows: '-O3 --use_fast_math' | ||
|
|
||
| hip_args: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.