Skip to content
Merged
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/core/include/openvino/core/type/bfloat16.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class numeric_limits<ov::bfloat16> {
return ov::bfloat16::from_bits(0);
}
static constexpr bool is_iec559 = false;
static constexpr bool is_bounded = false;
static constexpr bool is_bounded = true;
static constexpr bool is_modulo = false;
static constexpr bool traps = false;
static constexpr bool tinyness_before = false;
Expand Down
2 changes: 1 addition & 1 deletion src/core/include/openvino/core/type/float16.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ class numeric_limits<ov::float16> {
return ov::float16::from_bits(0);
}
static constexpr bool is_iec559 = false;
static constexpr bool is_bounded = false;
static constexpr bool is_bounded = true;
static constexpr bool is_modulo = false;
static constexpr bool traps = false;
static constexpr bool tinyness_before = false;
Expand Down
2 changes: 1 addition & 1 deletion src/core/include/openvino/core/type/float4_e2m1.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class numeric_limits<ov::float4_e2m1> {
return ov::float4_e2m1::from_bits(0b0001); // minimum positive denormalized value
}
static constexpr bool is_iec559 = false;
static constexpr bool is_bounded = false;
static constexpr bool is_bounded = true;
static constexpr bool is_modulo = false;
static constexpr bool traps = false;
static constexpr bool tinyness_before = false;
Expand Down
2 changes: 1 addition & 1 deletion src/core/include/openvino/core/type/float8_e4m3.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class numeric_limits<ov::float8_e4m3> {
return ov::float8_e4m3::from_bits(0b00000001); // minimum positive denormalized value
}
static constexpr bool is_iec559 = false;
static constexpr bool is_bounded = false;
static constexpr bool is_bounded = true;
static constexpr bool is_modulo = false;
static constexpr bool traps = false;
static constexpr bool tinyness_before = false;
Expand Down
2 changes: 1 addition & 1 deletion src/core/include/openvino/core/type/float8_e5m2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class numeric_limits<ov::float8_e5m2> {
return ov::float8_e5m2::from_bits(0b00000001); // minimum positive denormalized value
}
static constexpr bool is_iec559 = false;
static constexpr bool is_bounded = false;
static constexpr bool is_bounded = true;
static constexpr bool is_modulo = false;
static constexpr bool traps = false;
static constexpr bool tinyness_before = false;
Expand Down
2 changes: 1 addition & 1 deletion src/core/include/openvino/core/type/float8_e8m0.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class numeric_limits<ov::float8_e8m0> {
return ov::float8_e8m0::from_bits(0); // no signaling NaN
}
static constexpr bool is_iec559 = false;
static constexpr bool is_bounded = false;
static constexpr bool is_bounded = true;
static constexpr bool is_modulo = false;
static constexpr bool traps = false;
static constexpr bool tinyness_before = false;
Expand Down
Loading