diff --git a/cuda_device_info b/cuda_device_info new file mode 100755 index 0000000..ffffc97 Binary files /dev/null and b/cuda_device_info differ diff --git a/cuda_device_info.cpp b/cuda_device_info.cpp new file mode 100644 index 0000000..640cbd2 --- /dev/null +++ b/cuda_device_info.cpp @@ -0,0 +1,42 @@ +#include +#include + +int main() { + int deviceCount = 0; + // ???????? GPU ?? + cudaError_t err = cudaGetDeviceCount(&deviceCount); + + if (err != cudaSuccess) { + std::cerr << "?? GPU ??, CUDA Error: " << cudaGetErrorString(err) << std::endl; + return -1; + } + + std::cout << "??? " << deviceCount << " ? GPU?" << std::endl; + std::cout << "=========================================" << std::endl; + + for (int i = 0; i < deviceCount; ++i) { + cudaDeviceProp prop; + // ?? API:??? i ? GPU ????? + cudaGetDeviceProperties(&prop, i); + + std::cout << "Device ID : " << i << std::endl; + std::cout << "???? : " << prop.name << std::endl; + std::cout << "???? : SM " << prop.major << "." << prop.minor + << " (?? 9.0 ?? Hopper, 10.0 ?? Blackwell)" << std::endl; + + // 1. ?? SM (Streaming Multiprocessor) ?? + std::cout << "NUM_SMS : " << prop.multiProcessorCount << " ? SMs" << std::endl; + + // 2. ?? L2 Cache ?? + std::cout << "L2_SIZE : " << prop.l2CacheSize << " Bytes (" + << prop.l2CacheSize / (1024.0 * 1024.0) << " MiB)" << std::endl; + + // 3. ????????? (?????? MAX_DATA_VOLUME ?????) + std::cout << "VRAM_TOTAL : " << prop.totalGlobalMem << " Bytes (" + << prop.totalGlobalMem / (1024.0 * 1024.0 * 1024.0) << " GiB)" << std::endl; + + std::cout << "=========================================" << std::endl; + } + + return 0; +} \ No newline at end of file diff --git a/cutlass_gemm_mainloop/Makefile b/cutlass_gemm_mainloop/Makefile index da2bab8..8d7c963 100644 --- a/cutlass_gemm_mainloop/Makefile +++ b/cutlass_gemm_mainloop/Makefile @@ -1,5 +1,6 @@ +NVCC := /usr/local/cuda-13.2/bin/nvcc CUTLASS_PATH := ../../cutlass -NVCCFLAGS := -std=c++17 --expt-relaxed-constexpr -gencode=arch=compute_100a,code=\"sm_100a,compute_100a\" +NVCCFLAGS := -std=c++17 --expt-relaxed-constexpr -gencode=arch=compute_110a,code=\"sm_110a,compute_110a\" INCLUDES := -I$(CUTLASS_PATH)/include -I$(CUTLASS_PATH)/tools/util/include # Config (override via make TILE_M=128 STAGES=4 etc.) @@ -15,7 +16,7 @@ DEFINES = -DTILE_M=$(TILE_M) -DTILE_N=$(TILE_N) -DTILE_K=$(TILE_K) \ all: cutlass_gemm_bench.out cutlass_gemm_bench.out: cutlass_gemm_bench.cu - nvcc $(NVCCFLAGS) $(INCLUDES) $(DEFINES) -lcuda -o $@ $< + $(NVCC) $(NVCCFLAGS) $(INCLUDES) $(DEFINES) -lcuda -o $@ $< bench: cutlass_gemm_bench.out ./$< diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d0 new file mode 100755 index 0000000..b53b614 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d1 new file mode 100755 index 0000000..51dddda Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d0 new file mode 100755 index 0000000..3026893 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d1 new file mode 100755 index 0000000..deeb1b2 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d0 new file mode 100755 index 0000000..db8e38b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d1 new file mode 100755 index 0000000..7d8f4a6 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_128_128_s4_d1 new file mode 100755 index 0000000..fd3d0b7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_128_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_128_128_s5_d1 new file mode 100755 index 0000000..2a47a1c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_128_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_128_128_s6_d1 new file mode 100755 index 0000000..171ad47 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_128_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_128_128_s7_d1 new file mode 100755 index 0000000..ae8a386 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_128_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_128_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_128_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_128_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_128_16_s0_d0 new file mode 100755 index 0000000..28fe7bf Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_16_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_16_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_16_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_128_16_s2_d0 new file mode 100755 index 0000000..fb55995 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_16_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_16_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_16_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_128_16_s3_d0 new file mode 100755 index 0000000..3207619 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_16_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_16_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_16_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_128_16_s4_d0 new file mode 100755 index 0000000..272e1d1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_16_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_16_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_16_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_128_16_s5_d0 new file mode 100755 index 0000000..d7835d8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_16_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_16_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_16_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_128_16_s6_d0 new file mode 100755 index 0000000..5b32bb1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_16_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_16_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_16_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_128_16_s7_d0 new file mode 100755 index 0000000..9910d5b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_16_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_16_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_16_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_128_16_s8_d0 new file mode 100755 index 0000000..8f29dcc Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_16_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_16_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_16_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_16_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s0_d0.log new file mode 100644 index 0000000..1659b51 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s0_d0.log @@ -0,0 +1,6 @@ +../../cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp(188): error: static assertion failed with "Specialization requires Stages set to value 1 or more." + static_assert(DispatchPolicy::Stages >= 2, "Specialization requires Stages set to value 1 or more."); + ^ + detected during instantiation of class "cutlass::gemm::collective::CollectiveMma, TileShape_, ElementA_, StrideA_, ElementB_, StrideB_, TiledMma_, GmemTiledCopyA_, SmemLayoutAtomA_, SmemCopyAtomA_, TransformA_, GmemTiledCopyB_, SmemLayoutAtomB_, SmemCopyAtomB_, TransformB_> [with Stages=1, SchedulerPipelineStageCount=2, AccumulatorPipelineStageCount=4, ClusterShape=ClusterShape, TileShape_=MmaTileShape, ElementA_=ElementAB, StrideA_=cute::tuple, int64_t>, ElementB_=ElementAB, StrideB_=cute::tuple, int64_t>, TiledMma_=cute::TiledMMA>, cute::Layout, cute::tuple>>, cute::tuple>, GmemTiledCopyA_=cute::SM90_TMA_LOAD, SmemLayoutAtomA_=cute::ComposedLayout, cute::smem_ptr_flag_bits<16>, cute::Layout, cute::tuple>>, SmemCopyAtomA_=void, TransformA_=cute::identity, GmemTiledCopyB_=cute::SM90_TMA_LOAD, SmemLayoutAtomB_=cute::ComposedLayout, cute::smem_ptr_flag_bits<16>, cute::Layout, cute::tuple>>, SmemCopyAtomB_=void, TransformB_=cute::identity]" at line 171 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_128_256_s0_d1 new file mode 100755 index 0000000..c98e5ba Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_256_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s2_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s2_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_128_256_s2_d1 new file mode 100755 index 0000000..39c5ae8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_256_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_128_256_s3_d1 new file mode 100755 index 0000000..2a862ed Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_256_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_256_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_256_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_256_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d0 new file mode 100755 index 0000000..6b07ff8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d1 new file mode 100755 index 0000000..7fcf387 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d0 new file mode 100755 index 0000000..575adf7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d1 new file mode 100755 index 0000000..224943c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d0 new file mode 100755 index 0000000..9c856fe Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d1 new file mode 100755 index 0000000..708caab Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d0 new file mode 100755 index 0000000..bf82380 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d1 new file mode 100755 index 0000000..c3f591c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d0 new file mode 100755 index 0000000..1b4f2e6 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d1 new file mode 100755 index 0000000..80084a9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d0 new file mode 100755 index 0000000..959602d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d1 new file mode 100755 index 0000000..1d0740b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d0 new file mode 100755 index 0000000..eddec35 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d1 new file mode 100755 index 0000000..0d09b09 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d0 new file mode 100755 index 0000000..d8416a9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d1 new file mode 100755 index 0000000..6f6731e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_32_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_512_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_512_s0_d1.log new file mode 100644 index 0000000..083c94c --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_512_s0_d1.log @@ -0,0 +1,6 @@ +../../cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp(188): error: static assertion failed with "Specialization requires Stages set to value 1 or more." + static_assert(DispatchPolicy::Stages >= 2, "Specialization requires Stages set to value 1 or more."); + ^ + detected during instantiation of class "cutlass::gemm::collective::CollectiveMma, TileShape_, ElementA_, StrideA_, ElementB_, StrideB_, TiledMma_, GmemTiledCopyA_, SmemLayoutAtomA_, SmemCopyAtomA_, TransformA_, GmemTiledCopyB_, SmemLayoutAtomB_, SmemCopyAtomB_, TransformB_> [with Stages=1, SchedulerPipelineStageCount=2, AccumulatorPipelineStageCount=4, ClusterShape=ClusterShape, TileShape_=MmaTileShape, ElementA_=ElementAB, StrideA_=cute::tuple, int64_t>, ElementB_=ElementAB, StrideB_=cute::tuple, int64_t>, TiledMma_=cute::TiledMMA, cute::C<128>, cute::integral_constant, cute::integral_constant, cute::integral_constant, cute::integral_constant>>, cute::Layout, cute::tuple>>, cute::tuple>, GmemTiledCopyA_=cute::SM90_TMA_LOAD, SmemLayoutAtomA_=cute::ComposedLayout, cute::smem_ptr_flag_bits<8>, cute::Layout, cute::tuple>>, SmemCopyAtomA_=void, TransformA_=cute::identity, GmemTiledCopyB_=cute::SM90_TMA_LOAD, SmemLayoutAtomB_=cute::ComposedLayout, cute::smem_ptr_flag_bits<8>, cute::Layout, cute::tuple>>, SmemCopyAtomB_=void, TransformB_=cute::identity]" at line 171 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_512_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_512_s2_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_512_s2_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_512_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_512_s3_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_512_s3_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_512_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_512_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_512_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_512_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_512_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_512_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_512_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_512_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_512_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_512_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_512_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_512_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_512_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_512_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_512_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d0 new file mode 100755 index 0000000..cee71a8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d1 new file mode 100755 index 0000000..a6220b8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d0 new file mode 100755 index 0000000..2f6bdde Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d1 new file mode 100755 index 0000000..e019efc Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d0 new file mode 100755 index 0000000..6e5aecb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d1 new file mode 100755 index 0000000..e89f4b7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d0 new file mode 100755 index 0000000..3c91a38 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d1 new file mode 100755 index 0000000..bb4488d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d0 new file mode 100755 index 0000000..feff8b2 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d1 new file mode 100755 index 0000000..6c590a2 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d0 new file mode 100755 index 0000000..7aa7dff Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d1 new file mode 100755 index 0000000..620f4aa Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d0 new file mode 100755 index 0000000..e387a33 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d1 new file mode 100755 index 0000000..98962e3 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_128_64_s8_d1 new file mode 100755 index 0000000..1f6d691 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_128_64_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_128_64_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_128_64_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_128_64_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d0 new file mode 100755 index 0000000..fd277e7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d1 new file mode 100755 index 0000000..62d8fcf Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d0 new file mode 100755 index 0000000..339800e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d1 new file mode 100755 index 0000000..e9ca691 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d0 new file mode 100755 index 0000000..1ddea5b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d1 new file mode 100755 index 0000000..65bbee7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d0 new file mode 100755 index 0000000..726c2c0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d1 new file mode 100755 index 0000000..ba718eb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d0 new file mode 100755 index 0000000..9179aaa Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d1 new file mode 100755 index 0000000..c899487 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d0 new file mode 100755 index 0000000..781ce3a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d1 new file mode 100755 index 0000000..4c84377 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_16_128_s7_d1 new file mode 100755 index 0000000..e18a901 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_16_128_s8_d1 new file mode 100755 index 0000000..fc9d9c9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_128_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_128_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_128_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_128_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_16_16_s0_d0 new file mode 100755 index 0000000..7f16d6e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_16_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_16_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_16_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_16_16_s2_d0 new file mode 100755 index 0000000..89d39c4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_16_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_16_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_16_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_16_16_s3_d0 new file mode 100755 index 0000000..b15d3d0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_16_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_16_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_16_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_16_16_s4_d0 new file mode 100755 index 0000000..7a5e8e0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_16_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_16_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_16_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_16_16_s5_d0 new file mode 100755 index 0000000..571ad08 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_16_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_16_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_16_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_16_16_s6_d0 new file mode 100755 index 0000000..d1aa13f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_16_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_16_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_16_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_16_16_s7_d0 new file mode 100755 index 0000000..865e0f7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_16_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_16_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_16_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_16_16_s8_d0 new file mode 100755 index 0000000..c3b4f84 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_16_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_16_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_16_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_16_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d0 new file mode 100755 index 0000000..a96e95a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d1 new file mode 100755 index 0000000..569c9ae Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d0 new file mode 100755 index 0000000..14cee30 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d1 new file mode 100755 index 0000000..9fe8d6f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d0 new file mode 100755 index 0000000..088b598 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d1 new file mode 100755 index 0000000..1191ed3 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_16_256_s4_d1 new file mode 100755 index 0000000..f136aa6 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_256_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_16_256_s5_d1 new file mode 100755 index 0000000..8afff82 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_256_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_16_256_s6_d1 new file mode 100755 index 0000000..53df53e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_256_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_256_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_256_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_256_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d0 new file mode 100755 index 0000000..761ba61 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d1 new file mode 100755 index 0000000..2a14a2b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d0 new file mode 100755 index 0000000..3bbdcbb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d1 new file mode 100755 index 0000000..2beefad Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d0 new file mode 100755 index 0000000..6ed373c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d1 new file mode 100755 index 0000000..bf29404 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d0 new file mode 100755 index 0000000..b0fbc56 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d1 new file mode 100755 index 0000000..1cfac3b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d0 new file mode 100755 index 0000000..3db0633 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d1 new file mode 100755 index 0000000..2313d4e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d0 new file mode 100755 index 0000000..5fce0d6 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d1 new file mode 100755 index 0000000..a64b2e2 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d0 new file mode 100755 index 0000000..e04d151 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d1 new file mode 100755 index 0000000..d84b202 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d0 new file mode 100755 index 0000000..ea12180 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d1 new file mode 100755 index 0000000..86fedda Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_32_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_16_512_s0_d1 new file mode 100755 index 0000000..ee7306d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_512_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_512_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_512_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_16_512_s2_d1 new file mode 100755 index 0000000..587c526 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_512_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_512_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_512_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_16_512_s3_d1 new file mode 100755 index 0000000..e213be1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_512_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_512_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_512_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_512_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_512_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_512_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_512_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_512_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_512_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_512_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_512_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_512_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_512_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_512_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d0 new file mode 100755 index 0000000..91a83a4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d1 new file mode 100755 index 0000000..4e46e70 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d0 new file mode 100755 index 0000000..a549f11 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d1 new file mode 100755 index 0000000..64cd700 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d0 new file mode 100755 index 0000000..c85b7ff Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d1 new file mode 100755 index 0000000..4c63e1b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d0 new file mode 100755 index 0000000..be9bf08 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d1 new file mode 100755 index 0000000..d105e34 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d0 new file mode 100755 index 0000000..064f096 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d1 new file mode 100755 index 0000000..b17a529 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d0 new file mode 100755 index 0000000..f85ffc4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d1 new file mode 100755 index 0000000..d0a02a0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d0 new file mode 100755 index 0000000..a24c20c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d1 new file mode 100755 index 0000000..d2c6db4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d0 new file mode 100755 index 0000000..f453cd4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d1 new file mode 100755 index 0000000..1c55cdb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_16_64_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d0 new file mode 100755 index 0000000..29752f1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d1 new file mode 100755 index 0000000..d90952f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d0 new file mode 100755 index 0000000..b2f2053 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d1 new file mode 100755 index 0000000..63503cb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_192_128_s3_d1 new file mode 100755 index 0000000..07b1da0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_128_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_192_128_s4_d1 new file mode 100755 index 0000000..18e4822 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_128_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_192_128_s5_d1 new file mode 100755 index 0000000..cafc321 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_128_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_128_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_128_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_128_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_192_16_s0_d0 new file mode 100755 index 0000000..a731253 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_16_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_16_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_16_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_192_16_s2_d0 new file mode 100755 index 0000000..b9c87dd Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_16_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_16_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_16_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_192_16_s3_d0 new file mode 100755 index 0000000..72f8ea9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_16_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_16_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_16_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_192_16_s4_d0 new file mode 100755 index 0000000..d3e93e0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_16_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_16_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_16_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_192_16_s5_d0 new file mode 100755 index 0000000..a21bfa2 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_16_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_16_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_16_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_192_16_s6_d0 new file mode 100755 index 0000000..f1c563b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_16_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_16_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_16_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_192_16_s7_d0 new file mode 100755 index 0000000..2117d91 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_16_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_16_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_16_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_192_16_s8_d0 new file mode 100755 index 0000000..0909170 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_16_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_16_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_16_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_16_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s0_d0.log new file mode 100644 index 0000000..5457952 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s0_d0.log @@ -0,0 +1,6 @@ +../../cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp(188): error: static assertion failed with "Specialization requires Stages set to value 1 or more." + static_assert(DispatchPolicy::Stages >= 2, "Specialization requires Stages set to value 1 or more."); + ^ + detected during instantiation of class "cutlass::gemm::collective::CollectiveMma, TileShape_, ElementA_, StrideA_, ElementB_, StrideB_, TiledMma_, GmemTiledCopyA_, SmemLayoutAtomA_, SmemCopyAtomA_, TransformA_, GmemTiledCopyB_, SmemLayoutAtomB_, SmemCopyAtomB_, TransformB_> [with Stages=1, SchedulerPipelineStageCount=2, AccumulatorPipelineStageCount=2, ClusterShape=ClusterShape, TileShape_=MmaTileShape, ElementA_=ElementAB, StrideA_=cute::tuple, int64_t>, ElementB_=ElementAB, StrideB_=cute::tuple, int64_t>, TiledMma_=cute::TiledMMA>, cute::Layout, cute::tuple>>, cute::tuple>, GmemTiledCopyA_=cute::SM90_TMA_LOAD, SmemLayoutAtomA_=cute::ComposedLayout, cute::smem_ptr_flag_bits<16>, cute::Layout, cute::tuple>>, SmemCopyAtomA_=void, TransformA_=cute::identity, GmemTiledCopyB_=cute::SM90_TMA_LOAD, SmemLayoutAtomB_=cute::ComposedLayout, cute::smem_ptr_flag_bits<16>, cute::Layout, cute::tuple>>, SmemCopyAtomB_=void, TransformB_=cute::identity]" at line 171 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_192_256_s0_d1 new file mode 100755 index 0000000..1c31971 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_256_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s2_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s2_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_192_256_s2_d1 new file mode 100755 index 0000000..7a27edf Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_256_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s3_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s3_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_256_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_256_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_256_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d0 new file mode 100755 index 0000000..dc3cd55 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d1 new file mode 100755 index 0000000..dfd27a0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d0 new file mode 100755 index 0000000..57337b7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d1 new file mode 100755 index 0000000..b6917a9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d0 new file mode 100755 index 0000000..fb86b32 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d1 new file mode 100755 index 0000000..34fdf9f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d0 new file mode 100755 index 0000000..5999191 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d1 new file mode 100755 index 0000000..0cb5c2a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d0 new file mode 100755 index 0000000..aed3fad Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d1 new file mode 100755 index 0000000..4d941b9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d0 new file mode 100755 index 0000000..e6d2fa4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d1 new file mode 100755 index 0000000..21daa3f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d0 new file mode 100755 index 0000000..b2446d7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d1 new file mode 100755 index 0000000..a5b7b38 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d0 new file mode 100755 index 0000000..00d90d4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d1 new file mode 100755 index 0000000..2cb3bda Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_32_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_512_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_512_s0_d1.log new file mode 100644 index 0000000..c26ad26 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_512_s0_d1.log @@ -0,0 +1,6 @@ +../../cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp(188): error: static assertion failed with "Specialization requires Stages set to value 1 or more." + static_assert(DispatchPolicy::Stages >= 2, "Specialization requires Stages set to value 1 or more."); + ^ + detected during instantiation of class "cutlass::gemm::collective::CollectiveMma, TileShape_, ElementA_, StrideA_, ElementB_, StrideB_, TiledMma_, GmemTiledCopyA_, SmemLayoutAtomA_, SmemCopyAtomA_, TransformA_, GmemTiledCopyB_, SmemLayoutAtomB_, SmemCopyAtomB_, TransformB_> [with Stages=1, SchedulerPipelineStageCount=2, AccumulatorPipelineStageCount=2, ClusterShape=ClusterShape, TileShape_=MmaTileShape, ElementA_=ElementAB, StrideA_=cute::tuple, int64_t>, ElementB_=ElementAB, StrideB_=cute::tuple, int64_t>, TiledMma_=cute::TiledMMA, cute::C<192>, cute::integral_constant, cute::integral_constant, cute::integral_constant, cute::integral_constant>>, cute::Layout, cute::tuple>>, cute::tuple>, GmemTiledCopyA_=cute::SM90_TMA_LOAD, SmemLayoutAtomA_=cute::ComposedLayout, cute::smem_ptr_flag_bits<8>, cute::Layout, cute::tuple>>, SmemCopyAtomA_=void, TransformA_=cute::identity, GmemTiledCopyB_=cute::SM90_TMA_LOAD, SmemLayoutAtomB_=cute::ComposedLayout, cute::smem_ptr_flag_bits<8>, cute::Layout, cute::tuple>>, SmemCopyAtomB_=void, TransformB_=cute::identity]" at line 171 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_512_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_512_s2_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_512_s2_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_512_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_512_s3_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_512_s3_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_512_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_512_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_512_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_512_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_512_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_512_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_512_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_512_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_512_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_512_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_512_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_512_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_512_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_512_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_512_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d0 new file mode 100755 index 0000000..ac34e11 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d1 new file mode 100755 index 0000000..e3ceb5d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d0 new file mode 100755 index 0000000..990b0b5 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d1 new file mode 100755 index 0000000..7c98e82 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d0 new file mode 100755 index 0000000..a92178c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d1 new file mode 100755 index 0000000..1984d9b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d0 new file mode 100755 index 0000000..d761c77 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d1 new file mode 100755 index 0000000..afe0a71 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d0 new file mode 100755 index 0000000..a296865 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d1 new file mode 100755 index 0000000..5c15d4a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_192_64_s6_d1 new file mode 100755 index 0000000..c814883 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_192_64_s7_d1 new file mode 100755 index 0000000..b4619bc Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_192_64_s8_d1 new file mode 100755 index 0000000..9b65fbc Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_192_64_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_192_64_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_192_64_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_192_64_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d0 new file mode 100755 index 0000000..0ac1014 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d1 new file mode 100755 index 0000000..79b8b1d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d0 new file mode 100755 index 0000000..626c3ca Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d1 new file mode 100755 index 0000000..23ec16e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_256_128_s3_d1 new file mode 100755 index 0000000..cd17c6b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_128_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_256_128_s4_d1 new file mode 100755 index 0000000..cfd4b06 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_128_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_128_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_128_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_128_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_256_16_s0_d0 new file mode 100755 index 0000000..8361565 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_16_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_16_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_16_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_256_16_s2_d0 new file mode 100755 index 0000000..1948a92 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_16_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_16_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_16_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_256_16_s3_d0 new file mode 100755 index 0000000..26deece Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_16_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_16_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_16_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_256_16_s4_d0 new file mode 100755 index 0000000..4077d11 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_16_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_16_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_16_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_256_16_s5_d0 new file mode 100755 index 0000000..c31b380 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_16_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_16_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_16_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_256_16_s6_d0 new file mode 100755 index 0000000..e08c75e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_16_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_16_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_16_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_256_16_s7_d0 new file mode 100755 index 0000000..1812b99 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_16_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_16_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_16_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_256_16_s8_d0 new file mode 100755 index 0000000..a38ba5c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_16_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_16_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_16_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_16_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s0_d0.log new file mode 100644 index 0000000..89c1cad --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s0_d0.log @@ -0,0 +1,6 @@ +../../cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp(188): error: static assertion failed with "Specialization requires Stages set to value 1 or more." + static_assert(DispatchPolicy::Stages >= 2, "Specialization requires Stages set to value 1 or more."); + ^ + detected during instantiation of class "cutlass::gemm::collective::CollectiveMma, TileShape_, ElementA_, StrideA_, ElementB_, StrideB_, TiledMma_, GmemTiledCopyA_, SmemLayoutAtomA_, SmemCopyAtomA_, TransformA_, GmemTiledCopyB_, SmemLayoutAtomB_, SmemCopyAtomB_, TransformB_> [with Stages=1, SchedulerPipelineStageCount=2, AccumulatorPipelineStageCount=2, ClusterShape=ClusterShape, TileShape_=MmaTileShape, ElementA_=ElementAB, StrideA_=cute::tuple, int64_t>, ElementB_=ElementAB, StrideB_=cute::tuple, int64_t>, TiledMma_=cute::TiledMMA>, cute::Layout, cute::tuple>>, cute::tuple>, GmemTiledCopyA_=cute::SM90_TMA_LOAD, SmemLayoutAtomA_=cute::ComposedLayout, cute::smem_ptr_flag_bits<16>, cute::Layout, cute::tuple>>, SmemCopyAtomA_=void, TransformA_=cute::identity, GmemTiledCopyB_=cute::SM90_TMA_LOAD, SmemLayoutAtomB_=cute::ComposedLayout, cute::smem_ptr_flag_bits<16>, cute::Layout, cute::tuple>>, SmemCopyAtomB_=void, TransformB_=cute::identity]" at line 171 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_256_256_s0_d1 new file mode 100755 index 0000000..d68affe Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_256_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s2_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s2_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_256_256_s2_d1 new file mode 100755 index 0000000..a46fdb5 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_256_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s3_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s3_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_256_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_256_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_256_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d0 new file mode 100755 index 0000000..3351f29 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d1 new file mode 100755 index 0000000..79a09be Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d0 new file mode 100755 index 0000000..acfcd2b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d1 new file mode 100755 index 0000000..20df797 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d0 new file mode 100755 index 0000000..5ae7e1e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d1 new file mode 100755 index 0000000..c0e9a7f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d0 new file mode 100755 index 0000000..3cefc18 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d1 new file mode 100755 index 0000000..df7735f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d0 new file mode 100755 index 0000000..9fef694 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d1 new file mode 100755 index 0000000..a7e4412 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d0 new file mode 100755 index 0000000..b06948c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d1 new file mode 100755 index 0000000..9dcc130 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d0 new file mode 100755 index 0000000..6b8e6c1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d1 new file mode 100755 index 0000000..e351789 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d0 new file mode 100755 index 0000000..7103801 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d1 new file mode 100755 index 0000000..43b555f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_32_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_512_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_512_s0_d1.log new file mode 100644 index 0000000..69980f1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_512_s0_d1.log @@ -0,0 +1,6 @@ +../../cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp(188): error: static assertion failed with "Specialization requires Stages set to value 1 or more." + static_assert(DispatchPolicy::Stages >= 2, "Specialization requires Stages set to value 1 or more."); + ^ + detected during instantiation of class "cutlass::gemm::collective::CollectiveMma, TileShape_, ElementA_, StrideA_, ElementB_, StrideB_, TiledMma_, GmemTiledCopyA_, SmemLayoutAtomA_, SmemCopyAtomA_, TransformA_, GmemTiledCopyB_, SmemLayoutAtomB_, SmemCopyAtomB_, TransformB_> [with Stages=1, SchedulerPipelineStageCount=2, AccumulatorPipelineStageCount=2, ClusterShape=ClusterShape, TileShape_=MmaTileShape, ElementA_=ElementAB, StrideA_=cute::tuple, int64_t>, ElementB_=ElementAB, StrideB_=cute::tuple, int64_t>, TiledMma_=cute::TiledMMA, cute::C<256>, cute::integral_constant, cute::integral_constant, cute::integral_constant, cute::integral_constant>>, cute::Layout, cute::tuple>>, cute::tuple>, GmemTiledCopyA_=cute::SM90_TMA_LOAD, SmemLayoutAtomA_=cute::ComposedLayout, cute::smem_ptr_flag_bits<8>, cute::Layout, cute::tuple>>, SmemCopyAtomA_=void, TransformA_=cute::identity, GmemTiledCopyB_=cute::SM90_TMA_LOAD, SmemLayoutAtomB_=cute::ComposedLayout, cute::smem_ptr_flag_bits<8>, cute::Layout, cute::tuple>>, SmemCopyAtomB_=void, TransformB_=cute::identity]" at line 171 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_512_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_512_s2_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_512_s2_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_512_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_512_s3_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_512_s3_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_512_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_512_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_512_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_512_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_512_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_512_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_512_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_512_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_512_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_512_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_512_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_512_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_512_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_512_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_512_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d0 new file mode 100755 index 0000000..2f80376 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d1 new file mode 100755 index 0000000..b17d3c4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d0 new file mode 100755 index 0000000..9e0309c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d1 new file mode 100755 index 0000000..21caa6b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d0 new file mode 100755 index 0000000..9de9bdc Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d1 new file mode 100755 index 0000000..1c58e09 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d0 new file mode 100755 index 0000000..580400c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d1 new file mode 100755 index 0000000..df34ca9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_256_64_s5_d1 new file mode 100755 index 0000000..078e010 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_256_64_s6_d1 new file mode 100755 index 0000000..d2564c9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_256_64_s7_d1 new file mode 100755 index 0000000..89bd79c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_256_64_s8_d1 new file mode 100755 index 0000000..1abb73b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_256_64_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_256_64_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_256_64_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_256_64_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d0 new file mode 100755 index 0000000..68df2e5 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d1 new file mode 100755 index 0000000..c21647c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d0 new file mode 100755 index 0000000..5717791 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d1 new file mode 100755 index 0000000..1383d63 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d0 new file mode 100755 index 0000000..96ba92a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d1 new file mode 100755 index 0000000..e672ff4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d0 new file mode 100755 index 0000000..0bcf8ec Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d1 new file mode 100755 index 0000000..697b3a5 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d0 new file mode 100755 index 0000000..eb5dd90 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d1 new file mode 100755 index 0000000..43b1f2d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_32_128_s6_d1 new file mode 100755 index 0000000..bcbe386 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_32_128_s7_d1 new file mode 100755 index 0000000..9ab693e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_32_128_s8_d1 new file mode 100755 index 0000000..0333aa4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_128_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_128_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_128_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_128_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_32_16_s0_d0 new file mode 100755 index 0000000..0513d5a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_16_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_16_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_16_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_32_16_s2_d0 new file mode 100755 index 0000000..88f323e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_16_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_16_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_16_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_32_16_s3_d0 new file mode 100755 index 0000000..6920769 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_16_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_16_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_16_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_32_16_s4_d0 new file mode 100755 index 0000000..f5eda0b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_16_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_16_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_16_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_32_16_s5_d0 new file mode 100755 index 0000000..4ab5bdd Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_16_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_16_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_16_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_32_16_s6_d0 new file mode 100755 index 0000000..fab8c6c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_16_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_16_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_16_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_32_16_s7_d0 new file mode 100755 index 0000000..811b701 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_16_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_16_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_16_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_32_16_s8_d0 new file mode 100755 index 0000000..114f2f8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_16_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_16_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_16_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_16_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d0 new file mode 100755 index 0000000..4ba7c1f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d1 new file mode 100755 index 0000000..c36157e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d0 new file mode 100755 index 0000000..008b5b3 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d1 new file mode 100755 index 0000000..9023e7e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_32_256_s3_d1 new file mode 100755 index 0000000..a809980 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_256_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_32_256_s4_d1 new file mode 100755 index 0000000..0747efb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_256_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_32_256_s5_d1 new file mode 100755 index 0000000..6dae461 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_256_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_256_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_256_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_256_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d0 new file mode 100755 index 0000000..62d55f9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d1 new file mode 100755 index 0000000..750bb80 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d0 new file mode 100755 index 0000000..3766b0c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d1 new file mode 100755 index 0000000..3499c23 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d0 new file mode 100755 index 0000000..74c6928 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d1 new file mode 100755 index 0000000..3f3d1c4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d0 new file mode 100755 index 0000000..220aa75 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d1 new file mode 100755 index 0000000..422ca33 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d0 new file mode 100755 index 0000000..de8f83f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d1 new file mode 100755 index 0000000..45ddc6a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d0 new file mode 100755 index 0000000..c6c474d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d1 new file mode 100755 index 0000000..d87eb39 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d0 new file mode 100755 index 0000000..b4f503e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d1 new file mode 100755 index 0000000..1304b99 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d0 new file mode 100755 index 0000000..4f529d2 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d1 new file mode 100755 index 0000000..9888022 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_32_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_512_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_32_512_s0_d1 new file mode 100755 index 0000000..ab7df10 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_512_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_512_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_512_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_512_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_512_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_32_512_s2_d1 new file mode 100755 index 0000000..56ca4f1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_512_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_512_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_512_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_512_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_512_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_512_s3_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_512_s3_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_512_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_512_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_512_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_512_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_512_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_512_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_512_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_512_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_512_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_512_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_512_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_512_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_512_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_512_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_512_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d0 new file mode 100755 index 0000000..4a631de Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d1 new file mode 100755 index 0000000..d02497d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d0 new file mode 100755 index 0000000..24e3732 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d1 new file mode 100755 index 0000000..be36500 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d0 new file mode 100755 index 0000000..d28a66d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d1 new file mode 100755 index 0000000..2bd809d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d0 new file mode 100755 index 0000000..0c2e243 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d1 new file mode 100755 index 0000000..9dcab65 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d0 new file mode 100755 index 0000000..eceecb4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d1 new file mode 100755 index 0000000..855fc21 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d0 new file mode 100755 index 0000000..65d1f5a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d1 new file mode 100755 index 0000000..2e72f40 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d0 new file mode 100755 index 0000000..e5b3865 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d1 new file mode 100755 index 0000000..322d465 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d0 new file mode 100755 index 0000000..d3e3f89 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d1 new file mode 100755 index 0000000..71193d9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_32_64_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d0 new file mode 100755 index 0000000..bd33f8f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d1 new file mode 100755 index 0000000..a5e8960 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d0 new file mode 100755 index 0000000..3a75925 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d1 new file mode 100755 index 0000000..6789bcc Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d0 new file mode 100755 index 0000000..1e7d0e7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d1 new file mode 100755 index 0000000..4a628fd Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d0 new file mode 100755 index 0000000..1a63d9f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d1 new file mode 100755 index 0000000..56222a7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_64_128_s5_d1 new file mode 100755 index 0000000..c471386 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_64_128_s6_d1 new file mode 100755 index 0000000..2ec1467 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_64_128_s7_d1 new file mode 100755 index 0000000..54f7dd7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_64_128_s8_d1 new file mode 100755 index 0000000..402f272 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_128_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_128_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_128_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_128_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_64_16_s0_d0 new file mode 100755 index 0000000..38bbe76 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_16_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_16_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_16_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_64_16_s2_d0 new file mode 100755 index 0000000..be92eba Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_16_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_16_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_16_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_64_16_s3_d0 new file mode 100755 index 0000000..0285a54 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_16_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_16_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_16_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_64_16_s4_d0 new file mode 100755 index 0000000..415a75b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_16_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_16_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_16_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_64_16_s5_d0 new file mode 100755 index 0000000..386589e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_16_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_16_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_16_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_64_16_s6_d0 new file mode 100755 index 0000000..4a19dc0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_16_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_16_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_16_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_64_16_s7_d0 new file mode 100755 index 0000000..d3ef01d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_16_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_16_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_16_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_64_16_s8_d0 new file mode 100755 index 0000000..075c9b4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_16_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_16_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_16_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_16_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d0 new file mode 100755 index 0000000..050242a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d1 new file mode 100755 index 0000000..c0c103f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d0 new file mode 100755 index 0000000..0533aca Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d1 new file mode 100755 index 0000000..3414090 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_64_256_s3_d1 new file mode 100755 index 0000000..9595926 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_256_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_64_256_s4_d1 new file mode 100755 index 0000000..506a702 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_256_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_256_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_256_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_256_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d0 new file mode 100755 index 0000000..35fedbe Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d1 new file mode 100755 index 0000000..05f6d1e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d0 new file mode 100755 index 0000000..ca0e28b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d1 new file mode 100755 index 0000000..47cb424 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d0 new file mode 100755 index 0000000..82d7189 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d1 new file mode 100755 index 0000000..75d7ada Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d0 new file mode 100755 index 0000000..66ba992 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d1 new file mode 100755 index 0000000..e581552 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d0 new file mode 100755 index 0000000..e4e3ab8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d1 new file mode 100755 index 0000000..6739a57 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d0 new file mode 100755 index 0000000..e15d156 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d1 new file mode 100755 index 0000000..36c2bc4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d0 new file mode 100755 index 0000000..77fcb07 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d1 new file mode 100755 index 0000000..9227a7c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d0 new file mode 100755 index 0000000..86ab4a5 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d1 new file mode 100755 index 0000000..2625bad Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_32_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_512_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_64_512_s0_d1 new file mode 100755 index 0000000..fe7af03 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_512_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_512_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_512_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_512_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_512_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_64_512_s2_d1 new file mode 100755 index 0000000..1045371 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_512_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_512_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_512_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_512_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_512_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_512_s3_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_512_s3_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_512_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_512_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_512_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_512_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_512_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_512_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_512_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_512_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_512_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_512_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_512_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_512_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_512_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_512_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_512_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d0 b/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d0 new file mode 100755 index 0000000..4ba68c8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d1 b/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d1 new file mode 100755 index 0000000..6f6daeb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d0 b/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d0 new file mode 100755 index 0000000..15f77b0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d1 b/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d1 new file mode 100755 index 0000000..91c4bf4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d0 b/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d0 new file mode 100755 index 0000000..d76d0dc Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d1 b/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d1 new file mode 100755 index 0000000..9a2d85e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d0 b/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d0 new file mode 100755 index 0000000..6ce63ca Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d1 b/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d1 new file mode 100755 index 0000000..9a7fe94 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d0 b/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d0 new file mode 100755 index 0000000..df22ea7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d1 b/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d1 new file mode 100755 index 0000000..21a0179 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d0 b/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d0 new file mode 100755 index 0000000..bbaedf3 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d1 b/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d1 new file mode 100755 index 0000000..5aabf53 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d0 b/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d0 new file mode 100755 index 0000000..aedd32c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d1 b/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d1 new file mode 100755 index 0000000..e3bd99d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d0 b/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d0 new file mode 100755 index 0000000..d2bd06b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d0.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d1 b/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d1 new file mode 100755 index 0000000..8cf6732 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d1.log b/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_128_64_64_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d0 new file mode 100755 index 0000000..3490ea7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d1 new file mode 100755 index 0000000..6606825 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d0 new file mode 100755 index 0000000..2731488 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d1 new file mode 100755 index 0000000..ad0d6c0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d0 new file mode 100755 index 0000000..c7c7855 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d1 new file mode 100755 index 0000000..2245ff1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d0 new file mode 100755 index 0000000..ef35ca8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d1 new file mode 100755 index 0000000..f8a2a73 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_128_128_s5_d1 new file mode 100755 index 0000000..b01fe1c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s6_d1 b/cutlass_gemm_mainloop/build/bench_64_128_128_s6_d1 new file mode 100755 index 0000000..5a70e6e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s7_d1 b/cutlass_gemm_mainloop/build/bench_64_128_128_s7_d1 new file mode 100755 index 0000000..1604b21 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s8_d1 b/cutlass_gemm_mainloop/build/bench_64_128_128_s8_d1 new file mode 100755 index 0000000..4659c95 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_128_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_128_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_128_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_128_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_128_16_s0_d0 new file mode 100755 index 0000000..c9d7f20 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_16_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_16_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_16_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_128_16_s2_d0 new file mode 100755 index 0000000..501b152 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_16_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_16_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_16_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_128_16_s3_d0 new file mode 100755 index 0000000..e28fc1a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_16_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_16_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_16_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_128_16_s4_d0 new file mode 100755 index 0000000..74de6b0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_16_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_16_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_16_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_128_16_s5_d0 new file mode 100755 index 0000000..3ed3049 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_16_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_16_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_16_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_128_16_s6_d0 new file mode 100755 index 0000000..8e5dc28 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_16_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_16_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_16_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_128_16_s7_d0 new file mode 100755 index 0000000..834e033 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_16_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_16_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_16_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s8_d0 b/cutlass_gemm_mainloop/build/bench_64_128_16_s8_d0 new file mode 100755 index 0000000..72a0363 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_16_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_16_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_16_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_16_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d0 new file mode 100755 index 0000000..c76c96c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d1 new file mode 100755 index 0000000..db03abd Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d0 new file mode 100755 index 0000000..e6ec530 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d1 new file mode 100755 index 0000000..d920f14 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_128_256_s3_d1 new file mode 100755 index 0000000..b2d87e0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_256_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_128_256_s4_d1 new file mode 100755 index 0000000..0ccd81f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_256_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_256_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_256_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_256_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d0 new file mode 100755 index 0000000..71aafc8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d1 new file mode 100755 index 0000000..e2da947 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d0 new file mode 100755 index 0000000..f3ef503 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d1 new file mode 100755 index 0000000..2d9fc5e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d0 new file mode 100755 index 0000000..a27d512 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d1 new file mode 100755 index 0000000..69a6e03 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d0 new file mode 100755 index 0000000..999fece Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d1 new file mode 100755 index 0000000..7b7e94f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d0 new file mode 100755 index 0000000..e7026ac Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d1 new file mode 100755 index 0000000..8c0512d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d0 new file mode 100755 index 0000000..c00e73c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d1 b/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d1 new file mode 100755 index 0000000..528ead1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d0 new file mode 100755 index 0000000..d8e0b5b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d1 b/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d1 new file mode 100755 index 0000000..e90cab1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d0 b/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d0 new file mode 100755 index 0000000..da46446 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d1 b/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d1 new file mode 100755 index 0000000..0c3da99 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_32_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_512_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_128_512_s0_d1 new file mode 100755 index 0000000..6eea3a4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_512_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_512_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_512_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_512_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_512_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_128_512_s2_d1 new file mode 100755 index 0000000..8da762e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_512_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_512_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_512_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_512_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_512_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_512_s3_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_512_s3_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_512_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_512_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_512_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_512_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_512_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_512_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_512_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_512_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_512_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_512_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_512_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_512_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_512_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_512_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_512_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d0 new file mode 100755 index 0000000..c00d442 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d1 new file mode 100755 index 0000000..32f1ecc Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d0 new file mode 100755 index 0000000..5c7308a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d1 new file mode 100755 index 0000000..2feb733 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d0 new file mode 100755 index 0000000..6c4eacb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d1 new file mode 100755 index 0000000..4a3f946 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d0 new file mode 100755 index 0000000..e2a8aed Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d1 new file mode 100755 index 0000000..03b9e81 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d0 new file mode 100755 index 0000000..98be53f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d1 new file mode 100755 index 0000000..690312f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d0 new file mode 100755 index 0000000..af0d86c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d1 b/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d1 new file mode 100755 index 0000000..c2e76e1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d0 new file mode 100755 index 0000000..bbefb85 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d1 b/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d1 new file mode 100755 index 0000000..f1cb87a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d0 b/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d0 new file mode 100755 index 0000000..c745660 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d1 b/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d1 new file mode 100755 index 0000000..1184593 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_128_64_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d0 new file mode 100755 index 0000000..6a5f453 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d1 new file mode 100755 index 0000000..0676645 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d0 new file mode 100755 index 0000000..95b7307 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d1 new file mode 100755 index 0000000..cac8d45 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d0 new file mode 100755 index 0000000..9dc34b2 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d1 new file mode 100755 index 0000000..2a39e9a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d0 new file mode 100755 index 0000000..b47befe Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d1 new file mode 100755 index 0000000..0752b74 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d0 new file mode 100755 index 0000000..a1ee0f1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d1 new file mode 100755 index 0000000..0ea9046 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d0 new file mode 100755 index 0000000..d08c78e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d1 b/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d1 new file mode 100755 index 0000000..d65d00b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d0 new file mode 100755 index 0000000..d836343 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d1 b/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d1 new file mode 100755 index 0000000..08ab810 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d0 b/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d0 new file mode 100755 index 0000000..0452290 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d1 b/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d1 new file mode 100755 index 0000000..fc36ff2 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_128_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_16_16_s0_d0 new file mode 100755 index 0000000..6e96c55 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_16_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_16_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_16_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_16_16_s2_d0 new file mode 100755 index 0000000..af95347 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_16_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_16_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_16_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_16_16_s3_d0 new file mode 100755 index 0000000..6aca17a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_16_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_16_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_16_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_16_16_s4_d0 new file mode 100755 index 0000000..fd9dd10 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_16_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_16_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_16_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_16_16_s5_d0 new file mode 100755 index 0000000..a8e3446 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_16_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_16_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_16_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_16_16_s6_d0 new file mode 100755 index 0000000..858f3a4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_16_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_16_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_16_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_16_16_s7_d0 new file mode 100755 index 0000000..8ffdcdb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_16_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_16_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_16_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s8_d0 b/cutlass_gemm_mainloop/build/bench_64_16_16_s8_d0 new file mode 100755 index 0000000..a2d3fdd Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_16_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_16_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_16_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_16_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d0 new file mode 100755 index 0000000..b16d14c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d1 new file mode 100755 index 0000000..b229837 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d0 new file mode 100755 index 0000000..b736d63 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d1 new file mode 100755 index 0000000..c53450a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d0 new file mode 100755 index 0000000..3667898 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d1 new file mode 100755 index 0000000..03f7b54 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d0 new file mode 100755 index 0000000..4227b3b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d1 new file mode 100755 index 0000000..d0c6fc8 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d0 new file mode 100755 index 0000000..9e3af86 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d1 new file mode 100755 index 0000000..87c8d2d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s6_d1 b/cutlass_gemm_mainloop/build/bench_64_16_256_s6_d1 new file mode 100755 index 0000000..f4eab65 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s7_d1 b/cutlass_gemm_mainloop/build/bench_64_16_256_s7_d1 new file mode 100755 index 0000000..2f315f6 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s8_d1 b/cutlass_gemm_mainloop/build/bench_64_16_256_s8_d1 new file mode 100755 index 0000000..33701d6 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_256_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_256_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_256_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_256_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d0 new file mode 100755 index 0000000..5d5877c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d1 new file mode 100755 index 0000000..c4ae457 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d0 new file mode 100755 index 0000000..ec0ea47 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d1 new file mode 100755 index 0000000..fc6a326 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d0 new file mode 100755 index 0000000..7dc9c3a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d1 new file mode 100755 index 0000000..bb47451 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d0 new file mode 100755 index 0000000..ca3c2b2 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d1 new file mode 100755 index 0000000..f08db19 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d0 new file mode 100755 index 0000000..6e7d226 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d1 new file mode 100755 index 0000000..6401d83 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d0 new file mode 100755 index 0000000..f41d537 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d1 b/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d1 new file mode 100755 index 0000000..4d6fde0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d0 new file mode 100755 index 0000000..fe5f7f1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d1 b/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d1 new file mode 100755 index 0000000..65fda39 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d0 b/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d0 new file mode 100755 index 0000000..58c5935 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d1 b/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d1 new file mode 100755 index 0000000..f17e19c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_32_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_16_512_s0_d1 new file mode 100755 index 0000000..77d83c5 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_512_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_512_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_512_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_16_512_s2_d1 new file mode 100755 index 0000000..f2c8b1e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_512_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_512_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_512_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_16_512_s3_d1 new file mode 100755 index 0000000..a78dc62 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_512_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_512_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_512_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_16_512_s4_d1 new file mode 100755 index 0000000..d8ace05 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_512_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_512_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_512_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_16_512_s5_d1 new file mode 100755 index 0000000..28da5e0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_512_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_512_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_512_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_512_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_512_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_512_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_512_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_16_512_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_512_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_512_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d0 new file mode 100755 index 0000000..77a00ab Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d1 new file mode 100755 index 0000000..76e9ecb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d0 new file mode 100755 index 0000000..bc0aa72 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d1 new file mode 100755 index 0000000..c977215 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d0 new file mode 100755 index 0000000..4ff25cc Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d1 new file mode 100755 index 0000000..2de037f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d0 new file mode 100755 index 0000000..42ba4e9 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d1 new file mode 100755 index 0000000..22528b1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d0 new file mode 100755 index 0000000..f75a426 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d1 new file mode 100755 index 0000000..0ac740f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d0 new file mode 100755 index 0000000..ab641e7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d1 b/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d1 new file mode 100755 index 0000000..79a519e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d0 new file mode 100755 index 0000000..2059289 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d1 b/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d1 new file mode 100755 index 0000000..d919620 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d0 b/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d0 new file mode 100755 index 0000000..327b0a2 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d1 b/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d1 new file mode 100755 index 0000000..58e0f1b Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_16_64_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d0 new file mode 100755 index 0000000..81c9156 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d1 new file mode 100755 index 0000000..9a13181 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d0 new file mode 100755 index 0000000..726671f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d1 new file mode 100755 index 0000000..e72ab28 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d0 new file mode 100755 index 0000000..d514937 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d1 new file mode 100755 index 0000000..3ac5938 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_192_128_s4_d1 new file mode 100755 index 0000000..0fd7246 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_128_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_192_128_s5_d1 new file mode 100755 index 0000000..0fa2a0e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_128_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s6_d1 b/cutlass_gemm_mainloop/build/bench_64_192_128_s6_d1 new file mode 100755 index 0000000..2ea042d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_128_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s7_d1 b/cutlass_gemm_mainloop/build/bench_64_192_128_s7_d1 new file mode 100755 index 0000000..9fbc93f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_128_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_128_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_128_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_128_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_192_16_s0_d0 new file mode 100755 index 0000000..143effb Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_16_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_16_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_16_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_192_16_s2_d0 new file mode 100755 index 0000000..7d641a5 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_16_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_16_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_16_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_192_16_s3_d0 new file mode 100755 index 0000000..ba817e4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_16_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_16_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_16_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_192_16_s4_d0 new file mode 100755 index 0000000..f9348d5 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_16_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_16_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_16_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_192_16_s5_d0 new file mode 100755 index 0000000..36b2a01 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_16_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_16_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_16_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_192_16_s6_d0 new file mode 100755 index 0000000..b7165a4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_16_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_16_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_16_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_192_16_s7_d0 new file mode 100755 index 0000000..06b64d7 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_16_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_16_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_16_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s8_d0 b/cutlass_gemm_mainloop/build/bench_64_192_16_s8_d0 new file mode 100755 index 0000000..0ad1c4e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_16_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_16_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_16_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_16_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s0_d0.log new file mode 100644 index 0000000..27301be --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s0_d0.log @@ -0,0 +1,6 @@ +../../cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp(188): error: static assertion failed with "Specialization requires Stages set to value 1 or more." + static_assert(DispatchPolicy::Stages >= 2, "Specialization requires Stages set to value 1 or more."); + ^ + detected during instantiation of class "cutlass::gemm::collective::CollectiveMma, TileShape_, ElementA_, StrideA_, ElementB_, StrideB_, TiledMma_, GmemTiledCopyA_, SmemLayoutAtomA_, SmemCopyAtomA_, TransformA_, GmemTiledCopyB_, SmemLayoutAtomB_, SmemCopyAtomB_, TransformB_> [with Stages=1, SchedulerPipelineStageCount=2, AccumulatorPipelineStageCount=4, ClusterShape=ClusterShape, TileShape_=MmaTileShape, ElementA_=ElementAB, StrideA_=cute::tuple, int64_t>, ElementB_=ElementAB, StrideB_=cute::tuple, int64_t>, TiledMma_=cute::TiledMMA>, cute::Layout, cute::tuple>>, cute::tuple>, GmemTiledCopyA_=cute::SM90_TMA_LOAD, SmemLayoutAtomA_=cute::ComposedLayout, cute::smem_ptr_flag_bits<16>, cute::Layout, cute::tuple>>, SmemCopyAtomA_=void, TransformA_=cute::identity, GmemTiledCopyB_=cute::SM90_TMA_LOAD, SmemLayoutAtomB_=cute::ComposedLayout, cute::smem_ptr_flag_bits<16>, cute::Layout, cute::tuple>>, SmemCopyAtomB_=void, TransformB_=cute::identity]" at line 171 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_192_256_s0_d1 new file mode 100755 index 0000000..1ea701e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_256_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s2_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s2_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_192_256_s2_d1 new file mode 100755 index 0000000..8a3ea81 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_256_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_192_256_s3_d1 new file mode 100755 index 0000000..7b83615 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_256_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_256_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_256_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_256_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d0 new file mode 100755 index 0000000..c366973 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d1 new file mode 100755 index 0000000..397ee5c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d0 new file mode 100755 index 0000000..e3e4107 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d1 new file mode 100755 index 0000000..9e64447 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d0 new file mode 100755 index 0000000..81fbc2e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d1 new file mode 100755 index 0000000..6835785 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d0 new file mode 100755 index 0000000..0fa285e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d1 new file mode 100755 index 0000000..7ba51f3 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d0 new file mode 100755 index 0000000..6a8dda0 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d1 new file mode 100755 index 0000000..21c4a15 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d0 new file mode 100755 index 0000000..73a2b67 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d1 b/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d1 new file mode 100755 index 0000000..69b853e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d0 new file mode 100755 index 0000000..62ebe8e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d1 b/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d1 new file mode 100755 index 0000000..4b65742 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d0 b/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d0 new file mode 100755 index 0000000..4291caf Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d1 b/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d1 new file mode 100755 index 0000000..c667f69 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_32_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_512_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_512_s0_d1.log new file mode 100644 index 0000000..d7d94b4 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_512_s0_d1.log @@ -0,0 +1,6 @@ +../../cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp(188): error: static assertion failed with "Specialization requires Stages set to value 1 or more." + static_assert(DispatchPolicy::Stages >= 2, "Specialization requires Stages set to value 1 or more."); + ^ + detected during instantiation of class "cutlass::gemm::collective::CollectiveMma, TileShape_, ElementA_, StrideA_, ElementB_, StrideB_, TiledMma_, GmemTiledCopyA_, SmemLayoutAtomA_, SmemCopyAtomA_, TransformA_, GmemTiledCopyB_, SmemLayoutAtomB_, SmemCopyAtomB_, TransformB_> [with Stages=1, SchedulerPipelineStageCount=2, AccumulatorPipelineStageCount=4, ClusterShape=ClusterShape, TileShape_=MmaTileShape, ElementA_=ElementAB, StrideA_=cute::tuple, int64_t>, ElementB_=ElementAB, StrideB_=cute::tuple, int64_t>, TiledMma_=cute::TiledMMA, cute::C<192>, cute::integral_constant, cute::integral_constant, cute::integral_constant, cute::integral_constant>>, cute::Layout, cute::tuple>>, cute::tuple>, GmemTiledCopyA_=cute::SM90_TMA_LOAD, SmemLayoutAtomA_=cute::ComposedLayout, cute::smem_ptr_flag_bits<8>, cute::Layout, cute::tuple>>, SmemCopyAtomA_=void, TransformA_=cute::identity, GmemTiledCopyB_=cute::SM90_TMA_LOAD, SmemLayoutAtomB_=cute::ComposedLayout, cute::smem_ptr_flag_bits<8>, cute::Layout, cute::tuple>>, SmemCopyAtomB_=void, TransformB_=cute::identity]" at line 171 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_512_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_512_s2_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_512_s2_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_512_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_512_s3_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_512_s3_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_512_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_512_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_512_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_512_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_512_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_512_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_512_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_512_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_512_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_512_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_512_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_512_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_512_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_512_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_512_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d0 new file mode 100755 index 0000000..66dbeec Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d1 new file mode 100755 index 0000000..19fa2d4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d0 new file mode 100755 index 0000000..24cf4fe Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d1 new file mode 100755 index 0000000..f2b12da Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d0 new file mode 100755 index 0000000..a48d80a Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d1 new file mode 100755 index 0000000..a63358e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d0 new file mode 100755 index 0000000..38d5599 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d1 new file mode 100755 index 0000000..00a5100 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d0 new file mode 100755 index 0000000..49381bf Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d1 new file mode 100755 index 0000000..5c85d76 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d0 new file mode 100755 index 0000000..4947de4 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d1 b/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d1 new file mode 100755 index 0000000..6907296 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s6_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d0 new file mode 100755 index 0000000..d15e267 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d1 b/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d1 new file mode 100755 index 0000000..b3bd8cc Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s7_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s8_d1 b/cutlass_gemm_mainloop/build/bench_64_192_64_s8_d1 new file mode 100755 index 0000000..e3cf0e6 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_192_64_s8_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_192_64_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_192_64_s8_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_192_64_s8_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d0 new file mode 100755 index 0000000..c4e0988 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d1 new file mode 100755 index 0000000..3196ee1 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d0 new file mode 100755 index 0000000..adc353f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d1 new file mode 100755 index 0000000..78ae165 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s3_d1 b/cutlass_gemm_mainloop/build/bench_64_256_128_s3_d1 new file mode 100755 index 0000000..51d3950 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_128_s3_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s3_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s3_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s4_d1 b/cutlass_gemm_mainloop/build/bench_64_256_128_s4_d1 new file mode 100755 index 0000000..1733e8c Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_128_s4_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s4_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s4_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s5_d1 b/cutlass_gemm_mainloop/build/bench_64_256_128_s5_d1 new file mode 100755 index 0000000..75a100e Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_128_s5_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s5_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s5_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_128_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_128_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_128_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s0_d0 b/cutlass_gemm_mainloop/build/bench_64_256_16_s0_d0 new file mode 100755 index 0000000..dba9c4d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_16_s0_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_16_s0_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_16_s0_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s2_d0 b/cutlass_gemm_mainloop/build/bench_64_256_16_s2_d0 new file mode 100755 index 0000000..31baa69 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_16_s2_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_16_s2_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_16_s2_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s3_d0 b/cutlass_gemm_mainloop/build/bench_64_256_16_s3_d0 new file mode 100755 index 0000000..76425ee Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_16_s3_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_16_s3_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_16_s3_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s4_d0 b/cutlass_gemm_mainloop/build/bench_64_256_16_s4_d0 new file mode 100755 index 0000000..101d55d Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_16_s4_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_16_s4_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_16_s4_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s5_d0 b/cutlass_gemm_mainloop/build/bench_64_256_16_s5_d0 new file mode 100755 index 0000000..31c4f59 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_16_s5_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_16_s5_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_16_s5_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s6_d0 b/cutlass_gemm_mainloop/build/bench_64_256_16_s6_d0 new file mode 100755 index 0000000..a2f7dfa Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_16_s6_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_16_s6_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_16_s6_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s7_d0 b/cutlass_gemm_mainloop/build/bench_64_256_16_s7_d0 new file mode 100755 index 0000000..aae2aa3 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_16_s7_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_16_s7_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_16_s7_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s8_d0 b/cutlass_gemm_mainloop/build/bench_64_256_16_s8_d0 new file mode 100755 index 0000000..cfdba0f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_16_s8_d0 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_16_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_16_s8_d0.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_16_s8_d0.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s0_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s0_d0.log new file mode 100644 index 0000000..817a4af --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s0_d0.log @@ -0,0 +1,6 @@ +../../cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp(188): error: static assertion failed with "Specialization requires Stages set to value 1 or more." + static_assert(DispatchPolicy::Stages >= 2, "Specialization requires Stages set to value 1 or more."); + ^ + detected during instantiation of class "cutlass::gemm::collective::CollectiveMma, TileShape_, ElementA_, StrideA_, ElementB_, StrideB_, TiledMma_, GmemTiledCopyA_, SmemLayoutAtomA_, SmemCopyAtomA_, TransformA_, GmemTiledCopyB_, SmemLayoutAtomB_, SmemCopyAtomB_, TransformB_> [with Stages=1, SchedulerPipelineStageCount=2, AccumulatorPipelineStageCount=4, ClusterShape=ClusterShape, TileShape_=MmaTileShape, ElementA_=ElementAB, StrideA_=cute::tuple, int64_t>, ElementB_=ElementAB, StrideB_=cute::tuple, int64_t>, TiledMma_=cute::TiledMMA>, cute::Layout, cute::tuple>>, cute::tuple>, GmemTiledCopyA_=cute::SM90_TMA_LOAD, SmemLayoutAtomA_=cute::ComposedLayout, cute::smem_ptr_flag_bits<16>, cute::Layout, cute::tuple>>, SmemCopyAtomA_=void, TransformA_=cute::identity, GmemTiledCopyB_=cute::SM90_TMA_LOAD, SmemLayoutAtomB_=cute::ComposedLayout, cute::smem_ptr_flag_bits<16>, cute::Layout, cute::tuple>>, SmemCopyAtomB_=void, TransformB_=cute::identity]" at line 171 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s0_d1 b/cutlass_gemm_mainloop/build/bench_64_256_256_s0_d1 new file mode 100755 index 0000000..c99784f Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_256_s0_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s0_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s0_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s0_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s2_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s2_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s2_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s2_d1 b/cutlass_gemm_mainloop/build/bench_64_256_256_s2_d1 new file mode 100755 index 0000000..5593da5 Binary files /dev/null and b/cutlass_gemm_mainloop/build/bench_64_256_256_s2_d1 differ diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s2_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s2_d1.log new file mode 100644 index 0000000..94ccf30 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s2_d1.log @@ -0,0 +1,6 @@ +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s3_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s3_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s3_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s3_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s3_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s3_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s4_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s4_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s4_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s4_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s4_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s4_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s5_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s5_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s5_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s5_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s5_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s5_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s6_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s6_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s6_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s6_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s6_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s6_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s7_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s7_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s7_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s7_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s7_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s7_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s8_d0.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s8_d0.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s8_d0.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::operator()(const cutlass::gemm::kernel::GemmUniversal, cutlass::detail::is_kernel_tag_of>, void>>::Params &, char *) [with ProblemShape_=cute::tuple, CollectiveMainloop_=CollectiveMainloop, CollectiveEpilogue_=CollectiveEpilogue, TileSchedulerTag_=void]" at line 123 of ../../cutlass/include/cutlass/device_kernel.h + instantiation of "void cutlass::device_kernel(Operator::Params) [with Operator=GemmKernel]" at line 347 of ../../cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h + instantiation of "cutlass::Status cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::initialize(const cutlass::gemm::device::GemmUniversalAdapter, void>::value, void>>::Arguments &, void *, cudaStream_t, cutlass::CudaHostAdapter *) [with GemmKernel_=GemmKernel]" at line 220 of /home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu + +/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu(79): warning #177-D: function "pick_factorization" was declared but never referenced + static std::pair pick_factorization(int tile_m, int tile_n) { + ^ + +Remark: The warnings can be suppressed with "-diag-suppress " + +1 error detected in the compilation of "/home/net/microbench-blackwell/cutlass_gemm_mainloop/cutlass_gemm_bench.cu". diff --git a/cutlass_gemm_mainloop/build/bench_64_256_256_s8_d1.log b/cutlass_gemm_mainloop/build/bench_64_256_256_s8_d1.log new file mode 100644 index 0000000..775e3a1 --- /dev/null +++ b/cutlass_gemm_mainloop/build/bench_64_256_256_s8_d1.log @@ -0,0 +1,15 @@ +../../cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp(410): error: static assertion failed with "SMEM usage exceeded capacity." + static_assert(SharedStorageSize <= cutlass::arch::sm100_smem_capacity_bytes, "SMEM usage exceeded capacity."); + ^ + detected during: + instantiation of "void cutlass::gemm::kernel::GemmUniversal