llama : fix uninitialized tensors
This commit is contained in:
parent
92711138f9
commit
7528c705b0
1 changed files with 2 additions and 2 deletions
|
@ -2112,8 +2112,8 @@ struct llama_model {
|
||||||
struct ggml_tensor * output_b;
|
struct ggml_tensor * output_b;
|
||||||
|
|
||||||
// long rope factors
|
// long rope factors
|
||||||
struct ggml_tensor * rope_long;
|
struct ggml_tensor * rope_long = nullptr;
|
||||||
struct ggml_tensor * rope_short;
|
struct ggml_tensor * rope_short = nullptr;
|
||||||
|
|
||||||
std::vector<llama_layer> layers;
|
std::vector<llama_layer> layers;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue