Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ coverage
/tools/commit_slider/*.json
/tools/commit_slider/slider_cache/*
/src/plugins/intel_cpu/thirdparty/ComputeLibrary/build/arm_compute_version.embed
.github/GITHUB_OUTPUT
.github/GITHUB_OUTPUT
2 changes: 1 addition & 1 deletion src/bindings/python/thirdparty/pybind11
Submodule pybind11 updated 142 files
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,22 @@ const std::vector<ExecutorImplementation<ConvAttrs>>& getImplementations() {
AcceptsAnyShape<ConvAttrs>,
CreateDnnlDefault<DnnlConvolutionPrimitive, ConvAttrs>{}
)
OV_CPU_INSTANCE_RISCV64(
"convolution_dnnl_ncsp_ncsp", ExecutorType::Dnnl, OperationType::Convolution,
// supports
[](const ConvConfig& config, const MemoryFormatFilter& memoryFormatFilter) -> bool {
VERIFY(!isQuantized(config), UNSUPPORTED_SRC_PRECISIONS);
Comment on lines +279 to +283
VERIFY(!hasPostOp<DepthwiseConvolutionPostOp>(config.attrs.postOps), UNSUPPORTED_POST_OPS);
return MatchesMemoryFormatFilter(config.descs,
LayoutConfig{LayoutType::ncsp, LayoutType::ncsp, LayoutType::ncsp, LayoutType::ncsp},
memoryFormatFilter,
dnnlConvolutionMappingNotation);
},
// createOptimalConfig
CreateOptimalConfigDefault{{LayoutType::ncsp, LayoutType::ncsp, LayoutType::ncsp, LayoutType::ncsp}},
AcceptsAnyShape<ConvAttrs>,
CreateDnnlDefault<DnnlConvolutionPrimitive, ConvAttrs>{}
Comment on lines +291 to +293
)
OV_CPU_INSTANCE_RISCV64(
"convolution_dnnl_ref_ncsp", ExecutorType::Dnnl, OperationType::Convolution,
// supports
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/thirdparty/ComputeLibrary
Submodule ComputeLibrary updated 206 files
2 changes: 1 addition & 1 deletion src/plugins/intel_gpu/thirdparty/onednn_gpu
2 changes: 1 addition & 1 deletion src/plugins/intel_npu/thirdparty/level-zero-ext
Submodule level-zero-ext updated 1 files
+1 −5 ze_graph_ext.h
2 changes: 1 addition & 1 deletion thirdparty/gtest/gtest
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please, get rid of all dependency updates, except onednn (CPU only)

Submodule gtest updated 295 files
Loading