| 237 | |
| 238 | template <> |
| 239 | void Abs<float, lang::Cpp>(const Tensor &in, Tensor *out, Context *ctx) { |
| 240 | traverse_unary<float>(in, out, [](float x) { return fabs(x); }); |
| 241 | } |
| 242 | |
| 243 | template <> |
| 244 | void Erf<float, lang::Cpp>(const Tensor &in, Tensor *out, Context *ctx) { |
nothing calls this directly
no test coverage detected