| 135 | /// if in[i]>high, then out[i]=high; if in[i]<low, then out[i]=low. |
| 136 | template <typename DType, typename Lang> |
| 137 | void Clamp(const DType low, const DType high, const Tensor &in, Tensor *out, |
| 138 | Context *ctx) { |
| 139 | LOG_FATAL("Clamp", DType, Lang); |
| 140 | } |
| 141 | |
| 142 | /// out[i] = x / in[i] |
| 143 | template <typename DType, typename Lang> |
nothing calls this directly
no outgoing calls
no test coverage detected