Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit df9b45a

Browse files
remove other arrayinterfaces in tests
1 parent ce0febe commit df9b45a

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

test/gpu/Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
[deps]
22
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
3-
ArrayInterfaceGPUArrays = "6ba088a2-8465-4c0a-af30-387133b534db"

test/test_ad.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ using SparseDiffTools
22
using ForwardDiff: Dual, jacobian, value
33
using SparseArrays, Test
44
using LinearAlgebra
5-
using BlockBandedMatrices, ArrayInterfaceBlockBandedMatrices
6-
using BandedMatrices, ArrayInterfaceBandedMatrices
7-
using StaticArrays#, StaticArrayInterface
5+
using BlockBandedMatrices
6+
using BandedMatrices
7+
using StaticArrays
88

99
fcalls = 0
1010
function f(dx, x)

test/test_gpu_ad.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using SparseDiffTools, CUDA, Test, LinearAlgebra
2-
using ArrayInterfaceCore: allowed_getindex, allowed_setindex!
2+
using ArrayInterface: allowed_getindex, allowed_setindex!
33
using SparseArrays
4-
using ArrayInterfaceGPUArrays
54

65
function f(dx, x)
76
dx[2:(end - 1)] = x[1:(end - 2)] - 2x[2:(end - 1)] + x[3:end]

0 commit comments

Comments
 (0)