Skip to content

Commit

Permalink
fixing type, suppored -> supported (openvinotoolkit#20639)
Browse files Browse the repository at this point in the history
  • Loading branch information
karanjakhar authored Oct 22, 2023
1 parent 94a6360 commit 5dafee4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/frontends/pytorch/src/op/bitwise.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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};
};
Expand All @@ -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};
};
Expand Down
2 changes: 1 addition & 1 deletion src/inference/dev_api/ie_icore.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ class ICore : public ov::ICore {
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
Expand Down
2 changes: 1 addition & 1 deletion src/inference/dev_api/openvino/runtime/icore.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ class OPENVINO_RUNTIME_API ICore {
}

/**
* @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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5dafee4

Please sign in to comment.