Debugging WIP

This commit is contained in:
Matti Eskelinen
2026-02-05 11:39:50 +00:00
parent ff428f3478
commit 0662a6c799
6 changed files with 147 additions and 88 deletions

View File

@@ -23,7 +23,8 @@ void sinkhorn_knopp_ref(const HostTensor<XDataType>& x_n_n,
{
for(index_t j = 0; j < input_n; ++j)
{
c_n_n(i, j) = exp(type_convert<ComputeDataType>(x_n_n(i, j)));
// c_n_n(i, j) = exp(type_convert<ComputeDataType>(x_n_n(i, j)));
c_n_n(i, j) = type_convert<ComputeDataType>(x_n_n(i, j));
}
}