Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/dino_backbone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ bool DinoBackbone::build_feats_graph(ggml_context* ctx, const std::vector<float>
const std::vector<int32_t>& outL = c.out_layers;
const size_t NL = outL.size();

ggml_tensor* nw = ml_.tensor("vit.norm.weight");
ggml_tensor* nb = ml_.tensor("vit.norm.bias");
ggml_tensor* nw = ml_.host_tensor("vit.norm.weight");
ggml_tensor* nb = ml_.host_tensor("vit.norm.bias");
if (be_.is_offloading()) {
// vit.norm.* are kept as host gguf tensors (no backend buffer) for the
// host-side layernorm used by other paths. Here they feed an IN-GRAPH
Expand Down