| 268 | } |
| 269 | |
| 270 | TensorArgument::TensorValueIterator::TensorValueIterator( |
| 271 | TensorArgument const *argument_ |
| 272 | ): |
| 273 | KernelArgument::ValueIterator(argument_) { |
| 274 | |
| 275 | if (argument_) { |
| 276 | value_it = argument_->values.begin(); |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | void TensorArgument::TensorValueIterator::operator++() { |
| 281 | if (this->null_argument) { |