Skip to content

Commit

Permalink
fixup! fixup! DArray: Small matmul bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsamaroo committed Jun 21, 2024
1 parent 9e2ff8b commit 0797983
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/array/mul.jl
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ function gemm_dagger!(
Bmt, Bnt = size(Bc)
Cmt, Cnt = size(Cc)

alpha = real(T)(_add.alpha)
beta = real(T)(_add.beta)
alpha = T(_add.alpha)
beta = T(_add.beta)

if Ant != Bmt
throw(DimensionMismatch(lazy"A has number of blocks ($Amt,$Ant) but B has number of blocks ($Bmt,$Bnt)"))
Expand Down

0 comments on commit 0797983

Please sign in to comment.