* fix ss
* successfully converted
* successfully run moved infer and normalizer unit-tests
* successfully rewritten StridedSlice infer unittests
* int64 array
* Successfully converter crash-when-loading, xj_feauture and toy nets (cherry-picked maxpoolV4 and tf_broadcast_ext)
* successfully moved PermuteAttrs to general mechanism
* successfully converted xj_feauture and crash when loading with the new rewritten SS infer
* fixed get_shape_from_slice and moved to common utils
* fixed extending masks and some other
* some refactoring
* fixed extending masks in extractor, fixed licence year and some other code clearing
* corrected a couple of unittests
* fox permute for 5 rank slice and 4 rank inputs/
* WIP
* Added comments
* fixed StridedSlice in ProposalMutation.py
* rechecked shape_infer unittests added some new cases
* added shape_infer unit-tests after StridedSliceNormalizer pass and Permute unit-tests
* corrected unittests
* Applied review comments
* general permutations for inputs implemented, corrected ellipsis unrolling when shrink_axis is at the beginning, some other corrections
* removed code duplication in infer and normalizer, moved 'slices' attr normalizing to StridedSliceNormalizer.py
* removed some code duplication and other minor improvements
* Added tests
* minor corrections
* wider range of unittests added (froze the number)
* review comments applied
* enabled skipped unit-test
* comment corrections
* applied review comments: changed op -> type, added some asserts, corrected comments and other minor corrections
* sorted inputs, updated Supported_Frameworks_Layers.md, some minor
* Refactoring FunctionsComparator - extract node comparison part
* try to fix logic and CentOS bulids
* Add negative test for precision
* Use fixed ngraph::descriptor::Tensor type instead template type
* reorganize ngraph_test_utils.cpp
* Cleanup after merge master into branch
Co-authored-by: Patryk Elszkowski <patryk.elszkowki@intel.com>
* Reformulated, intermediate. No positive indices.
* Indices >= 0, depth > 0.
* Added the Types section and a more complicated example.
* Behavior for negative indices is undefined
* Wrap T1 & T2 with *
* Revert mkl-dnn to cae1e0b83
* T1: int32 or int64 only
* Remove linking libonnx from unit-test
* Consider all flavors of protobuf libraries
* Avoid passing on NOTFOUND properties
* Set system deps for mac
* Revert include dirs set up
* fix comparison of constant with short float NAN values
* adjust precision, remove elvises
* more templates
* add ir serialization test with float16 const
* remove unused prototxt
* Removed legacy IE shape infer
* Removed GenericIE operation
* Removed legacy shape infer tests
* Removed legacy test with legacy IE reshape
* Fixed compilation issues related to removal of GenericIE
* Fixed one more compilation issue with clDNN
* Fixed test for reading experimental ops
* Updated tests and make IR Reader to load old experimenal and extension ops as opset6
* Change opset of some ops only if they are currently experimental/extension to avoid situation like opset1::Proposal -> opset6::Proposal
* Removed more legacy code
* Returned back code removed by mistake
* Fixed issues related to incorrect merge with master
* Merge fixes
* Fixed unit tests which starts to fail because now loading the model with unknown operation is failed earlier
* Removed incorrectly added code
Co-authored-by: Evgeny Lazarev <elazarev.nnov@gmail.com>
* DPC++ link error workaround.
OpenVINO C++ program failed to link when DPC++ compiler is used.
'make_shared_blob' causes 'unresolved external symbol' error on linking.
Commented out some __clang__ specific directives to workaround the issue in "ie_blob.h".
* DPC++ compatibility issue fix#2
1. Removed type-by-type template class definition for __clang__.
2. Modified TBlob() destructor. The 'unresolved reference' error occur again if I left 'virtual ~TBlob();' only. It seems it needs to be 'virtual ~TBlob() {};'.
* DPC++ compatibility fix#3 - Add DPC++ conditional code
Uses '__SYCL_COMPILER_VERSION' predefined macro to check if the compiler is a DPC++ or not.
Added conditional directive to switch code based of the detected compiler.
NOTE: User program must include <CL/sycl.hpp>, or the '__SYCL_COMPILER_VERSION' macro won't be defined and this fix won't take effect.
* DPC++ compatibility issue fix#4
Changed from #ifdef to #if + logical formulas.
* DPC++ compatibility issue fix#5
Added compiler check logic in src/ie_rtti.cpp
* DPC++ Compatibility issue #6 - ie_parameter.cpp
Added compiler check macro for DPC++ to ie_parameter.cpp as well.
Co-authored-by: Yasunori Shimura <yasunori.shimura@intel.com>
* Added result rename operation
* Optimize imports
* Added ResultRename to package_BOM
* ResultRename moved to the end of back phase, code refactoring
* Revert incorrect changes
* Optimize imports
* Added comments and optimized imports.
This issue relates to multi-device mode.
While we are trying to allocate a graph on one of the devices we should check memory capacity only for the corresponding device, not for the last opened as far devices may have different memory capacity or the latest opened device may have still not sent its attributes (including memory capacity)
* Updated install_NEO_OCL_driver.sh & install_openvino_dependencies.sh with rhel8 case
* install_NEO_OCL_driver: Fixed conditional
* script: Updated with actual revisions
* XmlDeserializer relay on parameter/result (input/output) index which is reported during inserting to function
Xml parameter/result order is irrelevant now.
* drop stack usage - just single class member
* try to fix CentOS build
* fix after review
* Drop std::map to custom structure
* reorder layers in TI in test IR which failed on current master
Co-authored-by: Patryk Elszkowski <patryk.elszkowki@intel.com>
* fixed: StrideSlice/Crop was broken when crop axis != dim.size() - 1 & added support for tensor dim > 2
fixed: clamp had hard coded upper & lower boundary to -50/50
fixed: InsertIdentityLayerPass was adding not necessary identities that was leading to exception when 2 identities was added to convolution output
fixed: SubstituteScaleShiftBroadCastPass caused invalid input tensor dimension overwrite - instead of overwrite currently reshape is injected
* updated copyright header dates
* updated copyright date
* fixed braces not at the end of line
* fixed braces in if else sequence
* shortened line length
* fixed issues reported in review
* fixed test - model in test assumed clamped range <-5,5> however code had hard coded value <-50,50>, which test assumed as correct result
* fixed smoke_MemoryEltwiseReshapeConcatTest/MemoryEltwiseReshapeConcatTest
* [GNA] Added test for crop 4d
Co-authored-by: Andrey Dmitriev <andrey.dmitriev@intel.com>
* Implements test for CTCGreedyDecoderSeqLen layer in Myriad plugin.
* Changes the way CTCSeqLen operation is generated. Moved random generation of SeqLen input from makeCTC function to the test. Made test to clamp test's parameters to be in valid range.