| 406 | |
| 407 | template <typename T, typename U, typename = typename std::enable_if<std::is_integral<T>::value>::type> |
| 408 | void validate_wrap(const IAccessor &tensor, const SimpleTensor<T> &reference, U tolerance_value, float tolerance_number) |
| 409 | { |
| 410 | // Validate with valid region covering the entire shape |
| 411 | validate_wrap(tensor, reference, shape_to_valid_region(reference.shape()), tolerance_value, tolerance_number); |
| 412 | } |
| 413 | |
| 414 | template <typename T, typename U> |
| 415 | void validate(const IAccessor &tensor, |
no test coverage detected