| 233 | }; |
| 234 | |
| 235 | TEST_F(CWiseUnaryGradTest, Abs) { |
| 236 | auto x_fn = [this](const int i) { return RV({-1, 0, 1}); }; |
| 237 | TestCWiseGrad<float, float>(ABS, x_fn); |
| 238 | } |
| 239 | |
| 240 | TEST_F(CWiseUnaryGradTest, Neg) { |
| 241 | auto x_fn = [this](const int i) { return RV({-1, 0, 1}); }; |
nothing calls this directly
no test coverage detected