Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions comfy_kitchen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@

# Import registry and exceptions
from .registry import registry
from .tensor.convrot_w4a4 import (
convrot_w4a4_linear,
dequantize_convrot_w4a4_weight,
quantize_convrot_w4a4_weight,
)

__version__ = "0.1.0"

Expand All @@ -31,13 +36,16 @@
"quantize_mxfp8",
"dequantize_mxfp8",
"quantize_svdquant_w4a4",
"quantize_convrot_w4a4_weight",
"quantize_int8_rowwise",
"quantize_int8_tensorwise",
"dequantize_int8_simple",
# Fused matmul
"scaled_mm_nvfp4",
"scaled_mm_mxfp8",
"scaled_mm_svdquant_w4a4",
"convrot_w4a4_linear",
"dequantize_convrot_w4a4_weight",
"gemv_awq_w4a16",
"int8_linear",
# Positional encoding
Expand Down
1 change: 1 addition & 0 deletions comfy_kitchen/backends/cuda/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ set(CUDA_SOURCES
ops/cublas_gemm_int8.cu
ops/cutlass_gemm_int8.cu
ops/int8_linear.cu
ops/convrot_w4a4.cu
ops/apply_rope.cu
ops/quantize_svdquant_w4a4.cu
ops/scaled_mm_svdquant_w4a4.cu
Expand Down
666 changes: 652 additions & 14 deletions comfy_kitchen/backends/cuda/__init__.py

Large diffs are not rendered by default.

Loading
Loading