-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: openmp parallel the pair align loop
Internal ctest changing into directory: /home/lxy/recruitment-2024-autumn/build Test project /home/lxy/recruitment-2024-autumn/build Start 1: tiny case 1/3 Test #1: tiny case ........................ Passed 0.87 sec Start 2: small case 2/3 Test #2: small case ....................... Passed 2.41 sec Start 3: medium case 3/3 Test #3: medium case ...................... Passed 72.31 sec 100% tests passed, 0 tests failed out of 3 Total Test time (real) = 75.59 sec
- Loading branch information
1 parent
bf16053
commit 93078bb
Showing
4 changed files
with
81 additions
and
27 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Select one of the following 2 lines to generate the build files | ||
cmake -DUSE_OPENMP=ON -DUSE_OPENACC=OFF -B build # for OpenMP | ||
cmake -DUSE_OPENMP=OFF -DUSE_OPENACC=ON -B build # for OpenACC | ||
# Build the code | ||
cmake --build build/ |
This file contains 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
spack load nvhpc | ||
spack load [email protected] |
This file contains 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