* @brief Determines if a given tensor buffer type is compatible with strided data. * * @param kind The tensor buffer type to check. * @return true if the buffer type is compatible with strided data, false otherwise. */
| 160 | * @return true if the buffer type is compatible with strided data, false otherwise. |
| 161 | */ |
| 162 | static bool IsCompatibleKind(NVCVTensorBufferType kind) |
| 163 | { |
| 164 | return kind == NVCV_TENSOR_BUFFER_STRIDED_CUDA; |
| 165 | } |
| 166 | |
| 167 | protected: |
| 168 | using TensorData::TensorData; |
nothing calls this directly
no outgoing calls
no test coverage detected