Skip to content

Commit

Permalink
codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasWilkinson committed Aug 14, 2024
1 parent 7af2fd8 commit 6955a93
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions csrc/cutlass_extensions/vllm_numeric_conversion.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ struct InterleavedNumericArrayConverter {
CUTLASS_DEVICE
static result_type convert(source_type const& source) {
CUTE_INVALID_CONTROL_PATH(
"InterleavedNumericArrayConverter not impleted\n");
"InterleavedNumericArrayConverter not implemented\n");
return {};
}

Expand Down Expand Up @@ -73,7 +73,7 @@ struct ArrayConverterPacked32Bit {

// Maybe not Valid,. ScalarConverter will not actually work unless
// NumericConverter<T, S, Round> is implemented
// but it won't be used since we assert N % 2 == 0, jus here for compliance
// but it won't be used since we assert N % 2 == 0, just here for compliance
// with VectorizedConverter
using ScalarConverter = NumericConverter<T, S>;

Expand Down
2 changes: 1 addition & 1 deletion csrc/quantization/machete/machete_mainloop.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,7 @@ struct MacheteCollectiveMma {

// We need to cast to nv_bfloat16 for the multiply since
// `cutlass::bfloat16_t` has an overloaded operator* that upconverts to
// float, which nvcc will not optimize to useing vectorized fma
// float, which nvcc will not optimize to using vectorized fma
// instructions (i.e. hfma.bf16_v2)
if constexpr (std::is_same_v<ElementScale, cutlass::bfloat16_t>) {
cute::transform(
Expand Down

0 comments on commit 6955a93

Please sign in to comment.