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

Class MatmulParams

experimental/kernels/ops.cpp:162–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160 const float* inp, const float* weight, const float* bias,
161 int B, int T, int C, int OC){
162 struct MatmulParams {
163 uint32_t B;
164 uint32_t T;
165 uint32_t C;
166 uint32_t OC;
167 };
168 unsigned long b = static_cast<unsigned long>(B);
169 unsigned long t = static_cast<unsigned long>(T);
170 unsigned long c = static_cast<unsigned long>(C);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected