Skip to content

Commit 9b4e434

Browse files
thomasjoergGoogle-ML-Automation
authored andcommitted
[XLA:GPU] Make VLOG explanation in SortRewriter more helpful.
Add the dtypes for which a CUB kernel is unavailable to the log output. PiperOrigin-RevId: 703067645
1 parent c6d47e1 commit 9b4e434

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

xla/service/gpu/transforms/sort_rewriter.cc

+5-1
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,11 @@ bool IsCubCompatibleSort(const HloSortInstruction* sort_op) {
436436
return false;
437437
}
438438
if (!CreateRunner(*sort_analysis).ok()) {
439-
VLOG(2) << "Unsupported operand types (no compiled CUB kernels)";
439+
VLOG(2) << "Unsupported operand types (no compiled CUB kernels): "
440+
<< PrimitiveType_Name(sort_analysis->key_type) << " "
441+
<< (sort_analysis->value_type.has_value()
442+
? PrimitiveType_Name(sort_analysis->value_type.value())
443+
: "");
440444
return false;
441445
}
442446
VLOG(2) << "Sort operation is compatible";

0 commit comments

Comments
 (0)