Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Apr 26, 2024
1 parent 1c72cc2 commit c010500
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/TriangularSolve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,9 @@ function div_dispatch!(
if nthread > 1
(M > mtb) && return multithread_rdiv!(spa, spu, M, N, mtb, Val(UNIT))
elseif N > block_size(Val(T))
return rdiv_block_MandN!(spa, spu, M, N, Val(UNIT))
let tup = (spa, spu), ftup = flatten_to_tup(tup)
return rdiv_block_MandN!(M, N, Val(UNIT), typeof(tup), ftup...)
end
end
return rdiv_U!(spa, spu, M, N, Val(UNIT))
end
Expand Down Expand Up @@ -1042,8 +1044,8 @@ end
# ::Val{U},
::Val{UNIT},
::Type{Args},
args...
) where {W,UNIT,Args}
args::Vararg{Any,K}
) where {W,UNIT,Args,K}
WS = static(W)
# US = static(U)
if W == 2
Expand Down

0 comments on commit c010500

Please sign in to comment.