Run an operator on a given input list * * @param[in,out] queue Queue to scheduler the operator on * * @param pack Tensor list to be used as input * * @return Status Code */
| 766 | * @return Status Code |
| 767 | */ |
| 768 | StatusCode run(Queue &queue, TensorPack &pack) |
| 769 | { |
| 770 | return detail::as_cenum<StatusCode>(AclRunOperator(_object.get(), queue.get(), pack.get())); |
| 771 | } |
| 772 | |
| 773 | protected: |
| 774 | /** Constructor */ |
nothing calls this directly
no test coverage detected