| 242 | /// out[i] = pow(in[i], x) |
| 243 | template <typename DType, typename Lang> |
| 244 | void Pow(const Tensor &in, const DType x, Tensor *out, Context *ctx) { |
| 245 | LOG_FATAL("Pow", DType, Lang); |
| 246 | } |
| 247 | |
| 248 | /// out[i]=pow(in1[i], in2[i]) |
| 249 | template <typename DType, typename Lang> |