diff --git a/csrc/cutlass_extensions/vllm_numeric_conversion.cuh b/csrc/cutlass_extensions/vllm_numeric_conversion.cuh index fa44753c00fcb..a7dc05b426fae 100644 --- a/csrc/cutlass_extensions/vllm_numeric_conversion.cuh +++ b/csrc/cutlass_extensions/vllm_numeric_conversion.cuh @@ -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) { - printf(" %s <= %s (N = %d, IlvBlkLayout = void)\n", nameof_v, - nameof_v, N); + printf( + "Convert %s <= %s (N = %d, IlvBlkLayout = void), not implemented\n", + nameof_v, nameof_v, N); } else { - printf(" %s <= %s (N = %d, size(IlvBlkLayout{}) = %d)\n", nameof_v, - nameof_v, N, size(IlvBlkLayout{})); + printf( + "Convert %s <= %s (N = %d, size(IlvBlkLayout{}) = %d), not " + "implemented\n", + nameof_v, nameof_v, N, size(IlvBlkLayout{})); } __brkpt(); }