| 218 | void testSoftmax(Context &ctx) { |
| 219 | |
| 220 | struct SoftmaxParam { |
| 221 | uint32_t N; |
| 222 | uint32_t C; |
| 223 | }; |
| 224 | static constexpr size_t B = 6; // batch size |
| 225 | static constexpr size_t T = 8; // token index |
| 226 | static constexpr size_t C = 3072; // input channels |
nothing calls this directly
no outgoing calls
no test coverage detected