-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove use of
pika::for_loop
from permutations (#945)
- Loading branch information
Showing
7 changed files
with
265 additions
and
177 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
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ spack: | |
true | ||
|
||
specs: | ||
- dla-future@master +miniapps +ci-test +ci-check-threads ^intel-mkl threads=openmp ^mpich ^pika+stdexec ^[email protected]=main | ||
- dla-future@master +miniapps +ci-test +ci-check-threads ^intel-mkl threads=openmp ^mpich ^pika +stdexec ^[email protected]=main | ||
|
||
packages: | ||
all: | ||
|
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -58,7 +58,8 @@ class DlaFuture(CMakePackage, CudaPackage, ROCmPackage): | |
depends_on("[email protected]:", when="@0.1") | ||
depends_on("[email protected]:", when="@0.2.0") | ||
depends_on("[email protected]:", when="@0.2.1:") | ||
depends_on("[email protected]:") | ||
depends_on("[email protected]:", when="@master") | ||
depends_on("[email protected]:", when="@:0.2") | ||
depends_on("pika +mpi") | ||
depends_on("pika +cuda", when="+cuda") | ||
depends_on("pika +rocm", when="+rocm") | ||
|
@@ -114,7 +115,7 @@ class DlaFuture(CMakePackage, CudaPackage, ROCmPackage): | |
|
||
for cxxstd in cxxstds: | ||
depends_on("pika cxxstd={0}".format(cxxstd), when="cxxstd={0}".format(cxxstd)) | ||
depends_on("pika-algorithms cxxstd={0}".format(cxxstd), when="cxxstd={0}".format(cxxstd)) | ||
depends_on("pika-algorithms cxxstd={0}".format(cxxstd), when="@:0.2 cxxstd={0}".format(cxxstd)) | ||
|
||
variant("ci-test", default=False, description="Build for CI (Advanced usage).") | ||
conflicts("~miniapps", when="+ci-test") | ||
|
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