Undo the block size change.

.z *is* used by the EigenContractionKernelInternal().
This commit is contained in:
Artem Belevich 2019-12-09 11:10:29 -08:00
parent dbb703d44e
commit 8056a05b54

View File

@ -1335,7 +1335,7 @@ struct TensorEvaluator<const TensorContractionOp<Indices, LeftArgType, RightArgT
const Index m_blocks = (m + 63) / 64;
const Index n_blocks = (n + 63) / 64;
const dim3 num_blocks(m_blocks, n_blocks, 1);
const dim3 block_size(8, 8, 1);
const dim3 block_size(8, 8, 8);
LAUNCH_GPU_KERNEL((EigenContractionKernel<Scalar, Index, LhsMapper, RhsMapper, OutputMapper>), num_blocks, block_size, 0, device, lhs, rhs, output, m, n, k);
}
};