Kernel specialization of EwBinaryObjSca for DenseMatrix,double and double scalar multiplication #346
Labels
good first issue
Non-urgent, simple task with limited scope, suitable for getting started as a contributor.
Currently
EwBinaryObjSca
-kernel supports element-wise multiplications between dense matrices and scalars of the same value type (DenseMatrix<double> * double
,DenseMatrix<int> * int
). We need to support this operation between different value types as well. This will allow us to run more scripts likescripts/lmDS.daph
, which requires an element-wise multiplication betweenDenseMatrix<double>
and anint
.We need to specialize kernel
EwBinaryObjSca
forDenseMatrix<double> * int
. The result should be aDenseMatrix<double>
matrix.This issue asks you to implement
EwBinaryObjSca
-kernel forDenseMatrix<double> * int64_t
(resultDenseMatrix<double>
).test/runtime/local/kernels/EwBinaryObjScaTest.cpp
DenseMatrix<int64_t> * double
(resultDenseMatrix<double>
).The text was updated successfully, but these errors were encountered: