Also this doesn't do much

This commit is contained in:
Iwan Kawrakow
2025-08-28 09:28:00 +03:00
parent 0ce8068d2b
commit 37ef1d3719

View File

@@ -103,7 +103,8 @@ static __global__ void mmq_ids_helper(
const mmq_ids_helper_store store_it = store[itc];
const int it = store_it.it();
const int iex_used = store_it.iex_used();
ids_src1[nex_prev + itc] = it*sis1 + iex_used % nchannels_y;
//ids_src1[nex_prev + itc] = it*sis1 + iex_used % nchannels_y;
ids_src1[nex_prev + itc] = it;
ids_dst [nex_prev + itc] = it*n_expert_used + iex_used;
}