Results 4 issues of Juhong

I got only 5 images from the program. I would like to get more than 100 images.Is it possible?

**What is your question?** ``` using Gemm = cutlass::gemm::device::Gemm< int8_t, cutlass::layout::RowMajor, int8_t, cutlass::layout::ColumnMajor, ElementOutput, cutlass::layout::RowMajor, ElementAccumulator, cutlass::arch::OpClassTensorOp, cutlass::arch::Sm75>; cutlass::gemm::GemmCoord problem_size(M, N, K); cutlass::TensorRef input_ref(input.data_ptr(), LayoutInputA::packed(input_size)); cutlass::TensorRef weight_ref(weight.data_ptr(), LayoutInputB::packed(weight_size)); cutlass::TensorRef out_ref(out.data_ptr(),...

question
inactive-30d

Dear Author, I read your paper with great interest, so I want to run your code. However, I couldn't find the code which generates the result of the Figure 11...

In Appendix B.1, the author said that $o_i=P_{i:} \mathbf{V}=\sum_j P_{i j} v_j$ where $o_i$ is i-th column of O and $v_j$ is j-th column of V. But I think $o_i...