You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for being interested in this issue. It looks like this ticket is already assigned to a contributor. Please communicate with the assigned contributor to confirm the status of the issue.
OpenVINO Version
Master Branch
Operating System
Ubuntu 20.04 (LTS)
Device used for inference
CPU
Framework
None
Model used
TinyLlama-1.1B-Chat-v1.0
Issue description
In file
openvino/src/plugins/intel_cpu/src/nodes/llm_mlp.cpp
, and in classLinearKsplit2
, there are 3 suspicious bugs in two member functions:setup
,when
m_threads_num
is 1, the next line would cause division 0 exception.Possible fixing:
setup
,when
m_threads_num
is 1,works[ithr + ik]
would cause memory access out of bounds.Possible fixing:
run
,when
ithr
is 0,peer_ithr
is 1, also causingworks[peer_thr]
access out of bounds whennthr
is 1.Possible fixing:
Step-by-step reproduction
No response
Relevant log output
Issue submission checklist
The text was updated successfully, but these errors were encountered: