| 202 | /// out[i]=(in[i]<x)?1.f:0.f |
| 203 | template <typename DType, typename Lang> |
| 204 | void LT(const Tensor &in, const DType x, Tensor *out, Context *ctx) { |
| 205 | LOG_FATAL("LT", DType, Lang); |
| 206 | } |
| 207 | /// out[i]=(in1[i]<in2[i])?1.f:0.f |
| 208 | template <typename DType, typename Lang> |
| 209 | void LT(const Tensor &in1, const Tensor &in2, Tensor *out, Context *ctx) { |
nothing calls this directly
no outgoing calls
no test coverage detected