ggml_add_cast method
Pointer<ggml_tensor>
ggml_add_cast(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - Pointer<
ggml_tensor> b, - int type,
Implementation
ffi.Pointer<ggml_tensor> ggml_add_cast(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
ffi.Pointer<ggml_tensor> b,
int type,
) {
return _ggml_add_cast(
ctx,
a,
b,
type,
);
}