mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 16:44:13 +01:00
19 lines
410 B
C
19 lines
410 B
C
|
#pragma once
|
||
|
|
||
|
#include "ggml.h"
|
||
|
|
||
|
#include <fstream>
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
|
||
|
enum ggml_ftype ggml_parse_ftype(const char * str);
|
||
|
|
||
|
void ggml_print_ftypes(FILE * fp = stderr);
|
||
|
|
||
|
bool ggml_common_quantize_0(
|
||
|
std::ifstream & finp,
|
||
|
std::ofstream & fout,
|
||
|
const ggml_ftype ftype,
|
||
|
const std::vector<std::string> & to_quant,
|
||
|
const std::vector<std::string> & to_skip);
|