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