MCPcopy Create free account
hub / github.com/AnswerDotAI/gpu.cpp / MatmulParams

Class MatmulParams

experimental/kernels/unittest_llmc/unittest_kernels.cpp:208–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206 const float* inp, const float* weight, const float* bias,
207 int B, int T, int C, int OC){
208 struct MatmulParams {
209 uint32_t B;
210 uint32_t T;
211 uint32_t C;
212 uint32_t OC;
213 };
214 unsigned long b = static_cast<unsigned long>(B);
215 unsigned long t = static_cast<unsigned long>(T);
216 unsigned long c = static_cast<unsigned long>(C);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected