| 34 | CppCPU::~CppCPU(){}; |
| 35 | |
| 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); |
no outgoing calls
no test coverage detected