ggml_cont_1d method
make contiguous, with new shape
Implementation
ffi.Pointer<ggml_tensor> ggml_cont_1d(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
int ne0,
) {
return _ggml_cont_1d(
ctx,
a,
ne0,
);
}
make contiguous, with new shape
ffi.Pointer<ggml_tensor> ggml_cont_1d(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
int ne0,
) {
return _ggml_cont_1d(
ctx,
a,
ne0,
);
}