Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 68a39e96 authored by hhakim's avatar hhakim
Browse files

Fix Windows VS compilation issue of Transform<FPP, GPU2>::indexMultiply casting issue (#272).

parent 4dfcc420
No related branches found
No related tags found
No related merge requests found
......@@ -441,7 +441,8 @@ namespace Faust
MatDense<@FAUST_SCALAR_FOR_GM@,GPU2> out(out_nrows, out_ncols, nullptr, /*no_alloc*/true);
// if both cs_size and rs_size are null the following call will call chain_matmul_by_dsm_one
out.gpu_mat = marr_funcs->indexed_chain_matmul_by_dsm_one(this->gpu_mat_arr, ids, id_lens, op, gpu_X.gpu_mat);
//TODO: change ids faust_unsigned_int type to size_t to avoid the casting
out.gpu_mat = marr_funcs->indexed_chain_matmul_by_dsm_one(this->gpu_mat_arr, (size_t **)ids, id_lens, op, gpu_X.gpu_mat);
return out;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment