File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,14 @@ Pkg.update()
5
5
root_directory = dirname (@__DIR__ )
6
6
7
7
kernelabstractions = Pkg. PackageSpec (path = root_directory)
8
- cudakernels = Pkg. PackageSpec (path = joinpath (root_directory, " lib" , " CUDAKernels" ))
9
8
10
9
Pkg. develop (kernelabstractions)
11
- Pkg. develop (cudakernels)
12
10
if ! (VERSION < v " 1.6-" )
13
11
rockernels = Pkg. PackageSpec (path = joinpath (root_directory, " lib" , " ROCKernels" ))
14
12
Pkg. develop (rockernels)
13
+
14
+ cudakernels = Pkg. PackageSpec (path = joinpath (root_directory, " lib" , " CUDAKernels" ))
15
+ Pkg. develop (cudakernels)
15
16
end
16
17
Pkg. build ()
17
18
Pkg. precompile ()
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ import Pkg
2
2
3
3
pkgs = [
4
4
" KernelAbstractions" ,
5
- " CUDAKernels" ,
6
5
]
7
6
if ! (VERSION < v " 1.6-" )
8
7
push! (pkgs, " ROCKernels" )
8
+ push! (pkgs, " CUDAKernels" )
9
9
end
10
10
11
11
Pkg. test (pkgs; coverage = true )
You can’t perform that action at this time.
0 commit comments