Skip to content

Commit 70aa857

Browse files
committed
test: run acos/acosh with fp32
1 parent c3b1100 commit 70aa857

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ops.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,12 +790,12 @@ end
790790
end
791791

792792
@testset "acos" begin
793-
x = Reactant.to_rarray([-1.0, 0.0, 1.0])
793+
x = Reactant.to_rarray(Float32[-1.0, 0.0, 1.0])
794794
@test acos.(Array(x)) @jit Ops.acos(x)
795795
end
796796

797797
@testset "acosh" begin
798-
x = Reactant.to_rarray([1.0, 10.0])
798+
x = Reactant.to_rarray(Float32[1.0, 10.0])
799799
@test acosh.(Array(x)) @jit Ops.acosh(x)
800800
end
801801

0 commit comments

Comments
 (0)