Skip to content

Commit

Permalink
Merge branch 'openvinotoolkit:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
geeky33 authored Jan 29, 2025
2 parents d43474a + 6fea70a commit 97f779b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/merge_queue_stub.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
on:
merge_group:

permissions: read-all

jobs:
merge_group_stub_check:
name: ci/jenkins
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--extra-index-url https://download.pytorch.org/whl/cpu
torch>=1.13
torchvision; platform_machine == 'arm64' and python_version >= '3.9'
torchvision; platform_machine != 'arm64'
networkx<=3.2.1; python_version <= '3.9'
torch<=2.5.1; python_version <= '3.9'
torch>=1.13; python_version > '3.9'
torchvision<=0.20.1; python_version <= '3.9'
torchvision; python_version > '3.9'
pillow>=9.0
4 changes: 2 additions & 2 deletions src/plugins/intel_cpu/src/nodes/kernels/x64/mlp_kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ void MKernel::run(int M, // actual M
}

void MatrixDynQuantPerRow::quantize(size_t BM, ov::bfloat16* psrc, int src_stride) {
assert(BM <= M);
assert(static_cast<int64_t>(BM) <= M);
parallel_nt_static(0, [&](const size_t ithr, const size_t nthr) {
size_t start{0}, end{0};
splitter(BM, nthr, ithr, start, end);
Expand All @@ -521,7 +521,7 @@ void MatrixDynQuantPerRow::quantize(size_t BM, ov::bfloat16* psrc, int src_strid
}

void MatrixDynQuantPerRow::quantize(size_t BM, ov::float16* psrc, int src_stride) {
assert(BM <= M);
assert(static_cast<int64_t>(BM) <= M);
parallel_nt_static(0, [&](const size_t ithr, const size_t nthr) {
size_t start{0}, end{0};
splitter(BM, nthr, ithr, start, end);
Expand Down
2 changes: 1 addition & 1 deletion tests/constraints.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy>=1.16.6,<2.3.0
attrs==25.1.0
distro==1.9.0
h5py>=3.1.0,<3.12.0
h5py>=3.1.0,<3.13.0
Jinja2>=2.11.2
pandas>=1.3.5
pymongo>=3.12.0
Expand Down

0 comments on commit 97f779b

Please sign in to comment.