Skip to content

Commit f82a48b

Browse files
Merge pull request #204 from PhilipFackler/release-v0.3.0
Release v0.3.0
2 parents 9564898 + 1ba1785 commit f82a48b

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [
55
"williamfgc <williamfgc@yahoo.com>",
66
"PhilipFackler <facklerpw@ornl.gov>"
77
]
8-
version = "0.2.1"
8+
version = "0.3.0"
99

1010
[deps]
1111
Atomix = "a9b6321e-bd34-4604-b9c9-b65b8de01458"
@@ -23,10 +23,10 @@ CUDAExt = ["CUDA"]
2323
oneAPIExt = ["oneAPI"]
2424

2525
[compat]
26-
AMDGPU = "1.1.6"
26+
AMDGPU = "1"
2727
Atomix = "1.0.1"
2828
CUDA = "5"
2929
Pkg = "1.11.0"
3030
Preferences = "1.4.0"
3131
julia = "1.9, 1.10, 1.11"
32-
oneAPI = "1.6.1"
32+
oneAPI = "1"

ext/AMDGPUExt/multi.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Multi
22

33
import Base: Callable
44
using JACC, AMDGPU
5-
using JACCAMDGPU: AMDGPUBackend
5+
using AMDGPUExt: AMDGPUBackend
66

77
function JACC.Multi.ndev(::AMDGPUBackend)
88
return length(AMDGPU.devices())

test/JACCTests.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module JACCTests
22

33
import JACC
4-
JACC.@init_backend
54
using ReTest
65

76
@static if JACC.backend == "cuda"

test/unittests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ end
178178

179179
JACC.parallel_for(N, scal, x, y, alpha)
180180
JACC.parallel_for(N, scal_shared, x_shared, y, alpha)
181-
@test xx_shared rtol=1e-8
181+
@test Base.Array(x)Base.Array(x_shared) rtol=1e-8
182182
end
183183

184184
@testset "JACC.BLAS" begin

0 commit comments

Comments
 (0)