| 483 | const ArgVec& outputs() const override { return base_ctx_.outputs(); } |
| 484 | |
| 485 | ep::Stream* stream() override { return stream_; } |
| 486 | user_op::Tensor* Tensor4ArgNameAndIndex(const std::string& arg_name, int32_t arg_index) override { |
| 487 | auto it = arg2tensor_.find(std::make_pair(arg_name, arg_index)); |
| 488 | CHECK(it != arg2tensor_.end()) << "Arg (" << arg_name << "," << arg_index << ") is not found"; |
no outgoing calls
no test coverage detected