| 73 | } |
| 74 | |
| 75 | void LogAndThrow(std::string eMsg) |
| 76 | { |
| 77 | ARMNN_LOG(error) << eMsg; |
| 78 | throw armnn::Exception(eMsg); |
| 79 | } |
| 80 | |
| 81 | /// Compute the root-mean-square error (RMSE) at a byte level between two tensors of the same size. |
| 82 | /// @param expected |
no test coverage detected