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