Irina Efode
dc710d6090
[IE TESTS] Move main.cpp to shared lib from plugin functional tests ( #3157 )
2020-11-17 10:11:17 +03:00
Mikhail Treskin
809c504d0a
Summary report generator for layer and subgraph tests ( #2707 )
...
* Initial summary dumper implementation
* Handle Tensoriterator body + add parser script
* Add support of XML reports merging + report OP names with versions
* Remove debug device name change
* Fix windows building issue
* Add --disable_test_skips command line option
* Gtest failure with logging
* Change skipping logic and resolve linkage errors caused by extern
* Get graph body from Loop
* Fix disable_tests_skipping symbol redefinition
* Fix inline for currentTestIsDisabled
* Rollback get_body for Loop
* Handle cases with skip in test SetUp
* Report Loop and TI ops along with ops in subgraph body
* Resolve some PR comments
* Dummy commit to kick pre-commit validation
Co-authored-by: Efode, Irina <irina.efode@intel.com>
2020-11-12 12:33:23 +03:00
Roman Lyamin
6b09d5769f
[IE CLDNN] Added LogSoftmax-5 operation ( #2945 )
2020-11-11 08:53:30 +03:00
Liubov Batanina
0a71ada75e
[IE TESTS] Replaced size_t with int64_t ( #2699 )
...
* Replaced size_t with int64_t
* Fix gpu plugin
2020-11-10 11:35:24 +03:00
Vladimir Paramuzov
6e7db6fb37
[IE CLDNN] Plugin-side kernels caching ( #2871 )
2020-11-05 23:44:45 +03:00
Jozef Daniecki
5d7f83f399
Fix testcase CheckExecGraphInfoSerialization ( #2973 )
...
* Generate unique output file names in CheckExecGraphInfoSerialization testcase.
When multiple instances of this test were executed in parallel the same
file was accessed by multiple threads which was the cause of flakiness.
* Enable ExecGraphTests.CheckExecGraphInfoSerialization on GPU
2020-11-05 07:16:24 +03:00
Rafik Saliev
d225ba6e53
[IE] Add batched blob support ( #2203 )
...
* [IE] Add batched blob support
New `class BatchedBlob : public CompoundBlob` defined to allow to pass multiple blobs as 1 InferRequest input.
Motivation: There is the special user case when a number of plain images (e.g. `NV12Blob`) should be passed as one input for network which batch size > 1.
`class CompoundBlob` is not applicable for such cases due to:
1. `NV12Blob` is `CompoundBlob` which prevents to combine multiple NV12 images to a CompoundBlob
2. The default behavior in most of plugins - do not accept generic CompoundBlob as `SetBlob()` argument
Adding `SetBlob(name, vector<Blob::Ptr>...)` to `class IInferRequest`, `class InferRequest`, `class IInferRequestInternal`, ... - is not effective solution due to limited and specific use cases for `batched inputs`.
+ Apply rule-of-zero to CompoundBlob and inherited classes.
* Add "BATCHED_BLOB" optimization capability metric
* Add BatchedBlob usage to hello_nv12_input_classification
* Apply offline code review outcome:
1. Revert CompoundBlob public .ctors signatures
2. Remove 'workaround' .ctor for `BatchedBlob`
3. Revert tensor descriptors of `I420Blob` `NV12Blob` back to the 'fake' value.
* Code review fix
* Add functional tests for CPU, GPU, MULTI, HETERO
* update doc comment
* Apply code review change requests.
2020-11-03 21:19:26 +03:00
Irina Efode
a66c728a46
[IE TESTS] Fix reg exp for issue 42029 ( #2957 )
2020-11-03 18:12:24 +03:00
Aleksandr Korolev
5ffa2cd5e3
[IE TESTS] Split Layer Test refactoring ( #2915 )
...
Co-authored-by: kora6 <kora6@github.com>
2020-11-02 16:29:59 +03:00
Andrey Babushkin
4acd117c8d
Temporarily skip ExecGraphTests.CheckExecGraphInfoSerialization on GPU ( #2921 )
...
* Skip ExecGraphTests.CheckExecGraphInfoSerialization on GPU
* [execution_graph_tests] Add test skipping macro
* Add missing import
2020-11-01 12:55:50 +03:00
Edward Shogulin
997cc1e863
[LPT] nGraph nodes naming fix ( #2822 )
...
* [LPT] functional tests: FakeQuantize with dynamic intervals
* [LPT] decomposeFakeQuantize: removed debug info
* [LPT] Add NetworkHelper::mark_as_dequantization_op function
[ngraph] Fix compare runtime info function
[LPT] Fix test cases with no DEQUANTIZATION runtime attribute
[LPT] Change include path for dequantization op
* [LPT] Remove Subtract functional test, enable and rename legacy tests
Co-authored-by: Vladislav Golubev <vladislav.golubev@intel.com>
Co-authored-by: Aleksandr Pertovsky <aleksandr.pertovsky@intel.com>
2020-10-30 23:23:35 +03:00
Bartosz Sochacki
9b4f499930
Extended test infrastructure to call per plugin configure function before running a test. The function allows to pass plugin specific configuration ( #2731 )
2020-10-28 14:57:46 +03:00
Roman Lyamin
77365bcb4c
[IE CLDNN] Added Round-5 operation ( #2838 )
2020-10-27 10:56:15 +03:00
Vladimir Paramuzov
980bbd172a
[IE CLDNN] Enabled more functional tests and added several fixes into ops implementations ( #2763 )
2020-10-24 23:38:13 +03:00
Edward Shogulin
c2271da637
Es/lpt/lpt to ngraph fixes2 with master ( #2671 )
...
* [LPT] Replace creation of dequantization with factory
* [ngraph][LPT] Add ScaleShift replace for dequantization operations
* [LPT] SubtractMultiplyToMultiplyAdd refactoring
* [LPT] Code style fix
* [LPT] Edit SubtractMultiplyToMultiplyAdd transformation for dequantization
* [LPT] Linux compilation quick fix
* [LPT] [WIP] runtime info applying
* [LPT] Concat transformation functional tests extending
* [LPT] MultiplyToConvolution + Subtract to add fusing + improvements in LowPrecisionTransformer
* [LPT] linux compilation error fix
* [LPT] compilation error
* [LPT] MultiplyToGroupConvolution fix: 5D support
* [LPT] Multiply transformation extending: FQ weights support - wip
* [LPT] FQ folding & precision selection
* [LPT] code style fixes
* [LPT] code style fixes
* [LPT] Linux compilation error fix
* [LPT] SubtractMultiplyToMultiplyAdd: refactoring
* [LPT] Tests fixes
* [LPT] MultiplyToGroupConvolution tests
* [LPT] Convert subtract with int inputs to Eltwise sub
* [LPT] Constant folding fix for quant models
* [LPT] 1) Asymmetric quantization improvement 2) tests extending
* [LPT] 2 fixes for se_resnext_50
* [LPT] Add transformation priority branch selection test
* [LPT] AddMultiplyFusion: legacy transformation quick fix
* [LPT] nGraph tests temporary disabling
* [LPT] Fix for eltwise inputs with multiple outputs
* [LPT] Fix for FQ fuse
* [LPT] Reshape by channel, batch temporary disabled
* [nGraph][LPT] MatMul fix for reading FP16 models
* [LPT] 1) Add (not after Convolution/GroupConvolution/MatMul with Constant) to Subtract 2) precision selection fix: MultiplyToGroupConvolution quick fix
* [LPT] DenseNet improvments: AddTransformation: Add to Subtract + tests
* [LPT] AddTransformarion refactoring
* [LPT] AddTransformation tests temporay disabled
* [LPT] ReshapeTransformation improvements: degradation fix
* [LPT] code style fix
* [LPT] Concat tests temporary disabling
* [LPT] tests unification
1) plugin tests: added test-cases and nGraph-validation for clamp, split and variadic split
2) func tests: added test-cases
3) transformNGraph: added the ability to run additional transformations
* [LPT] split & variadic split merge fix
* [LPT] Clamp: added support for asymmetric quantization
* [LPT] added DequantizationAttr run-time attribute
* [LPT] debug info removal
* [LPT] ConcatTransformation: zero point fix
* [LPT] CNNNetwork ReLU transformation quick fix
* [LPT]
1) Concat fix
2) ConcatMultiChannels fix
3) Added "Concat with Split" test-cases
4) Subgraph fix
* [LPT]
1) Concat fix
2) Added "Concat with different precision on childs" test-case
* [LPT] concat fix Ubuntu18
* [LPT] Concat test fixes
* [LPT] Not fp32 FQ input support
* [LPT] MatMul Fix + separateInStandaloneBranch Fix
* [LPT] Fix reference input types in mish fusion tests
* [LPT] Fix cpuFuncTests on CentOS building
* [nGraph][LPT] ScaleShift 2d, 3d nGraph conversion enabling
* [LPT] 1) FullyConnected workaround removing 2) validate_nodes_and_infer_types for LPT
* [ngraph] Add check for childs for ConvertSubtract
* [LPT] Squeeze/Unsqueeze tests unification
* [LPT] Squeeze/Unsqueeze change signature for getReference/getOriginal
* [LPT] Mul & Add -> ScaleShift quick fix
* [LPT] nGraph tests emporary disabling
* [LPT] code style fix
* [LPT] code style fix #2
* [LPT] nGraph tests temporary disabling
* [LPT] code styl fix #3
* [LPT] shared plugin tests temporary disabling
* [LPT] cleanup
* [LPT] nGraph unit_tests tests temproary disabling
* [LPT] nGraph unit tests disabling #2
* [LPT] nGraph tests disabling
* [LPT] nGraph tests temporary disabling
* [LPT] WA removing
* [LPT] CentOS compilation fix
* [LPT] KMB wa to avoid compilation error
* [LPT] functional test temporary disabling
* [nGraph] code style fixes
* [LPT] ConcatTransformation: data movement operation as intermediate handling
* [LPT] FuseSubtractToFakeQuantize after VariadicSplit
* [LPT] ConcatWithSplitTransformation functional test temporary disabling
* [LPT] Clamp and ConcatWithDifferentPrecisionsOnChilds: tests fix
* [LPT] MatMul: bert-nv-mlperf-quantized fix
* [LPT] Add to convolution biases fuse fix
* [LPT] GPU plugin tests fixes
* [LPT] Normalize GPU plugin tests fix
* [LPT] test-commit
* [LPT] CLDNN Plugin FP16 conversion
* [LPT] AvgPool update precision if there is not FQ after + convolution
precision limitation on activation
* [LPT] Convolution fixes
* [LPT] FuseSubtractToFakequantize & FuseMultiplyToFakeQuantize improvement
* [LPT] FuseSubtractToFakeQuantize test fix
* [LPT] FuseSubtractToFakeQuantizeTransformation tests
* [LPT] code style fix
* [LPT] AvgPool child recursive extend
* [LPT] AvgPool tests + fix
* [LPT] compilation quick fix
* [LPT] Add to convolution biases fuse fix
* [LPT] Linux issues: MatMulWithOptimizedConstantFakeQuantizeTransformation temporary disabled
* [LPT] Normalize GPU plugin tests fix
* [LPT] test-commit
* [LPT]
1) added the ability to create sub without dequantizationAttribute
2) fixed optimizeMulAfter: added copying rt_info
3) Tests Unification: Convolution transformation
4) added cleanRunTimeInfo into Network Helper
* [LPT] Tests Unification: GroupConvolution
* [LPT] removed debug info
* [LPT] functional tests for Convolution & GroupConvolution extending
* [LPT] [MatMul] Quick fix ubuntu error
* [LPT] MatMulTransformation quick test fix: one constant for both intervals
* [nGraph] code style fix
* [LPT] added output_precision to NormalizeIE
* [nGraph] NormalizeIE fix for LPT support
* [LPT] nGraph WA removal
* [LPT] fixed fillSubgraph for concat multi channels
* [LPT] MatMul fix
* [nGraph] WA removal: 1) nGraph tests enabling 2) LPT extanding: not handle in FP32
* [LPT] nGraph WA removal: function tests skip config rollback
* [LPT] WA removal: precision propagation fix
* [LPT] ConvertMulOrAddFinally transformation extending
* [nGraph] ConvolutionMultiplyFusion rollback (move from legacy to common)
* [nGraph] ConvertMulAddToScaleShiftOrPower: WA removal
* [nGraph] TypeRelaxed: WA removal
* [nGraph] WA removal: TypeRelaxed
* [LPT] WA removal: ConcatTransformation
* [nGraph] WA removal: Eltwise & ConvertMulOrAddFinally fixes to support LPT
* [nGraph] MulAddConversion fix: 2D & 3D ScaleShift are supproted
* [nGraph] VisualizeTree extending
* [LPT] FakeQuantizeDequantization extending: check element wise dequantization operation
* [LPT] FakeQuantizeDequantization extending: SubtractMultiplyToMultiplyAddTransformation & WeightableLayerTransformation
* [LPT] Convolution + test infrastructure update
* [LPT] GPU compilation error
* [nGraph] BatchNorm plugin tests: input tensor definition
* [LPT] LowPrecisionTransformer::isFunctionQuantized was added
* [nGraph] WA final cleanup
* [nGraph] ScaleShiftIE quick fix
* [LPT] Functional tests: added test-cases "Concat with intermediate with constant"
* [LPT] Transformer::isNetworkquantized fix
* [LPT] SubtractMultiplyToMultiplyAdd zero Add remove: fix for ssd300 on gpu
* [LPT] MultiplyToGroupConvolution not transform on Const
* [LPT] workaround for negative scales
* [LPT] Convert standalone dequantization Mul,Sub,Add to ScaleShift
* [LPT] SubtractMultiplyToMultiplyAdd test fix
* [LPT] Clamp transformation: GPU tests fix
* [LPT] Transformer tests
* [LPT] FakeQuantizePrecisionSelectionTransformation was disabled for GPU
* [LPT] TransformerIsFunctionQuantized refactoring
* [nGraph] code style fix
* [LPT] mobilenet_v2_tf_depthwise test update
* [LPT] TMP: dequantization folding
* [LPT] Elementwise transformation fix: dequantization operations constant folding
* [LPT] cleanup
* [LPT] denormal values fix
* [LPT] FuseFakeQuantize test fixed + negative multiply case
* [LPT] FP32 -> FP16 conversion info
* [LPT] FQ dot interval support + swapMultiplyAdd safely division
* [LPT] test fix
* [LPT] Tests for dot interval on FQ + tests for addTransformation enabling
* [LPT] Clamp transformation fix
* [LPT] FQ prec selection test fix
* [LPT] Clamp test case
* [LPT] Concat division precision fix
* [LPT] cleanup
* [LPT] merge fix
* [LPT] WIP: MatMul asymmetric quantization fix (BERT)
* [LPT] MatMulWithOptimizedConstantFakeQuantizeTransformation disabled
* [LPT] GPU Plugin set config fix
* [LPT] Fix merge mistakes
* [LPT] Rollback device specific INT8
* [LPT] ReshapeFullyConnected fix: FullyConnected output fix
* [LPT] bert-base-chinese GPU fix
* [ngraph/LPT] Tests for fix convert_mul_or_add_finally with dequantization
[ngraph/LPT] Fix convert mul_or_add_finally with dequantization
* [LPT] ScaleShift dim < 4 only dequantization conversion
* [LPT] MatMul transformation tests extensing
* [LPT] ReshapeFullyConnected legacy transformation: LPT test case addition
* [nGraph] VisualizeTree extending: property names displying to simplify search
* [LPT] getDequantization extending
* [LPT] MulAddToScaleshiftOrPower: out precision fix & tests
* [LPT] Multiply to ScaleShiftIE: Multiply transformation: remove DEQUANTIZATION if not valid
* [LPT] Concat test case
* [nGraph] try to fix opencv compatibility
* [nGraph] nGraph code style fix
* [LPT] InPlace dequantization folding
* [LPT] Multiply constant folding test
* [LPT] Fix plugin test case for MatMulWithOptimizedConstantFakeQuantize
[LPT] Enable MatMulWithOptimizedConstantFakeQuantize plugin test
* [LPT] Convolution transformation: mulConst shape fix
* [LPT] INT8 Constant folding branch for elementwise ops optimization removal
* [LPT] eltwise for const branch fix
* [LPT] linux fix
* [LPT] Multiply test refactoring
* [LPT] Convert Fuse in Constant + tests
* [LPT] function comparation: runtime info comparation rollback
* [LPT] linux build fix
* [LPT] linux build fix2
* [LPT] MatMul transformation limitation was added to be similar as CNNNetwork LPT
* [LPT] Reshape transformation update: don't broadcast by batch
* [LPT] MatMul transformation limitation was added to be similar as CNNNetwork LPT - refactoring
* [LPT] MatMul transformation: transpose input tensors fix
* [LPT] checkElementwise for AddTransformation WA: should be moved to getDequantization
* [LPT] merge fix
* [LPT] MatMul fix & tests
* [LPT] AddTransformation tests
* [LPT] Interpolate transformation enabled
* [LPT] constant folding before LPT
* [LPT] WIP: not completed tests
* [LPT] GPU degradation fix
* [LPT] FuseConvert workaround
* [LPT] code cleanup
* [LPT] Interpolate GPU test quick fix
* [LPT] GroupConvolution fix
* [LPT] Fix fusing multiply for non-dequantization layers
* [LPT] GPU pipeline update: enableInt8 initialization place update
* [LPT] tests compilation fix
* [LPT] merge fix
* [LPT] tests enabling
* [LPT] merge issue resolving
* [LPT] LPT CNNNetwork usage macros: part #1 : source code
* [LPT] LPT CNNNetwork usage macros: part #2 : cmake files update and tests addoption
* [LPT] LPT workaround from nGraph core removing
* [LPT] previous LPT version tests
* [LPT] inference_engine_lp_transformations was returned back
* [LPT] replace_node rollback
* [LPT] ConvertSubtract fix
* [LPT] GPU: baselineIsFP16 reuse fix
* [LPT] FakeQuantizeTransformation: GPU workaround: I32 -> FP32 Convert is not fused
* [LPT] AvgPool output precision workaround
* [LPT] Group convolution precision + Subtract to ScaleShift const fix
* [LPT] SubMulToMulAdd & Transpose: action-recognition-0001 fix
* [LPT] Transpose: added test with per-tensor quantization
Co-authored-by: Aleksandr Pertovsky <aleksandr.pertovsky@intel.com>
Co-authored-by: Zinoviev, Vladimir <vladimir.zinoviev@intel.com>
Co-authored-by: Vladislav Golubev <vladislav.golubev@intel.com>
Co-authored-by: Gorokhov Dmitriy <dmitry.gorokhov@intel.com>
2020-10-23 13:22:55 +03:00
Ilya Churaev
e364271cf6
Constant->Result networks ( #2639 )
...
* Added tests
* Changed iterator algorithm
* Fixed legacy tests
* Added plugin tests
* Disabled some tests
* Remover parameter tests
* Fixed conversion
* Use old approach for old tests
* Temp commit
* Fixed iterator
* Fixed some tests
* Change logic to compare iterators
* Disabled CPU functional test
* Temp commit
* Disabled test for GPU
* Fixed network copy
* Try to fix test for Windows
* Disabled test for GNA
* Disable plugin tests
* Disable legacy test
* Remove redundant code
2020-10-22 13:22:38 +03:00
Mateusz Tabaka
5965010bec
Revise LRN reference implementation ( #2672 )
...
* fix typo in LRN docs
* fix link to reference in LRN doc
* LRN, LRN_IE types alignment with spec
* align LRN ref implementation to plugins behavior
* update LRN docs
* Improve LRN reference implementation performance
* restore LRN constructor with no axes in the input
* apply code format
* revert double->float size_t->int change
* small fix to example in doc
* revert double->float size_t->int in onnx_importer and backend tests
* Changes to docs after review
2020-10-19 08:40:04 +03:00
Roman Lyamin
cc569d2254
[IE CLDNN] Added HSigmoid operation ( #2700 )
2020-10-18 20:47:22 +03:00
Kamil Magierski
95d7c29628
[GNA] Fix remove layer + identity layer insertion ( #2626 )
...
* [GNA] Fix remove layer + identity layer insertion
test stub
Test impl
style
hpp style
* disable FP16 for GPU
2020-10-16 13:23:32 +03:00
Vladimir Paramuzov
49e760381e
[IE CLDNN] Fixes for GatherTree and ReverseSequence ( #2660 )
2020-10-15 10:28:00 +03:00
Gleb Kazantaev
94eacc6544
Move legacy transformations and ops to legacy library ( #2624 )
...
* Initial movement
* Divided transformations to common and legacy
* Changed ngraph visibility to ie_api.h
* CommonTransformaitons to Internal
* New trasnformations location structure
* fixde typo; move convert_quantize_dequantize to common
* Added control_flow folder
2020-10-14 10:58:01 +03:00
Irina Efode
e79a44c02e
[IE TESTS] Remove some deprecated single layer tests ( #2646 )
...
* [IE TESTS] Remove some deprecated single layer tests
* Gather Tree
2020-10-14 00:58:28 +03:00
Alexander Perepelkin
a1b8a11000
Allow to specify both in/out precision, add in/out layout in tests ( #2516 )
...
* test definitions
* CPU plugin shared tests
* CPU plugin custom tests
* GNA plugin shared tests
* GPU plugin shared tests
* MYR plugin shared tests
* TML plugin shared tests
2020-10-11 11:05:55 +03:00
Kamil Magierski
8abdc32676
[GNA] Fix LSTM Cell channel C being 0 on output ( #1174 )
...
* [GNA] get output before activation test
[GNA] SubstituteScaleShiftBroadCastPass fix for cases when there are multiple scaleshifts as an output from the layer
[GNA] Generalize Fix where LSTMCell output was zero due to being fused into activation
[GNA] Fix LSTMCell being zero on channel C if being output layer
* linux build fix
2020-10-06 10:59:03 +03:00
Irina Efode
229ca5e17b
[IE Tests] Added test filters for gpuFuncTests target ( #2496 )
2020-10-02 12:13:23 +03:00
Egor Churaev
a05333217c
Support operation Interpolate-4 in OpenVINO ( #1596 )
...
JIRA: 26973
2020-10-01 11:41:51 +03:00
Andrew Bakalin
03d184726a
[IE][VPU]: Supports I32 for some eltwise precisions + tests ( #2364 )
2020-09-25 18:29:34 +03:00
Alexander Perepelkin
c13ec24e1e
Specify in and out precisions separately, add layouts for convolution ( #2211 )
...
* Specify in and out precisions separately, add layouts for convolution
* Align convolution layer tests instantiations with updated definition
* Align convolution layer tests instantiations with updated definition for template plugin
* net, in, out prcs
Co-authored-by: Mikhail Treskin <mikhail.treskin@intel.com>
2020-09-21 13:03:01 +03:00
Ivan Tikhonov
379158fc11
Move PriorBox to PriorBoxIE transformation from CommonOptimization pass ( #2185 )
...
* move PriorBox to PriorBoxIE transformation from CommonOptimization pass
* call initNodeInfo transformation before PriorToPriorIE
* update comments
2020-09-17 11:45:45 +03:00
Irina Efode
12abb2eb49
[IE TESTS] CoreThreading_LoadNetwork tests were disabled for GPU plugin ( #2245 )
2020-09-16 16:46:02 +03:00
Gorokhov Dmitriy
83e96891ca
Revert "[IE TESTS] dynavic batch for mvn layer ( #1010 )" ( #2257 )
...
This reverts commit 2e3378c50f .
2020-09-16 14:11:48 +03:00
Anna Alberska
3ecee2ce49
[GNA] fix scale factor calculation for unfused bias after fc ( #2097 )
...
* [GNA] fix scale factor calculation for unfused bias after fc
* change check
* add test
* apply requested changes
* cpplint fix
* apply test changes
* modify model for test to match ::op::
2020-09-15 16:04:06 +03:00
Edward Shogulin
ac2370b420
[LPT] Copy constant with several outputs before blob update (cherry-pick to master) ( #2198 )
...
* [LPT] Copy constant implementation
* [LPT] the same Constant ops as FQ interval boundaries
2020-09-15 09:18:58 +03:00
Nikita Kudriavtsev
ef2581d5c6
[IE Myriad][IE Tests] Activation layer's constants parametrization. ( #2071 )
...
CI passed: https://gitlab-icv.inn.intel.com/inference-engine/product-configs/merge_requests/870
2020-09-10 12:56:21 +03:00
Edward Shogulin
dc8bbd930f
[LPT] Multiinput with one parent and FQ with three Constant ( #2066 )
...
* [LPT] FakeQuantize with three constants
* [LPT] Dequantization ops on thw inputs with one parent
2020-09-07 20:31:45 +03:00
Kamil Magierski
9df59284bc
[GNA] Fix Activation output size not matching convolution if padded. ( #1980 )
...
* Fix Activation output size not matching convolution if padded.
* Fix input padding handling in Convolution
* fix static bug
* Use correct value for feature rotation.
* [GNA] Fix regression
* Added tests
* Added tests
2020-09-04 13:23:00 +03:00
Mikołaj Życzyński
e3178122ee
[IE CLDNN] Reduce b_fs_yx_fsv16 optimized kernel ( #1690 )
2020-09-02 09:35:30 +03:00
Lukasz Debski
b85de7f67a
[IE CLDNN] Loosen restrictions on channels in 3d fsv16 convolution kernel ( #1744 )
2020-09-01 15:17:03 +03:00
Vladimir Paramuzov
ae8be58701
[IE CLDNN] Mixed mode support for proposal primitive ( #1857 )
2020-08-27 11:43:24 +03:00
Anton Chetverikov
84c7b048db
SoftPlus operation implementation ( #1365 )
2020-08-25 19:36:39 +03:00
Edward Shogulin
ee96595d1d
[LPT] BLOCKED layout ignoring ( #1873 )
...
* [LPT] BLOCKED layout ignoring
* [LPT] Permute transformation tests
* [LPT] Tests rework
2020-08-25 10:43:33 +03:00
Ivan Tikhonov
cb72684388
Partial revert a commit with reference implementations of PriorBox(Clustered) ops ( #1878 )
...
* partial revert a commit with reference implementations of PriorBox(Clustered), disable references for this ops
* ngraph codestyle
* disable const folding unit tests for PriorBox(Clustered)
* fix arm build
* fix unit test
* Revert "fix unit test"
This reverts commit 1fe59e55d6 .
2020-08-24 14:31:32 +03:00
Roman Lyamin
3a9e160031
[IE TESTS] Added single layer tests HSwish ( #1861 )
2020-08-20 13:32:16 +03:00
Mikhail Letavin
7c9815b4c1
[IE CLDNN] Export runtime graph as nGraph function ( #1684 )
2020-08-17 16:27:33 +03:00
Ilya Churaev
d8133824b3
Deprecate FusedOp class ( #1758 )
...
* Deprecate FusedOps
* Try to fix windows
* Added temp headers
2020-08-14 06:27:58 +03:00
Ilya Lavrenov
e2e2785131
Moved legacy API to legacy/ subfolder for include ( #1677 )
2020-08-10 18:33:25 +03:00
Maxim Andronov
21c4312453
[CPU] Add check to reduce for scalar dims ( #1577 )
2020-08-06 14:44:29 +03:00
Mikhail Letavin
fcb93b161d
[IE CLDNN] Implement nGraph function support in QueryNetwork() ( #1601 )
2020-08-05 18:26:14 +03:00
Ilya Churaev
d791d295aa
Use clone_function instead of specialize_function ( #1523 )
...
* Try to use clone_function instead of specialize_function
* Try to fix stress tests
* Remove redundant specialize_function
* Fixed TI clone
* Removed redundant code
* Uncomment threading tests
* Fixed docs
* copy function friendly name too
* Fixed copy rt_info
* Fixed comments
2020-08-03 18:23:02 +03:00
Roman Lyamin
15f91be168
[IE CLDNN] Added fsv16 and int8 support in BatchToSpace and SpaceToBatch ( #1381 )
2020-08-03 15:04:49 +03:00