public static NDArray Empty(Shape shape, DType dtype) { return(new NDArray((float[])System.Array.CreateInstance(dtype, (int[])shape))); }
public static bool IsNone(DType dtype) { // In our implementation DType is struct and never becomes null. return(false); }
public static DType DType(DType type) { return(type); }