using System.Runtime.InteropServices; namespace LLama.Native { public static partial class NativeApi { /// /// Returns 0 on success /// /// /// /// /// not great API - very likely to change /// Returns 0 on success [DllImport(libraryName, CallingConvention = CallingConvention.Cdecl)] public static extern unsafe int llama_model_quantize(string fname_inp, string fname_out, LLamaModelQuantizeParams* param); } }