ggml_reshape_1d method
return view(a) TODO: when we start computing gradient, make a copy instead of view
Implementation
ffi.Pointer<ggml_tensor> ggml_reshape_1d(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
int ne0,
) {
return _ggml_reshape_1d(
ctx,
a,
ne0,
);
}