[ROCm] Fix for a bug in the ROCm implementation for matrix_triangular_solve op

This commit is contained in:
Deven Desai 2020-02-12 15:14:49 +00:00
parent 675799d105
commit b5a3eda2dc

View File

@ -332,7 +332,7 @@ struct LaunchBatchMatrixTriangularSolve<GPUDevice, Scalar> {
// output' = rhs' / matrix' (' stands for transpose)
// Upper/lower needs to be swapped for this.
uplo = lower ? rocblas_fill_upper : rocblas_fill_upper;
uplo = lower ? rocblas_fill_upper : rocblas_fill_lower;
trans = adjoint ? rocblas_operation_conjugate_transpose
: rocblas_operation_none;
auto solver = absl::make_unique<ROCmSolver>(context);