| 290 | float* inp, |
| 291 | int B, int T, int C, int NH){ |
| 292 | struct AttentionParams { |
| 293 | uint32_t B; |
| 294 | uint32_t T; |
| 295 | uint32_t C; |
| 296 | uint32_t NH; |
| 297 | }; |
| 298 | unsigned long b = static_cast<unsigned long>(B); |
| 299 | unsigned long t = static_cast<unsigned long>(T); |
| 300 | unsigned long c = static_cast<unsigned long>(C); |
nothing calls this directly
no outgoing calls
no test coverage detected