| 67 | } |
| 68 | |
| 69 | void ClSoftmax::run(ITensorPack &tensors) |
| 70 | { |
| 71 | CLAuxTensorHandler tmp(offset_int_vec(InternalTensorIdx::TMP), _tmp_info, tensors); |
| 72 | |
| 73 | tensors.add_tensor(TensorType::ACL_INT_0, tmp.get()); |
| 74 | |
| 75 | CLScheduler::get().enqueue_op(*_kernel, tensors, false); |
| 76 | } |
| 77 | |
| 78 | experimental::MemoryRequirements ClSoftmax::workspace() const |
| 79 | { |
nothing calls this directly
no test coverage detected