Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed links to images #2569

Merged
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
3 changes: 0 additions & 3 deletions docs/IE_PLUGIN_DG/images/graph_rewrite_efficient_search.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/IE_PLUGIN_DG/images/graph_rewrite_execution.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/IE_PLUGIN_DG/images/register_new_node.png

This file was deleted.

3 changes: 0 additions & 3 deletions docs/IE_PLUGIN_DG/images/transformations_structure.png

This file was deleted.

16 changes: 8 additions & 8 deletions docs/nGraph_DG/nGraphTransformation.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,13 +253,13 @@ To eliminate operation, nGraph has special method that considers all limitations

When developing a transformation, you need to follow these transformation rules:

### Operation Set (OpSet)
###1. Operation Set (OpSet)

Use the latest version of OpSet in your transformation. An exception is ConvertOpSetXToOpSetY transformations, where you must use operations from OpSetX and OpSetY.

@snippet example_ngraph_utils.cpp ngraph:include

### Dynamic Shape and Rank
###2. Dynamic Shape and Rank

nGraph has two types for shape representation:
`ngraph::Shape` - represents static shape.
Expand Down Expand Up @@ -435,9 +435,9 @@ The basic transformation test looks like this:
@snippet tests/functional/transformations/template_transformations_test.cpp transformation:test


[ngraph_replace_node]: ../images/ngraph_replace_node.png
[ngraph_insert_node]: ../images/ngraph_insert_node.png
[transformations_structure]: ../images/transformations_structure.png
[register_new_node]: ../images/register_new_node.png
[graph_rewrite_execution]: ../images/graph_rewrite_execution.png
[graph_rewrite_efficient_search]: ../images/graph_rewrite_efficient_search.png
[ngraph_replace_node]: ./img/ngraph_replace_node.png
[ngraph_insert_node]: ./img/ngraph_insert_node.png
[transformations_structure]: ./img/transformations_structure.png
[register_new_node]: ./img/register_new_node.png
[graph_rewrite_execution]: ./img/graph_rewrite_execution.png
[graph_rewrite_efficient_search]: ./img/graph_rewrite_efficient_search.png