Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ jobs:
- name: Instantiate
working-directory: benchmark
run: |
julia --startup-file=no --project=main -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate()'
julia --startup-file=no --project=current -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate()'
julia --startup-file=no --project=main -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate(); Pkg.add("CUDA")'
julia --startup-file=no --project=current -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate(); Pkg.add("CUDA")'
- name: Run benchmark (main)
working-directory: benchmark
run: julia --startup-file=no runbenchmark.jl main cuda
Expand All @@ -226,8 +226,8 @@ jobs:
- name: Instantiate
working-directory: benchmark
run: |
julia --startup-file=no --project=main -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate()'
julia --startup-file=no --project=current -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate()'
julia --startup-file=no --project=main -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate(); Pkg.add("AMDGPU")'
julia --startup-file=no --project=current -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate(); Pkg.add("AMDGPU")'
- name: Run benchmark (main)
working-directory: benchmark
run: julia --startup-file=no runbenchmark.jl main amdgpu
Expand All @@ -254,8 +254,8 @@ jobs:
- name: Instantiate
working-directory: benchmark
run: |
julia --startup-file=no --project=main -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate()'
julia --startup-file=no --project=current -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate()'
julia --startup-file=no --project=main -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate(); Pkg.add("oneAPI")'
julia --startup-file=no --project=current -e 'using Pkg; Pkg.Registry.update(); Pkg.instantiate(); Pkg.add("oneAPI")'
- name: Run benchmark (main)
working-directory: benchmark
run: julia --startup-file=no runbenchmark.jl main oneapi
Expand Down
3 changes: 0 additions & 3 deletions benchmark/current/Project.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
[deps]
AMDGPU = "21141c5a-9bdb-4563-92ae-f87d6854732e"
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
ExaModels = "1037b233-b668-4ce9-9b63-f9f681f55dd2"
ExaPowerIO = "14903efe-9500-4d7f-a589-7ab7e15da6de"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
oneAPI = "8f75cd03-7ff8-4ecb-9b8f-daf728133b1b"

[sources]
ExaModels = {path="../.."}
3 changes: 0 additions & 3 deletions benchmark/main/Project.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
[deps]
AMDGPU = "21141c5a-9bdb-4563-92ae-f87d6854732e"
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
ExaModels = "1037b233-b668-4ce9-9b63-f9f681f55dd2"
ExaPowerIO = "14903efe-9500-4d7f-a589-7ab7e15da6de"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
oneAPI = "8f75cd03-7ff8-4ecb-9b8f-daf728133b1b"

[sources]
ExaModels = {rev = "main", url = "https://github.com/exanauts/ExaModels.jl"}
Loading