| 306 | } |
| 307 | |
| 308 | port::StatusOr<int> GetCudnnProperty(libraryPropertyType type) { |
| 309 | int value; |
| 310 | RETURN_IF_CUDNN_ERROR(cudnnGetProperty(type, &value)); |
| 311 | return value; |
| 312 | } |
| 313 | |
| 314 | cudnnRNNAlgo_t ToCudnnRNNAlgo(absl::optional<dnn::AlgorithmDesc> algorithm) { |
| 315 | if (!algorithm.has_value()) { |
no outgoing calls
no test coverage detected