Skip to content

Commit d665978

Browse files
authored
Simplify the function sig. (#1763)
1 parent d0f6fbb commit d665978

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/cusparse/interfaces.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ adjtrans_wrappers = ((identity, identity),
6565
(M -> :(Adjoint{T, <:$M}), M -> :(_spadjoint(parent($M)))))
6666

6767
op_wrappers = ((identity, T -> 'N', identity),
68-
(T -> :(Transpose{<:T, <:$T}), T -> 'T', A -> :(parent($A))),
69-
(T -> :(Adjoint{<:T, <:$T}), T -> T <: Real ? 'T' : 'C', A -> :(parent($A))))
68+
(T -> :(Transpose{T, <:$T}), T -> 'T', A -> :(parent($A))),
69+
(T -> :(Adjoint{T, <:$T}), T -> T <: Real ? 'T' : 'C', A -> :(parent($A))))
7070

7171
for (taga, untaga) in tag_wrappers, (wrapa, transa, unwrapa) in op_wrappers
7272
TypeA = wrapa(taga(:(CuSparseMatrix{T})))

0 commit comments

Comments
 (0)