mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 13:30:35 +00:00
imatrix : remove invalid assert (#6632)
This commit is contained in:
parent
dee7f8d692
commit
ef21ce4ccb
@ -107,9 +107,7 @@ bool IMatrixCollector::collect_imatrix(struct ggml_tensor * t, bool ask, void *
|
|||||||
|
|
||||||
// the top-k selected expert ids are stored in the ids tensor
|
// the top-k selected expert ids are stored in the ids tensor
|
||||||
// for simplicity, always copy ids to host, because it is small
|
// for simplicity, always copy ids to host, because it is small
|
||||||
// take into account that ids is not contiguous!
|
|
||||||
GGML_ASSERT(ids->ne[1] == src1->ne[1]);
|
GGML_ASSERT(ids->ne[1] == src1->ne[1]);
|
||||||
GGML_ASSERT(n_as*ggml_nrows(ids)*sizeof(int) == GGML_PAD(ggml_nbytes(ids), n_as*sizeof(int)));
|
|
||||||
m_ids.resize(ggml_nbytes(ids)/sizeof(int));
|
m_ids.resize(ggml_nbytes(ids)/sizeof(int));
|
||||||
ggml_backend_tensor_get(ids, m_ids.data(), 0, ggml_nbytes(ids));
|
ggml_backend_tensor_get(ids, m_ids.data(), 0, ggml_nbytes(ids));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user