ggml_new_tensor method
Implementation
ffi.Pointer<ggml_tensor> ggml_new_tensor(
ffi.Pointer<ggml_context> ctx,
int type,
int n_dims,
ffi.Pointer<ffi.Int64> ne,
) {
return _ggml_new_tensor(
ctx,
type,
n_dims,
ne,
);
}
ffi.Pointer<ggml_tensor> ggml_new_tensor(
ffi.Pointer<ggml_context> ctx,
int type,
int n_dims,
ffi.Pointer<ffi.Int64> ne,
) {
return _ggml_new_tensor(
ctx,
type,
n_dims,
ne,
);
}