ggml_new_tensor_3d function
Implementation
ffi.Pointer<ggml_tensor> ggml_new_tensor_3d(
ffi.Pointer<ggml_context> ctx,
ggml_type type,
int ne0,
int ne1,
int ne2,
) => _ggml_new_tensor_3d(
ctx,
type.value,
ne0,
ne1,
ne2,
);
ffi.Pointer<ggml_tensor> ggml_new_tensor_3d(
ffi.Pointer<ggml_context> ctx,
ggml_type type,
int ne0,
int ne1,
int ne2,
) => _ggml_new_tensor_3d(
ctx,
type.value,
ne0,
ne1,
ne2,
);