ggml_new_tensor_3d method
Implementation
ffi.Pointer<ggml_tensor> ggml_new_tensor_3d(
ffi.Pointer<ggml_context> ctx,
int type,
int ne0,
int ne1,
int ne2,
) {
return _ggml_new_tensor_3d(
ctx,
type,
ne0,
ne1,
ne2,
);
}