ggml_tri method
Pointer<ggml_tensor>
ggml_tri(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - ggml_tri_type type
Implementation
ffi.Pointer<ggml_tensor> ggml_tri(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
ggml_tri_type type,
) {
return _ggml_tri(
ctx,
a,
type.value,
);
}