Skip to content

Commit

Permalink
[p1673] linalg support
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge committed Jan 5, 2023
1 parent e1b5967 commit 30bbbd2
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,28 @@ FetchContent_Declare(
GIT_REPOSITORY "https://github.com/google/benchmark"
GIT_TAG "main"
FIND_PACKAGE_ARGS NAMES benchmark)

FetchContent_Declare(
google_test
GIT_REPOSITORY "https://github.com/google/googletest"
GIT_TAG "main"
FIND_PACKAGE_ARGS NAMES GTest)
FetchContent_MakeAvailable(google_test google_benchmark)

FetchContent_Declare(
kokkos
GIT_REPOSITORY "https://github.com/kokkos/kokkos"
FIND_PACKAGE_ARGS NAMES Kokkos)
FetchContent_Declare(
kokkos_kernels
GIT_REPOSITORY "https://github.com/kokkos/kokkos-kernels"
FIND_PACKAGE_ARGS NAMES KokkosKernels)
FetchContent_Declare(
stdblas
GIT_REPOSITORY "https://github.com/kokkos/stdblas"
GIT_TAG "main"
FIND_PACKAGE_ARGS NAMES linalg)
FetchContent_MakeAvailable(kokkos kokkos_kernels stdblas)

FetchContent_Declare(
mdspan
GIT_REPOSITORY "https://github.com/kokkos/mdspan"
Expand Down

0 comments on commit 30bbbd2

Please sign in to comment.