| 36 | void CppCPU::SetRandSeed(unsigned seed) { ctx_.random_generator.seed(seed); } |
| 37 | |
| 38 | void CppCPU::DoExec(function<void(Context*)>&& fn, int executor) { |
| 39 | CHECK_EQ(executor, 0); |
| 40 | fn(&ctx_); |
| 41 | } |
| 42 | |
| 43 | void CppCPU::TimeProfilingDoExec(function<void(Context*)>&& fn, int executor, |
| 44 | Node* node) { |
no test coverage detected