| 161 | } |
| 162 | |
| 163 | TEST(AnisotropicDiffusion, GradientInvalidInputArray) { |
| 164 | try { |
| 165 | array out = anisotropicDiffusion(randu(100), 0.125f, 0.2f, 10, |
| 166 | AF_FLUX_QUADRATIC); |
| 167 | } catch (exception &exp) { ASSERT_EQ(AF_ERR_SIZE, exp.err()); } |
| 168 | } |
| 169 | |
| 170 | TYPED_TEST(AnisotropicDiffusion, CurvatureGrayscale) { |
| 171 | UNSUPPORTED_BACKEND(AF_BACKEND_ONEAPI); |
nothing calls this directly
no test coverage detected