From: miha-q <> Date: Mon, 4 Mar 2024 05:03:23 +0000 (-0500) Subject: Mon Mar 4 12:03:23 AM EST 2024 X-Git-Url: http://www.foleosoft.com/?a=commitdiff_plain;h=58c5b62ef4c869efd31e1439e33b68c255ab1fc3;p=QAnsel.git Mon Mar 4 12:03:23 AM EST 2024 --- diff --git a/src/QAnsel.c b/src/QAnsel.c index e9f54ad..2f2e72f 100644 --- a/src/QAnsel.c +++ b/src/QAnsel.c @@ -222,18 +222,18 @@ void qansel_instruction(cpx_mtx_t* stateVector, uint8_t qubitCount, QInstr* inst #ifdef GPU_ENABLED if (USE_GPU && (tmp.rows >= 512 || tmp.cols >= 512)) { - GPU_knk - ( - tmp.ptr, tmp.rows, tmp.cols, - filter.ptr, filter.rows, filter.cols, - gate.ptr, gate.rows, gate.cols - ); - //cpx_ncpx_knk_mt + //GPU_knk //( // tmp.ptr, tmp.rows, tmp.cols, // filter.ptr, filter.rows, filter.cols, // gate.ptr, gate.rows, gate.cols //); + cpx_ncpx_knk_mt + ( + tmp.ptr, tmp.rows, tmp.cols, + filter.ptr, filter.rows, filter.cols, + gate.ptr, gate.rows, gate.cols + ); } else {