fixing type, suppored -> supported (#20639)

This commit is contained in:
Karan Jakhar 2023-10-22 18:55:59 +05:30 committed by GitHub
parent 94a63605d1
commit 5dafee4ac1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 7 deletions

View File

@ -17,7 +17,7 @@ OutputVector translate_bitwise_not(const NodeContext& context) {
num_inputs_check(context, 1, 2);
auto x = context.get_input(0);
FRONT_END_OP_CONVERSION_CHECK(x.get_element_type().compatible(element::boolean),
"aten::bitwise_not suppored only for boolean input");
"aten::bitwise_not supported only for boolean input");
auto not_x = context.mark_node(std::make_shared<ov::op::v1::LogicalNot>(x));
if (!context.input_is_none(1)) {
context.mutate_input(1, not_x);
@ -30,7 +30,7 @@ OutputVector translate_bitwise_and(const NodeContext& context) {
auto x = context.get_input(0);
auto y = context.get_input(1);
FRONT_END_OP_CONVERSION_CHECK(x.get_element_type().compatible(element::boolean),
"aten::bitwise_not suppored only for boolean input");
"aten::bitwise_not supported only for boolean input");
auto and_x = context.mark_node(std::make_shared<ov::op::v1::LogicalAnd>(x, y));
return {and_x};
};
@ -40,7 +40,7 @@ OutputVector translate_bitwise_or(const NodeContext& context) {
auto x = context.get_input(0);
auto y = context.get_input(1);
FRONT_END_OP_CONVERSION_CHECK(x.get_element_type().compatible(element::boolean),
"aten::bitwise_not suppored only for boolean input");
"aten::bitwise_not supported only for boolean input");
auto or_x = context.mark_node(std::make_shared<ov::op::v1::LogicalOr>(x, y));
return {or_x};
};

View File

@ -191,7 +191,7 @@ public:
virtual InferenceEngine::RemoteContext::Ptr CreateContext(const std::string& deviceName, const ov::AnyMap&) = 0;
/**
* @brief Get only configs that are suppored by device
* @brief Get only configs that are supported by device
* @param deviceName Name of a device
* @param config Map of configs that can contains configs that are not supported by device
* @return map of configs that are supported by device

View File

@ -222,7 +222,7 @@ public:
}
/**
* @brief Get only properties that are suppored by specified device
* @brief Get only properties that are supported by specified device
* @param full_device_name Name of a device (can be either virtual or hardware)
* @param properties Properties that can contains configs that are not supported by device
* @return map of properties that are supported by device

View File

@ -1214,7 +1214,7 @@ or column if there are N channels, or have N columns if there is a single channe
@param src Input set of 2D points stored in one of possible containers: Mat,
std::vector<cv::Point2i>, std::vector<cv::Point2f>, std::vector<cv::Point2d>.
@param distType Distance used by the M-estimator, see #DistanceTypes. @ref DIST_USER
and @ref DIST_C are not suppored.
and @ref DIST_C are not supported.
@param param Numerical parameter ( C ) for some types of distances. If it is 0, an optimal value
is chosen.
@param reps Sufficient accuracy for the radius (distance between the coordinate origin and the
@ -1286,7 +1286,7 @@ or column if there are N channels, or have N columns if there is a single channe
@param src Input set of 3D points stored in one of possible containers: Mat,
std::vector<cv::Point3i>, std::vector<cv::Point3f>, std::vector<cv::Point3d>.
@param distType Distance used by the M-estimator, see #DistanceTypes. @ref DIST_USER
and @ref DIST_C are not suppored.
and @ref DIST_C are not supported.
@param param Numerical parameter ( C ) for some types of distances. If it is 0, an optimal value
is chosen.
@param reps Sufficient accuracy for the radius (distance between the coordinate origin and the