| 351 | class ProxyTensor : public TensorIf<DerivedT> { |
| 352 | public: |
| 353 | ProxyTensor(const std::shared_ptr<Tensor>& tensor) : tensor_(tensor) { |
| 354 | if (tensor->is_lazy()) { CHECK_JUST(this->BorrowTensorName(tensor.get())); } |
| 355 | } |
| 356 | virtual ~ProxyTensor() = default; |
| 357 | |
| 358 | virtual std::shared_ptr<const Shape> shape() const override { return tensor_->shape(); } |
nothing calls this directly
no test coverage detected