Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasfaingnaert committed Aug 14, 2020
1 parent 8d68aeb commit 68244e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blas.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function gemmEx!(transA::Char, transB::Char, alpha::Number, A, B, beta::Number,
)

GemmKernels.matmul(convert_matrix(A), convert_matrix(B), convert_matrix(C), convert_matrix(C), conf;
transform_shared_to_regs_a = Transform.Elementwise(x -> multiply_fp16(x, alpha)),
transform_shared_to_regs_a = Transform.Elementwise(x -> multiply_fp16(x, convert(Float16, alpha))),
transform_shared_to_regs_c = Transform.Elementwise(x -> x * beta))
end

Expand Down

0 comments on commit 68244e4

Please sign in to comment.