\brief Set the storage location of a tensor \param location the location of tensor data Only network input tensors for storing sequence lengths for RNNv2 are supported. Using host storage for layers that do not support it will generate errors at build time. \see getLocation()
| 354 | //! \see getLocation() |
| 355 | //! |
| 356 | void setLocation(TensorLocation location) noexcept |
| 357 | { |
| 358 | mImpl->setLocation(location); |
| 359 | } |
| 360 | |
| 361 | //! |
| 362 | //! \brief Query whether dynamic range is set. |