We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd5dc6b commit dbb257cCopy full SHA for dbb257c
examples/llava/mtmd.cpp
@@ -20,16 +20,15 @@ struct mtmd_context {
20
bool print_timings;
21
int n_threads;
22
std::string image_marker;
23
- bool calc_image_hash;
24
25
// TODO @ngxson : add timings
26
27
mtmd_context(const char * mmproj_fname,
28
const llama_model * text_model,
29
const mtmd_context_params & ctx_params) :
30
- print_timings (ctx_params.print_timings),
31
- n_threads (ctx_params.n_threads),
32
- image_marker (ctx_params.image_marker)
+ print_timings(ctx_params.print_timings),
+ n_threads (ctx_params.n_threads),
+ image_marker (ctx_params.image_marker)
33
{
34
clip_context_params ctx_clip_params;
35
ctx_clip_params.use_gpu = ctx_params.use_gpu;
0 commit comments