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 src/plugins/intel_cpu/src/nodes/common/cpu_convert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ struct ConvertPrecision<std::tuple<src_t, dst_t>> {
// (nan, inf, overflow) has already been assured by the conversion process.
if (ov::intel_cpu::any_of_v<src_t, ov::float8_e4m3, ov::float8_e5m2> ||
ov::intel_cpu::any_of_v<dst_t, ov::float8_e4m3, ov::float8_e5m2> ||
(std::is_integral_v<src_t> && std::is_integral_v<dst_t>)) {
(std::is_integral_v<src_t> && std::is_integral_v<dst_t> && ctx.dstPrc != ov::element::boolean)) {
parallel_for(ctx.size, [&](size_t i) {
dst[i] = static_cast<dst_t>(src[i]);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,6 @@ std::vector<std::string> disabledTestPatterns() {
retVector.emplace_back(R"(.*proposal_params/.*)");
// Quantized models unsupported
retVector.emplace_back(R"(.*Quantized.*)");
// 176707: Accuracy issues
retVector.emplace_back(R"(.*smoke_IsOp/ComparisonLayerTest.*)");

if (!ov::intel_cpu::riscv64::mayiuse(ov::intel_cpu::riscv64::gv)) {
// Integer division is supported only by JIT Executor which is available on platforms with GV instruction sets.
Expand Down
Loading