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