| 269 | } |
| 270 | |
| 271 | int main(int argc, char **argv) { |
| 272 | Context ctx = createContext(); |
| 273 | |
| 274 | testTensorPool(ctx); |
| 275 | testResidual(ctx); |
| 276 | testHadamard(ctx); |
| 277 | testMatmul(ctx); |
| 278 | testGelu(ctx); |
| 279 | testLayerNorm(ctx); |
| 280 | testSoftmax(ctx); |
| 281 | |
| 282 | LOG(kDefLog, kInfo, "Done with all tests"); |
| 283 | } |
nothing calls this directly
no test coverage detected