| 118 | }; |
| 119 | |
| 120 | static struct export_lora_params get_default_export_lora_params() { |
| 121 | struct export_lora_params result; |
| 122 | result.fn_model_base = ""; |
| 123 | result.fn_model_out = ""; |
| 124 | result.n_threads = GGML_DEFAULT_N_THREADS; |
| 125 | return result; |
| 126 | } |
| 127 | |
| 128 | static void export_lora_print_usage(int /*argc*/, char ** argv, const struct export_lora_params * params) { |
| 129 | fprintf(stderr, "usage: %s [options]\n", argv[0]); |
no outgoing calls
no test coverage detected