| 342 | } |
| 343 | |
| 344 | std::thread ILSVRC::AsyncDecodeTransform(int flag, int thid, int nthreads, |
| 345 | vector<string *> images, Tensor *x, |
| 346 | Tensor *y) { |
| 347 | return std::thread( |
| 348 | [=]() { DecodeTransform(flag, thid, nthreads, images, x, y); }); |
| 349 | } |
| 350 | |
| 351 | void ILSVRC::DecodeTransform(int flag, int thid, int nthreads, |
| 352 | vector<string *> images, Tensor *x, Tensor *y) { |
nothing calls this directly
no outgoing calls
no test coverage detected