| 28 | // errors that would arise from running either benchmark in a loop. |
| 29 | class DummyRendezvous : public Rendezvous { |
| 30 | Status Send(const ParsedKey& key, const Args& args, const Tensor& val, |
| 31 | const bool is_dead) override { |
| 32 | return Status::OK(); |
| 33 | } |
| 34 | void RecvAsync(const ParsedKey& key, const Args& args, |
| 35 | DoneCallback done) override { |
| 36 | static Tensor* t = new Tensor(DT_FLOAT, TensorShape({0})); |
no outgoing calls
no test coverage detected