| 430 | float* dlosses, float* probs, int* targets, |
| 431 | int B, int T, int V, int Vp){ |
| 432 | struct CrossEntropySoftmaxBackwardParams { |
| 433 | uint32_t B; |
| 434 | uint32_t T; |
| 435 | uint32_t V; |
| 436 | uint32_t VP; |
| 437 | }; |
| 438 | unsigned long b = static_cast<unsigned long>(B); |
| 439 | unsigned long t = static_cast<unsigned long>(T); |
| 440 | unsigned long v = static_cast<unsigned long>(V); |
nothing calls this directly
no outgoing calls
no test coverage detected