| 212 | /// out[i]=(in[i]>=x)?1.f:0.f |
| 213 | template <typename DType, typename Lang> |
| 214 | void GE(const Tensor &in, const DType x, Tensor *out, Context *ctx) { |
| 215 | LOG_FATAL("GE", DType, Lang); |
| 216 | } |
| 217 | /// out[i]=(in1[i]>=in2[i])?1.f:0.f |
| 218 | template <typename DType, typename Lang> |
| 219 | void GE(const Tensor &in1, const Tensor &in2, Tensor *out, Context *ctx) { |
nothing calls this directly
no outgoing calls
no test coverage detected