CUTLASS 2.10 updates (#622)
Co-authored-by: Aniket Shivam <ashivam@nvidia.com>
This commit is contained in:
@ -183,7 +183,7 @@ __global__ void GemmPlanarComplex(
|
||||
ComplexC d_ij;
|
||||
|
||||
d_ij.real() = convert_op(result.real());
|
||||
d_ij.imag() = convert_op(result.imag());;
|
||||
d_ij.imag() = convert_op(result.imag());
|
||||
|
||||
tensor_d.at(coord) = d_ij;
|
||||
}
|
||||
|
||||
@ -172,7 +172,7 @@ void GemmPlanarComplex(
|
||||
complex<ScalarType> result = alpha * acc + beta * src;
|
||||
|
||||
d_ij.real() = convert_op(result.real());
|
||||
d_ij.imag() = convert_op(result.imag());;
|
||||
d_ij.imag() = convert_op(result.imag());
|
||||
|
||||
tensor_d.at(coord) = d_ij;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user