Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Wilkinson <[email protected]>
  • Loading branch information
LucasWilkinson committed Nov 6, 2024
1 parent 17bebb1 commit 5c09f95
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions csrc/cutlass_extensions/vllm_numeric_conversion.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,14 @@ struct InterleavedNumericArrayConverter {
static result_type convert(source_type const& source) {
if (cute::elect_one_sync()) {
if constexpr (std::is_same_v<IlvBlkLayout, void>) {
printf(" %s <= %s (N = %d, IlvBlkLayout = void)\n", nameof_v<T>,
nameof_v<S>, N);
printf(
"Convert %s <= %s (N = %d, IlvBlkLayout = void), not implemented\n",
nameof_v<T>, nameof_v<S>, N);
} else {
printf(" %s <= %s (N = %d, size(IlvBlkLayout{}) = %d)\n", nameof_v<T>,
nameof_v<S>, N, size(IlvBlkLayout{}));
printf(
"Convert %s <= %s (N = %d, size(IlvBlkLayout{}) = %d), not "
"implemented\n",
nameof_v<T>, nameof_v<S>, N, size(IlvBlkLayout{}));
}
__brkpt();
}
Expand Down

0 comments on commit 5c09f95

Please sign in to comment.