minor : std::unordered_set over std::set

This commit is contained in:
Georgi Gerganov
2026-01-12 13:35:25 +02:00
parent cb5e0f8734
commit 08b5d956fc

View File

@@ -11,8 +11,8 @@
#include <memory>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
#include <set>
struct llama_cparams;
struct llama_ubatch;
@@ -477,7 +477,7 @@ struct llama_model {
std::vector<std::pair<std::string, struct ggml_tensor *>> tensors_by_name;
// for keeping track of associated LoRA adapters
std::set<llama_adapter_lora *> loras;
std::unordered_set<llama_adapter_lora *> loras;
int64_t t_load_us = 0;
int64_t t_start_us = 0;