| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected