HYZhao
HYZhao
How do I set the random seed to reproduce the same result each time? I set it up as follows, but it doesn't work ``` tf.set_random_seed(1) np.random.seed(1) random.seed(1) ``` I'm...
I am a beginner to cutlass and I have reviewed many related documents and examples;I also have a general understanding of ThreadBlockShape, WarpShape, InstructionShape, NumStages; In my current problem domain,...
### Description ``` inputs = flow.ones([4, 10],dtype=flow.float32, placement=placement, sbp=flow.sbp.broadcast) weight = flow.ones([10, 4],dtype=flow.float32, placement=placement, sbp=flow.sbp.split(1)) * 2 y = flow.matmul(inputs, weight, ) y.to_global(placement, flow.sbp.broadcast).to_local() ``` this is ok, but when...
**What is your question?** I'm doing matrix multiplication manually with cute ``` Tensor A = make_tensor(make_gmem_ptr(Aptr), make_shape(m, k), make_stride(k, Int{})); Tensor B = make_tensor(make_gmem_ptr(Bptr), make_shape(n, k), make_stride(k, Int{})); Tensor C...
I find that when tokenize, gpu utilization is always zero