[DOCS] link fix (#17658)

This commit is contained in:
Maciej Smyk
2023-05-23 07:31:19 +02:00
committed by GitHub
parent 7351859ec2
commit 4e8d5f3798
13 changed files with 18 additions and 18 deletions

View File

@@ -14,7 +14,7 @@ namespace pass {
* @brief Decompose MVN operation
* See official OpenVINO documentation for the MVN formula
* implemented partially by this decomposition:
* https://docs.openvino.ai/latest/openvino_docs_ops_normalization_MVN_6.html
* https://docs.openvino.ai/2023.0/openvino_docs_ops_normalization_MVN_6.html
*
*/
class DecomposeMVN : public ngraph::pass::MatcherPass {

View File

@@ -135,7 +135,7 @@ static void CreateConstantOp(Program& p, const std::shared_ptr<ngraph::op::v0::C
// [N] --> [1, N, 1, 1]
//
// 2. Multi-dims slope tensor is handled by the numpy broadcasting rule that is defined at
// 'https://docs.openvino.ai/latest/openvino_docs_ops_broadcast_rules.html'.
// 'https://docs.openvino.ai/2023.0/openvino_docs_ops_broadcast_rules.html'.
// ex) [N, 1, 1] --> [1, N, 1, 1]
// [N, M, 1] --> [1, N, M, 1]
auto input_shape = outOp->get_input_partial_shape(0);