Skip to content

Commit

Permalink
Switch cutlass to newer commit to avoid compilation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tridao committed Sep 24, 2023
1 parent 65c234e commit 812cb1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/cutlass
Submodule cutlass updated 26 files
+1 −1 examples/13_two_tensor_op_fusion/kernel/b2b_gemm.h
+1 −1 examples/16_ampere_tensorop_conv2dfprop/ampere_tensorop_conv2dfprop.cu
+1 −1 examples/23_ampere_gemm_operand_reduction_fusion/ampere_gemm_operand_reduction_fusion.cu
+1 −1 examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_kernel.py
+1 −1 examples/45_dual_gemm/kernel/dual_gemm.h
+1 −1 examples/48_hopper_warp_specialized_gemm/48_hopper_warp_specialized_gemm.cu
+1 −1 include/cute/arch/mma_sm90_desc.hpp
+1 −1 include/cutlass/gemm/kernel/sm90_tile_scheduler_stream_k.hpp
+14 −3 tools/library/CMakeLists.txt
+15 −38 tools/library/scripts/generator.py
+0 −365 tools/library/src/reference/gemm.cu
+120 −0 tools/library/src/reference/gemm_e4m3a_e4m3out.cu
+111 −0 tools/library/src/reference/gemm_e4m3a_e5m2out.cu
+111 −0 tools/library/src/reference/gemm_e5m2a_e4m3out.cu
+111 −0 tools/library/src/reference/gemm_e5m2a_e5m2out.cu
+112 −0 tools/library/src/reference/gemm_fp32out.cu
+0 −418 tools/library/src/reference/gemm_fp8.cu
+93 −0 tools/library/src/reference/gemm_fp8in_bf16out.cu
+93 −0 tools/library/src/reference/gemm_fp8in_fp16out.cu
+93 −0 tools/library/src/reference/gemm_fp8in_fp32out.cu
+88 −0 tools/library/src/reference/gemm_fp_other.cu
+129 −0 tools/library/src/reference/gemm_int4.cu
+122 −0 tools/library/src/reference/gemm_int8_canonical.cu
+129 −0 tools/library/src/reference/gemm_int8_interleaved_32.cu
+129 −0 tools/library/src/reference/gemm_int8_interleaved_64.cu
+32 −4 tools/library/src/reference/initialize_reference_operations.cu

0 comments on commit 812cb1c

Please sign in to comment.