| 236 | float* inp, |
| 237 | int B, int T, int C, int NH){ |
| 238 | struct AttentionParams { |
| 239 | uint32_t B; |
| 240 | uint32_t T; |
| 241 | uint32_t C; |
| 242 | uint32_t NH; |
| 243 | }; |
| 244 | unsigned long b = static_cast<unsigned long>(B); |
| 245 | unsigned long t = static_cast<unsigned long>(T); |
| 246 | unsigned long c = static_cast<unsigned long>(C); |
nothing calls this directly
no outgoing calls
no test coverage detected