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/bindings/c/docs/api_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ This struct represents OpenVINO entity and allows you to manipulate with plugins
- `device_name` - Name of a device to load a model to.
- `property_args_size` - How many properties args will be passed, each property contains 2 args: key and value.
- `compiled_model` - A pointer to the newly created compiled_model.
- `...` - property paramater, optional pack of pairs: <char* property_key, char* property_value> relevant only for this load operation operation.
- `...` - property parameter, optional pack of pairs: <char* property_key, char* property_value> relevant only for this load operation operation.

- Return value: Status code of the operation: OK(0) for success.

Expand Down
2 changes: 1 addition & 1 deletion src/bindings/c/include/openvino/c/ov_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ ov_core_read_model_from_memory_buffer(const ov_core_t* core,
* @param device_name Name of a device to load a model to.
* @param property_args_size How many properties args will be passed, each property contains 2 args: key and value.
* @param compiled_model A pointer to the newly created compiled_model.
* @param ... property paramater: Optional pack of pairs: <char* property_key, char* property_value> relevant only
* @param ... property parameter: Optional pack of pairs: <char* property_key, char* property_value> relevant only
* for this load operation operation. Supported property key please see ov_property.h.
* @return Status code of the operation: OK(0) for success.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/bindings/python/src/pyopenvino/graph/node_output.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,6 @@ void regclass_graph_Output(py::module m, std::string typestring)
ov::Output<VT>::get_rt_info,
py::return_value_policy::reference_internal);

// define functions avaliable only for specific type
// define functions available only for specific type
def_type_dependent_functions<VT>(output);
}
2 changes: 1 addition & 1 deletion src/common/snippets/tests/src/lir_comparator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ LIRComparator::Result LIRComparator::compare_handlers(const SpecificIterationHan
if (pass->get_type_info() != pass_ref->get_type_info() || pass->merge(pass_ref) == nullptr) {
return Result::error("Passes are not equal: " + std::string(pass->get_type_name()) + " and " +
std::string(pass_ref->get_type_name()) +
". Pass names or parameters are not matched, or merge method is not overrided.");
". Pass names or parameters are not matched, or merge method is not overridden.");
}
}
return Result::ok();
Expand Down
2 changes: 1 addition & 1 deletion src/core/include/openvino/op/op.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
_OPENVINO_RTTI_OP_WITH_TYPE)(__VA_ARGS__)) \
/* Add accessibility for Op to the method: evaluate from the Base class \
Usually C++ allows to use virtual methods of Base class from Derived class but if they have \
the same name and not all of them are overrided in Derived class, the only overrided methods \
the same name and not all of them are overridden in Derived class, the only overridden methods \
will be available from Derived class. We need to explicitly cast Derived to Base class to \
have an access to remaining methods or use this using. */ \
using ov::op::Op::evaluate; \
Expand Down
2 changes: 1 addition & 1 deletion src/core/shape_inference/include/element_visitor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ bool is_type_list_not_empty(Args&&... args) {
* OpenVINO conditional compilation feature.
*
* @param region Region name for ITT which will be combined with TYPE_LIST_ prefix.
* @param types List ov::element IfTypeOf class e.g. OV_PP_ET_LIST(f16, i8) to pack as one paramater.
* @param types List ov::element IfTypeOf class e.g. OV_PP_ET_LIST(f16, i8) to pack as one parameter.
* @param visitor Class name of visitor which will be used by IfTypeOf<types>::visit(_VA_ARGS_) function.
* @param ... List of parameters must match parameter list of `visit` function.
*
Expand Down
2 changes: 1 addition & 1 deletion src/core/tests/type_prop/transpose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ TEST(type_prop, transpose_order_as_parameter_shape) {
EXPECT_EQ(r->get_output_partial_shape(v1::Transpose::ARG_T), PartialShape({Dimension(4, 16), 6, Dimension(2, 8)}));
}

/** \brief Transpose with order as paramater shape dimensions after multiple transformations. */
/** \brief Transpose with order as parameter shape dimensions after multiple transformations. */
TEST(type_prop, transpose_order_as_parameter_shape_after_transformation) {
const auto arg = make_shared<v0::Parameter>(element::f32, PartialShape{Dimension(2, 8), Dimension(4, 16), 6});

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/subgraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class Subgraph : public Node {

std::shared_ptr<SubgraphAttrs> subgraph_attrs;

// Index of Paramater -> Index of broadcastable dimension from end
// Index of Parameter -> Index of broadcastable dimension from end
std::map<size_t, size_t> broadcastable_inputs;

size_t input_num = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/tensoriterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ struct PortMap {
int stride; /**< Stride to iterate throught */
int start; /**< Start index of iteration range */
int end; /**< Last index of iteration range */
int part_size; /**< Part size which will be transfered to body subnetwork */
int part_size; /**< Part size which will be transferred to body subnetwork */
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ TEST_F(OpCacheUnitTest, update_cache_by_model) {
ASSERT_EQ(meta.get_model_info().begin()->second.model_paths.size(), 2);
ASSERT_EQ(*meta.get_model_info().begin()->second.model_paths.begin(), test_model_path_1);
ASSERT_EQ(*meta.get_model_info().begin()->second.model_paths.rbegin(), test_model_path);
// check occurence
// check occurrence
ASSERT_EQ(meta.get_model_info().begin()->second.this_op_cnt, 2);
ASSERT_EQ(meta.get_model_info().begin()->second.total_op_cnt, 3);
// max opset version for Convert - 1
Expand All @@ -141,7 +141,7 @@ TEST_F(OpCacheUnitTest, update_cache_by_model) {
ASSERT_EQ(meta.get_model_info().begin()->first, test_model_name);
ASSERT_EQ(meta.get_model_info().begin()->second.model_paths.size(), 1);
ASSERT_EQ(*meta.get_model_info().begin()->second.model_paths.begin(), test_model_path_1);
// check occurence
// check occurrence
ASSERT_EQ(meta.get_model_info().begin()->second.this_op_cnt, 1);
ASSERT_EQ(meta.get_model_info().begin()->second.total_op_cnt, 2);
// max opset version for ShapeOf - 3
Expand Down
Loading