-
Notifications
You must be signed in to change notification settings - Fork 21
Fixes to compile/run on aurora #264
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
Draft
reverendbedford
wants to merge
12
commits into
main
Choose a base branch
from
aurora
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
9d8c7f3
One compile error found by intel
b9c0fff
Hacky link fix for aurora
5a6d9f5
Variety of fixes for minor aurora issues
reverendbedford b79aba1
Let regression tests pick up additional devices from the test suite
hugary1995 d7782f7
This should work
reverendbedford 885f5bb
Oh ya, I can do this with JIT too
reverendbedford 8718490
Try this on aurora
reverendbedford 8729ff2
Well this is odd, but now at least it works
reverendbedford 2bed461
Fix build to not include IPEX if not on aurora
reverendbedford 88bc0ec
More fixes to build
reverendbedford 5daea31
Should fix all the compile errors
reverendbedford a348df9
clang-tidy
hugary1995 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -63,6 +63,7 @@ set(NEML2_PYBIND OFF CACHE BOOL "Build NEML2 Python bindings") | |||||
| set(NEML2_DOC OFF CACHE BOOL "Build NEML2 documentation (html)") | ||||||
| set(NEML2_WORK_DISPATCHER OFF CACHE BOOL "Enable NEML2 work dispatcher") | ||||||
| set(NEML2_JSON OFF CACHE BOOL "Enable JSON support") | ||||||
| set(AURORA_BUILD OFF CACHE BOOL "Build on ALCF Aurora machine") | ||||||
|
|
||||||
| # ---------------------------------------------------------------------------- | ||||||
| # Dependencies and 3rd party packages | ||||||
|
|
@@ -130,6 +131,13 @@ if(Torch_DOWNLOADED) | |||||
| install(DIRECTORY ${Torch_LINK_DIR} DESTINATION . COMPONENT libneml2) | ||||||
| endif() | ||||||
|
|
||||||
| # ---------------------------------------------------------------------------- | ||||||
| # Intel Extension for PyTorch | ||||||
| # ---------------------------------------------------------------------------- | ||||||
| if (AURORA_BUILD) | ||||||
| find_library(IPEX_LIB intel-ext-pt-gpu PATHS ${INTEL_EXTENSION_FOR_PYTORCH_PATH}/lib NO_DEFAULT_PATH REQUIRED) | ||||||
|
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.
Suggested change
I suspect something like this will just work. You can then specify the path using |
||||||
| endif() | ||||||
|
|
||||||
| # ---------------------------------------------------------------------------- | ||||||
| # HIT | ||||||
| # ---------------------------------------------------------------------------- | ||||||
|
|
||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,10 @@ | ||
| file(GLOB_RECURSE srcs CONFIGURE_DEPENDS *.cxx) | ||
| add_executable(dispatcher_tests ${srcs}) | ||
| target_link_libraries(dispatcher_tests PRIVATE testutils) | ||
| if (AURORA_BUILD) | ||
| find_package(Threads REQUIRED) | ||
| target_link_libraries(dispatcher_tests PRIVATE testutils Threads::Threads) | ||
| else() | ||
| target_link_libraries(dispatcher_tests PRIVATE testutils) | ||
| endif() | ||
|
Comment on lines
+3
to
+8
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. Why is this required? |
||
| target_compile_options(dispatcher_tests PRIVATE -Wall -Wextra -pedantic) | ||
| set_target_properties(dispatcher_tests PROPERTIES INSTALL_RPATH_USE_LINK_PATH ON) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer a more general flag like
NEML2_IPEX. I suppose there's nothing else specific to Aurora.