Skip to content

Commit dbb257c

Browse files
committed
rm redundant data member
1 parent cd5dc6b commit dbb257c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

examples/llava/mtmd.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,15 @@ struct mtmd_context {
2020
bool print_timings;
2121
int n_threads;
2222
std::string image_marker;
23-
bool calc_image_hash;
2423

2524
// TODO @ngxson : add timings
2625

2726
mtmd_context(const char * mmproj_fname,
2827
const llama_model * text_model,
2928
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)
29+
print_timings(ctx_params.print_timings),
30+
n_threads (ctx_params.n_threads),
31+
image_marker (ctx_params.image_marker)
3332
{
3433
clip_context_params ctx_clip_params;
3534
ctx_clip_params.use_gpu = ctx_params.use_gpu;

0 commit comments

Comments
 (0)