Skip to content

Commit

Permalink
Workaround for GCC 12 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
smuzaffar authored and iarspider committed Aug 12, 2024
1 parent 8fee37f commit 654d14d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Status CheckTensorOrder(const Tensor& input_tensor, cublasLtOrder_t input_order,
UpdateTileRequire(input_order, row_tile, col_tile);
UpdateTileRequire(output_order, row_tile, col_tile);
if (rows % row_tile != 0 || cols % col_tile != 0) {
return ORT_MAKE_STATUS(ONNXRUNTIME, INVALID_ARGUMENT, "Shape not meet clean tile requirement!", dims);
return ORT_MAKE_STATUS(ONNXRUNTIME, INVALID_ARGUMENT, "Shape not meet clean tile requirement!", TensorShape(dims));
}
return Status::OK();
}
Expand Down

0 comments on commit 654d14d

Please sign in to comment.