| 59 | |
| 60 | template <typename T, typename Context> |
| 61 | void Full(const Context& dev_ctx, |
| 62 | const IntArray& shape, |
| 63 | const Scalar& val, |
| 64 | DenseTensor* out) { |
| 65 | if (!out) return; |
| 66 | FullKernel<T, Context>( |
| 67 | dev_ctx, shape, val, CppTypeToDataType<T>::Type(), out); |
| 68 | } |
| 69 | |
| 70 | template <typename T, typename Context> |
| 71 | void Full(const Context& dev_ctx, |
nothing calls this directly
no test coverage detected