- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
I want to run OpenVino on my Ununtu desktop which has an older AMD CPU with NCS (v1). I followed the installation steps, but when running the samples, it crashes with this error message:
****************************************************************** * FATAL ERROR: * * This OpenCV build doesn't support current CPU/HW configuration * * * * Use OPENCV_DUMP_CONFIG=1 environment variable for details * ****************************************************************** Required baseline features: SSE - OK SSE2 - OK SSE3 - OK SSSE3 - NOT AVAILABLE SSE4.1 - NOT AVAILABLE POPCNT - OK SSE4.2 - NOT AVAILABLE terminate called after throwing an instance of 'cv::Exception' what(): OpenCV(4.0.1-openvino) /home/jenkins/workspace/OpenCV/OpenVINO/build/opencv/modules/core/src/system.cpp:538: error: (-215:Assertion failed) Missing support for required CPU baseline features. Check OpenCV build configuration and required CPU/HW setup. in function 'initialize'
Obviously, this is because the installed OpenCV has been built for Intel CPU instructions that my machine does not have.
How can I recompile OpenVino's OpenCV to not use these instructions?
Note: I actually already have OpenCV 4.0 installed on my computer, but OpenVino seems to use its own version (which, considering /home/jenkins/ does not exist, I'm guessing is installed in some docker image somewhere?)
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I figured it out: when installing openvino, customise the installation so that opencv is not installed and it will pick up on whatever version of opencv is already installed (just make sure you have 4.0 installed).
I can now run the classification demo, but the security example still fails. Not sure why, will update later on results.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Matt,
Good to hear it worked on an older non-SSE 4.1/4.2 CPU. Was the result / accuracy good?
Could you post perf counters if you use the -pc parameter of the classification sample?
> security example still fails
What is the error? Could you post the output?
cheers,
nikos
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I figured it most of it out; The problem was that I was trying to run the demo on the CPU. You have to specify the "-d MYRIAD" option. It now completes successfully.
However, is it possible to run the security example on an AMD CPU? (It would be really helpful if it compatable)
Here is the error log when I run the security demo on CPU:
################################################### Run Inference Engine security_barrier_camera demo Run ./security_barrier_camera_demo -d CPU -d_va CPU -d_lpr CPU -i /opt/intel/computer_vision_sdk/deployment_tools/demo/car_1.bmp -m /opt/intel//computer_vision_sdk_2018.5.445/deployment_tools/intel_models/vehicle-license-plate-detection-barrier-0106/FP32/vehicle-license-plate-detection-barrier-0106.xml -m_va /opt/intel//computer_vision_sdk_2018.5.445/deployment_tools/intel_models/vehicle-attributes-recognition-barrier-0039/FP32/vehicle-attributes-recognition-barrier-0039.xml -m_lpr /opt/intel//computer_vision_sdk_2018.5.445/deployment_tools/intel_models/license-plate-recognition-barrier-0001/FP32/license-plate-recognition-barrier-0001.xml [ INFO ] InferenceEngine: API version ............ 1.4 Build .................. 19154 [ INFO ] Parsing input parameters [ INFO ] Capturing video streams from the video files or loading images [ INFO ] Files were added: 1 [ INFO ] /opt/intel/computer_vision_sdk/deployment_tools/demo/car_1.bmp [ INFO ] Number of input image files: 1 [ INFO ] Number of input video files: 0 [ INFO ] Number of input channels: 1 [ INFO ] Loading plugin CPU API version ............ 1.5 Build .................. lnx_20181004 Description ....... MKLDNNPlugin [ INFO ] Loading network files for VehicleDetection [ INFO ] Batch size is forced to 1 [ INFO ] Checking Vehicle Detection inputs [ INFO ] Checking Vehicle Detection outputs [ INFO ] Loading Vehicle Detection model to the CPU plugin [ ERROR ] Supported primitive descriptors list is empty for node: MobilenetV2/expanded_conv_2/expand/Conv2D Error on or near line 154; exiting with status 1
nikos wrote:
Hi Matt,
Good to hear it worked on an older non-SSE 4.1/4.2 CPU. Was the result / accuracy good?
Could you post perf counters if you use the -pc parameter of the classification sample?
As requested, Nikos, here is the output of the classification example using -pc
./classification_sample -d CPU -i /opt/intel/computer_vision_sdk/deployment_tools/demo/car.png -m /home/matt/openvino_models/ir/FP32//classification/squeezenet/1.1/caffe/squeezenet1.1.xml -pc [ INFO ] InferenceEngine: API version ............ 1.4 Build .................. 19154 [ INFO ] Parsing input parameters [ INFO ] Files were added: 1 [ INFO ] /opt/intel/computer_vision_sdk/deployment_tools/demo/car.png [ INFO ] Loading plugin API version ............ 1.5 Build .................. lnx_20181004 Description ....... MKLDNNPlugin [ INFO ] Loading network files: /home/matt/openvino_models/ir/FP32//classification/squeezenet/1.1/caffe/squeezenet1.1.xml /home/matt/openvino_models/ir/FP32//classification/squeezenet/1.1/caffe/squeezenet1.1.bin [ INFO ] Preparing input blobs [ WARNING ] Image is resized from (787, 259) to (227, 227) [ INFO ] Batch size is 1 [ INFO ] Preparing output blobs [ INFO ] Loading model to the plugin [ INFO ] Starting inference (1 iterations) [ INFO ] Processing output blobs Top 10 results: Image /opt/intel/computer_vision_sdk/deployment_tools/demo/car.png 817 0.8363344 label sports car, sport car 511 0.0946487 label convertible 479 0.0419132 label car wheel 751 0.0091070 label racer, race car, racing car 436 0.0068161 label beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon 656 0.0037564 label minivan 586 0.0025741 label half track 717 0.0016069 label pickup, pickup truck 864 0.0012027 label tow truck, tow car, wrecker 581 0.0005882 label grille, radiator grille total inference time: 69.5377886 Average running time of one iteration: 69.5377886 ms Throughput: 14.3806701 FPS performance counts: conv1 EXECUTED layerType: Convolution realTime: 8791 cpu: 8791 execType: gemm_blas_FP32 conv10 EXECUTED layerType: Convolution realTime: 5294 cpu: 5294 execType: gemm_blas_FP32 data_U8_FP32_conv1 EXECUTED layerType: Reorder realTime: 141 cpu: 141 execType: reorder_I8 fire2/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 fire2/expand1x1 EXECUTED layerType: Convolution realTime: 1181 cpu: 1181 execType: gemm_blas_FP32 fire2/expand3x3 EXECUTED layerType: Convolution realTime: 4181 cpu: 4181 execType: gemm_blas_FP32 fire2/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire2/relu_expand3x3 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire2/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire2/squeeze1x1 EXECUTED layerType: Convolution realTime: 612 cpu: 612 execType: gemm_blas_FP32 fire3/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 fire3/expand1x1 EXECUTED layerType: Convolution realTime: 1356 cpu: 1356 execType: gemm_blas_FP32 fire3/expand3x3 EXECUTED layerType: Convolution realTime: 4019 cpu: 4019 execType: gemm_blas_FP32 fire3/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire3/relu_expand3x3 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire3/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire3/squeeze1x1 EXECUTED layerType: Convolution realTime: 5253 cpu: 5253 execType: gemm_blas_FP32 fire4/concat NOT_RUN layerType: Concat realTime: 0 cpu: 0 execType: unknown_FP32 fire4/expand1x1 EXECUTED layerType: Convolution realTime: 736 cpu: 736 execType: gemm_blas_FP32 fire4/expand3x3 EXECUTED layerType: Convolution realTime: 2461 cpu: 2461 execType: gemm_blas_FP32 fire4/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire4/relu_expand3x3 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire4/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire4/squeeze1x1 EXECUTED layerType: Convolution realTime: 404 cpu: 404 execType: gemm_blas_FP32 fire5/concat NOT_RUN layerType: Concat realTime: 0 cpu: 0 execType: unknown_FP32 fire5/expand1x1 EXECUTED layerType: Convolution realTime: 775 cpu: 775 execType: gemm_blas_FP32 fire5/expand3x3 EXECUTED layerType: Convolution realTime: 2524 cpu: 2524 execType: gemm_blas_FP32 fire5/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire5/relu_expand3x3 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire5/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire5/squeeze1x1 EXECUTED layerType: Convolution realTime: 581 cpu: 581 execType: gemm_blas_FP32 fire6/concat NOT_RUN layerType: Concat realTime: 0 cpu: 0 execType: unknown_FP32 fire6/expand1x1 EXECUTED layerType: Convolution realTime: 420 cpu: 420 execType: gemm_blas_FP32 fire6/expand3x3 EXECUTED layerType: Convolution realTime: 1354 cpu: 1354 execType: gemm_blas_FP32 fire6/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire6/relu_expand3x3 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire6/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire6/squeeze1x1 EXECUTED layerType: Convolution realTime: 294 cpu: 294 execType: gemm_blas_FP32 fire7/concat NOT_RUN layerType: Concat realTime: 0 cpu: 0 execType: unknown_FP32 fire7/expand1x1 EXECUTED layerType: Convolution realTime: 466 cpu: 466 execType: gemm_blas_FP32 fire7/expand3x3 EXECUTED layerType: Convolution realTime: 1310 cpu: 1310 execType: gemm_blas_FP32 fire7/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire7/relu_expand3x3 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire7/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire7/squeeze1x1 EXECUTED layerType: Convolution realTime: 344 cpu: 344 execType: gemm_blas_FP32 fire8/concat NOT_RUN layerType: Concat realTime: 0 cpu: 0 execType: unknown_FP32 fire8/expand1x1 EXECUTED layerType: Convolution realTime: 507 cpu: 507 execType: gemm_blas_FP32 fire8/expand3x3 EXECUTED layerType: Convolution realTime: 1980 cpu: 1980 execType: gemm_blas_FP32 fire8/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire8/relu_expand3x3 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire8/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire8/squeeze1x1 EXECUTED layerType: Convolution realTime: 448 cpu: 448 execType: gemm_blas_FP32 fire9/concat NOT_RUN layerType: Concat realTime: 0 cpu: 0 execType: unknown_FP32 fire9/expand1x1 EXECUTED layerType: Convolution realTime: 385 cpu: 385 execType: gemm_blas_FP32 fire9/expand3x3 EXECUTED layerType: Convolution realTime: 2035 cpu: 2035 execType: gemm_blas_FP32 fire9/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire9/relu_expand3x3 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire9/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire9/squeeze1x1 EXECUTED layerType: Convolution realTime: 539 cpu: 539 execType: gemm_blas_FP32 out_prob NOT_RUN layerType: Output realTime: 0 cpu: 0 execType: unknown_FP32 pool1 EXECUTED layerType: Pooling realTime: 12898 cpu: 12898 execType: ref_any_FP32 pool10 EXECUTED layerType: Pooling realTime: 217 cpu: 217 execType: ref_any_FP32 pool3 EXECUTED layerType: Pooling realTime: 5265 cpu: 5265 execType: ref_any_FP32 pool5 EXECUTED layerType: Pooling realTime: 2497 cpu: 2497 execType: ref_any_FP32 prob EXECUTED layerType: SoftMax realTime: 55 cpu: 55 execType: ref_any_FP32 relu_conv1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef relu_conv10 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef Total time: 69325 microseconds [ INFO ] Execution successful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Matt,
> As requested, Nikos, here is the output of the classification example using -pc
Thank you very much for the data, appreciate this. Looks good on the slow side of course since no avx/sse4.
> However, is it possible to run the security example on an AMD CPU? (It would be really helpful if it compatable)
I believe it is possible but may have to do with how we compile cpu extensions.
Before that I would try the object detection ssd sample that is also using the cpu extensions library. This is the next step up from the classification sample. If that works we will debug security_barrier_camera_demo which is more complicated.
Cheers,
nikos
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks Nikos,
I tried the SSD example, and it "works" in that it does not crash, but it's bounding boxes are very wrong. Below are the outputs with CPU and MYRIAD. It is using the person detection model that ships with OpenVino.
CPU OUTPUT:
./object_detection_sample_ssd -i /home/matt/tensorflow/projects/hand_retrain/test_dataset/test_data/images/VOC2007_100.jpg -m /opt/intel/computer_vision_sdk/deployment_tools/intel_models/person-detection-retail-0002/FP32/person-detection-retail-0002.xml -d CPU [ INFO ] InferenceEngine: API version ............ 1.4 Build .................. 19154 Parsing input parameters [ INFO ] Files were added: 1 [ INFO ] /home/matt/tensorflow/projects/hand_retrain/test_dataset/test_data/images/VOC2007_100.jpg [ INFO ] Loading plugin API version ............ 1.5 Build .................. lnx_20181004 Description ....... MKLDNNPlugin [ INFO ] Loading network files: /opt/intel/computer_vision_sdk/deployment_tools/intel_models/person-detection-retail-0002/FP32/person-detection-retail-0002.xml /opt/intel/computer_vision_sdk/deployment_tools/intel_models/person-detection-retail-0002/FP32/person-detection-retail-0002.bin [ INFO ] Preparing input blobs [ INFO ] Batch size is 1 [ INFO ] Preparing output blobs [ INFO ] Loading model to the plugin [ WARNING ] Image is resized from (500, 375) to (992, 544) [ INFO ] Batch size is 1 [ INFO ] Start inference (1 iterations) [ INFO ] Processing output blobs [0,1] element, prob = 0.997059 (198.944,49.4925)-(219.276,60.7977) batch id : 0 WILL BE PRINTED! [1,1] element, prob = 0.927988 (258.948,79.5939)-(289.136,109.581) batch id : 0 WILL BE PRINTED! [2,1] element, prob = 0.868948 (203.756,72.253)-(236.033,84.8551) batch id : 0 WILL BE PRINTED! [3,1] element, prob = 0.73473 (254.07,24.1409)-(290.428,118.06) batch id : 0 WILL BE PRINTED! [4,1] element, prob = 0.696809 (167.899,38.0656)-(289.686,60.9464) batch id : 0 WILL BE PRINTED! [5,1] element, prob = 0.656888 (232.191,105.045)-(246.819,251.06) batch id : 0 WILL BE PRINTED! [6,1] element, prob = 0.600668 (272.92,254.929)-(300.49,367.563) batch id : 0 WILL BE PRINTED! [7,1] element, prob = 0.589226 (238.853,101.062)-(273.306,120.175) batch id : 0 WILL BE PRINTED! [8,1] element, prob = 0.543612 (-0.540293,206.189)-(28.5708,373.679) batch id : 0 WILL BE PRINTED! [9,1] element, prob = 0.512038 (100.436,134.471)-(120.95,208.303) batch id : 0 WILL BE PRINTED! [10,1] element, prob = 0.494639 (97.4799,143.287)-(137.773,288.46) batch id : 0 [11,1] element, prob = 0.475628 (296.093,118.677)-(325.188,221.652) batch id : 0 [12,1] element, prob = 0.472245 (76.4503,169.14)-(109.343,282.465) batch id : 0 [13,1] element, prob = 0.464155 (273.746,132.849)-(300.481,238.612) batch id : 0 [14,1] element, prob = 0.461489 (285.18,138.167)-(309.018,205.9) batch id : 0 [15,1] element, prob = 0.461268 (6.91155,292.572)-(33.6672,373.561) batch id : 0 [16,1] element, prob = 0.44778 (2.77317,302.017)-(19.562,370.847) batch id : 0 [17,1] element, prob = 0.433631 (32.209,306.957)-(59.11,367.342) batch id : 0 [18,1] element, prob = 0.425371 (267.803,163.125)-(349.075,376.553) batch id : 0 [19,1] element, prob = 0.41391 (236.758,153.695)-(261.329,227.025) batch id : 0 [20,1] element, prob = 0.408685 (227.462,68.9116)-(232.516,101.289) batch id : 0 [21,1] element, prob = 0.401777 (53.9914,276.421)-(99.5851,373.516) batch id : 0 [22,1] element, prob = 0.394756 (248.825,117.151)-(274.229,156.856) batch id : 0 [23,1] element, prob = 0.388094 (109.485,288.936)-(139.626,370.241) batch id : 0 [24,1] element, prob = 0.386988 (160.353,129.19)-(187.861,221.348) batch id : 0 [25,1] element, prob = 0.373398 (102.758,64.7022)-(146.696,241.039) batch id : 0 [26,1] element, prob = 0.367827 (243.563,144.918)-(277.473,247.367) batch id : 0 [27,1] element, prob = 0.367335 (262.208,211.172)-(292.827,329.078) batch id : 0 [28,1] element, prob = 0.365246 (257.796,258.17)-(285.643,362.341) batch id : 0 [29,1] element, prob = 0.352192 (236.151,176.897)-(272.537,290.058) batch id : 0 [30,1] element, prob = 0.347749 (313.102,111.362)-(338.638,181.063) batch id : 0 [31,1] element, prob = 0.346787 (93.4459,71.9557)-(124.412,183.308) batch id : 0 [32,1] element, prob = 0.345738 (93.3228,188.158)-(115.233,251.933) batch id : 0 [33,1] element, prob = 0.33277 (130.735,24.8596)-(152.065,89.5862) batch id : 0 [34,1] element, prob = 0.331915 (21.3781,222.7)-(49.9692,340.019) batch id : 0 [35,1] element, prob = 0.331621 (272.782,174.05)-(302.151,283.888) batch id : 0 [36,1] element, prob = 0.331253 (168.733,42.62)-(225.767,57.8462) batch id : 0 [37,1] element, prob = 0.330918 (267.758,314.019)-(289.286,368.094) batch id : 0 [38,1] element, prob = 0.316481 (394.979,111.317)-(420.917,126.304) batch id : 0 [39,1] element, prob = 0.310588 (291.984,302.402)-(312.224,369.669) batch id : 0 [40,1] element, prob = 0.308719 (63.2228,225.288)-(140.382,375.026) batch id : 0 [41,1] element, prob = 0.306981 (96.2652,309.812)-(123.38,371.922) batch id : 0 [42,1] element, prob = 0.297819 (47.6316,285.68)-(76.6014,374.411) batch id : 0 [43,1] element, prob = 0.288995 (199.329,121.588)-(227.785,222.345) batch id : 0 [44,1] element, prob = 0.279405 (232.479,213.545)-(261.96,318.653) batch id : 0 [45,1] element, prob = 0.272762 (234.052,87.7652)-(241.749,155.365) batch id : 0 [46,1] element, prob = 0.268494 (237.29,35.9435)-(265.502,126.149) batch id : 0 [47,1] element, prob = 0.263486 (328.204,202.915)-(357.192,325.484) batch id : 0 [48,1] element, prob = 0.254045 (129.256,27.111)-(169.596,180.299) batch id : 0 [49,1] element, prob = 0.250443 (248.134,220.315)-(278.143,322.187) batch id : 0 [50,1] element, prob = 0.246692 (244.405,236.129)-(265.584,306.774) batch id : 0 [51,1] element, prob = 0.241511 (167.899,89.608)-(211.266,264.019) batch id : 0 [52,1] element, prob = 0.24036 (197.477,169.255)-(227.94,271.303) batch id : 0 [53,1] element, prob = 0.235643 (3.98774,57.6659)-(34.5258,221.089) batch id : 0 [54,1] element, prob = 0.234506 (59.727,66.4823)-(125.548,339.596) batch id : 0 [55,1] element, prob = 0.232519 (88.8708,32.0207)-(118.346,143.062) batch id : 0 [56,1] element, prob = 0.227354 (306.574,133.906)-(330.315,197.765) batch id : 0 [57,1] element, prob = 0.226478 (182.834,14.5971)-(226.534,51.4968) batch id : 0 [58,1] element, prob = 0.221481 (481.88,261.071)-(497.344,360.504) batch id : 0 [59,1] element, prob = 0.211941 (235.909,26.2306)-(259.371,84.0575) batch id : 0 [60,1] element, prob = 0.211006 (345.108,251.314)-(370.334,308.851) batch id : 0 [61,1] element, prob = 0.200583 (221.839,234.993)-(240.033,304.188) batch id : 0 [62,1] element, prob = 0.194168 (373.915,45.7846)-(395.055,107.968) batch id : 0 [63,1] element, prob = 0.191798 (15.2243,143.426)-(41.0938,261.594) batch id : 0 [64,1] element, prob = 0.186198 (2.55513,121.611)-(62.4949,373.768) batch id : 0 [65,1] element, prob = 0.173679 (293.876,179.336)-(326.412,305.333) batch id : 0 [66,1] element, prob = 0.172543 (366.433,46.2567)-(398.23,162.856) batch id : 0 [67,1] element, prob = 0.172276 (366.393,81.6878)-(385.207,154.013) batch id : 0 [68,1] element, prob = 0.170581 (480.252,115.226)-(497.381,229.424) batch id : 0 [69,1] element, prob = 0.168224 (293.729,85.0198)-(313.581,155.656) batch id : 0 [70,1] element, prob = 0.164963 (389.298,48.9445)-(411.87,104.968) batch id : 0 [71,1] element, prob = 0.162953 (53.2706,158.323)-(203.364,377.209) batch id : 0 [72,1] element, prob = 0.161525 (8.04805,5.91219)-(157.17,250.166) batch id : 0 [73,1] element, prob = 0.140037 (133.628,78.7744)-(211.463,369.723) batch id : 0 [74,1] element, prob = 0.139577 (40.88,-2.04585)-(68.0719,116.271) batch id : 0 [75,1] element, prob = 0.137961 (207.549,273.405)-(236.447,373.803) batch id : 0 [76,1] element, prob = 0.1368 (35.4129,208.465)-(72.2991,366.682) batch id : 0 [77,1] element, prob = 0.128557 (384.566,141.372)-(402.126,176.344) batch id : 0 [78,1] element, prob = 0.125769 (281.337,128.888)-(287.822,148.246) batch id : 0 [79,1] element, prob = 0.124974 (210.598,1.57618)-(238.714,36.6062) batch id : 0 [80,1] element, prob = 0.105082 (77.3688,86.2662)-(108.515,202.769) batch id : 0 [81,1] element, prob = 0.104047 (473.124,31.8527)-(496.814,199.322) batch id : 0 [82,1] element, prob = 0.103322 (24.6542,25.7562)-(51.0006,143.718) batch id : 0 [83,1] element, prob = 0.10052 (48.4786,31.1006)-(75.9011,157.556) batch id : 0 [84,1] element, prob = 0.0957587 (2.90126,39.8842)-(20.3039,152.983) batch id : 0 [85,1] element, prob = 0.0922709 (55.4088,1.28828)-(95.5319,89.8101) batch id : 0 [86,1] element, prob = 0.0878628 (41.5833,120.383)-(68.5695,241.958) batch id : 0 [87,1] element, prob = 0.0836319 (177.934,3.83617)-(266.508,49.4962) batch id : 0 [88,1] element, prob = 0.082015 (150.56,29.0788)-(195.207,197.327) batch id : 0 [89,1] element, prob = 0.0793932 (377.088,9.43593)-(406.853,108.755) batch id : 0 [90,1] element, prob = 0.07786 (245.752,1.48766)-(266.309,42.7834) batch id : 0 [91,1] element, prob = 0.0772734 (473.115,173.503)-(496.202,276.44) batch id : 0 [92,1] element, prob = 0.0736602 (439.486,99.4262)-(469.659,195.836) batch id : 0 [93,1] element, prob = 0.0674021 (276.081,13.7846)-(308.229,113.969) batch id : 0 [94,1] element, prob = 0.0638556 (128.147,200.134)-(171.338,369.176) batch id : 0 [95,1] element, prob = 0.0621899 (144.03,4.49122)-(173.022,61.2716) batch id : 0 [96,1] element, prob = 0.0572652 (243.854,83.4662)-(249.81,129.346) batch id : 0 [97,1] element, prob = 0.0494299 (3.56377,-0.10272)-(42.1816,88.9625) batch id : 0 [98,1] element, prob = 0.0491901 (476.355,241.046)-(497.765,311.325) batch id : 0 [99,1] element, prob = 0.048757 (50.0681,98.5335)-(91.2925,281.272) batch id : 0 [100,1] element, prob = 0.0484611 (329.177,95.815)-(457.758,113.492) batch id : 0 [101,1] element, prob = 0.0430711 (211.355,68.0001)-(232.585,305.027) batch id : 0 [102,1] element, prob = 0.0412185 (19.6584,-1.88588)-(58.6687,92.2611) batch id : 0 [103,1] element, prob = 0.0404651 (228.841,85.3283)-(279.531,297.863) batch id : 0 [104,1] element, prob = 0.0399879 (473.352,8.34259)-(495.469,105.57) batch id : 0 [105,1] element, prob = 0.0326501 (216.183,93.9635)-(238.017,129.239) batch id : 0 [106,1] element, prob = 0.0279986 (308.153,85.237)-(329.855,162.498) batch id : 0 [107,1] element, prob = 0.0238666 (461.267,294.376)-(493.977,380.614) batch id : 0 [108,1] element, prob = 0.019164 (291.347,62.4018)-(329.237,192.667) batch id : 0 [109,1] element, prob = 0.014518 (346.556,17.3668)-(373.228,133.976) batch id : 0 [110,1] element, prob = 0.00701878 (456.884,123.246)-(495.633,261.598) batch id : 0 [111,1] element, prob = 0.00367822 (198.269,90.8855)-(230.4,137.295) batch id : 0 [112,1] element, prob = 0.00346408 (461.108,186.609)-(481.239,243.638) batch id : 0 [113,1] element, prob = 0.000881145 (231.924,124.212)-(270.234,167.823) batch id : 0 [114,1] element, prob = 8.02014e-05 (177.487,79.7558)-(222.458,134.819) batch id : 0 [115,1] element, prob = 6.51032e-07 (385.348,276.61)-(479.338,441.781) batch id : 0 [ INFO ] Image out_0.bmp created! total inference time: 1495.93 Average running time of one iteration: 1495.93 ms Throughput: 0.66848 FPS [ INFO ] Execution successful
MYRIAD OUTPUT
./object_detection_sample_ssd -i /home/matt/tensorflow/projects/hand_retrain/test_dataset/test_data/images/VOC2007_100.jpg -m /opt/intel/computer_vision_sdk/deployment_tools/intel_models/person-detection-retail-0002/FP16/person-detection-retail-0002.xml -d MYRIAD [ INFO ] InferenceEngine: API version ............ 1.4 Build .................. 19154 Parsing input parameters [ INFO ] Files were added: 1 [ INFO ] /home/matt/tensorflow/projects/hand_retrain/test_dataset/test_data/images/VOC2007_100.jpg [ INFO ] Loading plugin API version ............ 1.5 Build .................. 19154 Description ....... myriadPlugin [ INFO ] Loading network files: /opt/intel/computer_vision_sdk/deployment_tools/intel_models/person-detection-retail-0002/FP16/person-detection-retail-0002.xml /opt/intel/computer_vision_sdk/deployment_tools/intel_models/person-detection-retail-0002/FP16/person-detection-retail-0002.bin [ INFO ] Preparing input blobs [ INFO ] Batch size is 1 [ INFO ] Preparing output blobs [ INFO ] Loading model to the plugin [ WARNING ] Image is resized from (500, 375) to (992, 544) [ INFO ] Batch size is 1 [ INFO ] Start inference (1 iterations) [ INFO ] Processing output blobs [0,1] element, prob = 0.937012 (-7.21741,189.697)-(44.3115,373.169) batch id : 0 WILL BE PRINTED! [1,1] element, prob = 0.79541 (74.1577,164.978)-(167.725,378.662) batch id : 0 WILL BE PRINTED! [2,1] element, prob = 0.714844 (267.09,119.385)-(369.629,386.719) batch id : 0 WILL BE PRINTED! [3,1] element, prob = 0.569824 (156.494,115.906)-(234.619,377.197) batch id : 0 WILL BE PRINTED! [4,1] element, prob = 0.379395 (115.112,178.894)-(156.372,338.562) batch id : 0 [5,1] element, prob = 0.301758 (228.516,150.33)-(285.645,377.93) batch id : 0 [6,1] element, prob = 0.253418 (75.6226,194.458)-(113.586,368.042) batch id : 0 [7,1] element, prob = 0.191895 (92.3462,221.375)-(146.973,364.929) batch id : 0 [8,1] element, prob = 0.174805 (2.0752,187.866)-(35.7666,273.56) batch id : 0 [9,1] element, prob = 0.126465 (66.3452,66.8335)-(301.758,370.422) batch id : 0 [10,1] element, prob = 0.103516 (118.042,115.265)-(193.97,356.689) batch id : 0 [11,1] element, prob = 0.0961914 (166.504,138.336)-(349.609,385.986) batch id : 0 [12,1] element, prob = 0.0927734 (217.651,126.984)-(235.474,177.155) batch id : 0 [13,1] element, prob = 0.0859375 (179.443,141.998)-(227.295,246.094) batch id : 0 [14,1] element, prob = 0.0839844 (230.347,128.723)-(248.657,184.021) batch id : 0 [15,1] element, prob = 0.0751953 (200.195,213.684)-(249.756,360.168) batch id : 0 [16,1] element, prob = 0.0615234 (396.973,11.7188)-(416.504,53.7415) batch id : 0 [17,1] element, prob = 0.0585938 (96.4966,120.85)-(151.001,289.307) batch id : 0 [18,1] element, prob = 0.0561523 (63.9648,-29.1138)-(569.824,411.621) batch id : 0 [19,1] element, prob = 0.0537109 (238.159,120.026)-(281.738,257.812) batch id : 0 [20,1] element, prob = 0.0507812 (330.322,135.681)-(382.568,281.067) batch id : 0 [21,1] element, prob = 0.050293 (38.6963,-7.46155)-(81.1157,134.216) batch id : 0 [22,1] element, prob = 0.0493164 (222.534,101.99)-(255.859,194.824) batch id : 0 [23,1] element, prob = 0.0473633 (298.828,112.244)-(359.375,277.039) batch id : 0 [24,1] element, prob = 0.0429688 (36.2549,267.7)-(233.521,362.549) batch id : 0 [25,1] element, prob = 0.0429688 (289.795,220.825)-(360.596,366.943) batch id : 0 [26,1] element, prob = 0.0410156 (28.5034,23.6206)-(175.781,360.535) batch id : 0 [27,1] element, prob = 0.034668 (437.012,86.6089)-(508.301,331.604) batch id : 0 [28,1] element, prob = 0.034668 (269.043,230.347)-(317.383,360.718) batch id : 0 [29,1] element, prob = 0.0332031 (137.695,221.191)-(185.547,364.014) batch id : 0 [30,1] element, prob = 0.0322266 (170.166,20.6795)-(188.477,63.9038) batch id : 0 [31,1] element, prob = 0.0322266 (289.551,124.603)-(337.402,225.952) batch id : 0 [32,1] element, prob = 0.03125 (210.327,83.8165)-(269.531,261.108) batch id : 0 [33,1] element, prob = 0.0292969 (164.795,16.1247)-(180.42,60.1044) batch id : 0 [34,1] element, prob = 0.0219727 (-14.0076,217.346)-(105.347,361.267) batch id : 0 [35,1] element, prob = 0.0209961 (117.798,269.897)-(324.219,366.211) batch id : 0 [36,1] element, prob = 0.019043 (136.963,21.4233)-(255.615,291.687) batch id : 0 [37,1] element, prob = 0.019043 (14.3356,154.449)-(25.7568,196.655) batch id : 0 [38,1] element, prob = 0.0170898 (249.756,61.0657)-(326.416,292.969) batch id : 0 [39,1] element, prob = 0.0170898 (154.907,20.5765)-(172.241,58.2275) batch id : 0 [40,1] element, prob = 0.0107422 (486.572,11.6272)-(498.779,349.731) batch id : 0 [41,1] element, prob = 0.0107422 (181.274,17.8528)-(197.632,68.0237) batch id : 0 [42,1] element, prob = 0.00976562 (191.284,3.43323)-(254.639,138.428) batch id : 0 [43,1] element, prob = 0.00878906 (9.00269,173.95)-(28.656,229.248) batch id : 0 [44,1] element, prob = 0.0078125 (182.861,25.1312)-(209.717,80.8868) batch id : 0 [45,1] element, prob = 0.000976562 (262.939,1.83105)-(453.857,425.903) batch id : 0 [46,1] element, prob = 0 (392.09,217.529)-(511.719,381.958) batch id : 0 [47,1] element, prob = 0 (283.203,123.871)-(625.977,284.18) batch id : 0 [48,1] element, prob = 0 (322.266,-45.2271)-(533.203,156.738) batch id : 0 [49,1] element, prob = 0 (191.772,213.501)-(522.461,424.805) batch id : 0 [50,1] element, prob = 0 (-23.1934,153.442)-(792.969,446.411) batch id : 0 [51,1] element, prob = 0 (361.816,99.7009)-(428.223,265.137) batch id : 0 [ INFO ] Image out_0.bmp created! total inference time: 463.569 Average running time of one iteration: 463.569 ms Throughput: 2.15718 FPS [ INFO ] Execution successful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Matt,
So it seems MYRIAD works but old CPU produces wrong results, correct? Could you post -pc output for SSD CPU path? It may reveal the layer that has issues. May be an issue with the extension library (cpu_extension_avx2.dll). In the old SDK there used to be an non-avx version. You could try to build from source ( is it the C:\Intel\computer_vision_sdk_2018.5.456\deployment_tools\inference_engine\src\extension project ? You could build from the samples solution without any SSE/AVX flags after you cmake on your system ).
Also do you have an Ubuntu partition on this system? Would be interesting to see of the issue is there too. In any case the system does not meet the requirements but it is worth trying if there are no other options.
https://software.intel.com/en-us/openvino-toolkit/documentation/system-requirements
nikos
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Nikos,
So it seems MYRIAD works but old CPU produces wrong results, correct
Correct.
Could you post -pc output for SSD CPU path?
See end of this post.
In the old SDK there used to be an non-avx version. You could try to build from source ( is it the C:\Intel\computer_vision_sdk_2018.5.456\deployment_tools\inference_engine\src\extension project ? You could build from the samples solution without any SSE/AVX flags after you cmake on your system ).
Im on Ubuntu, so it's the "/opt/intel/computer_vision_sdk/inference_engine/samples/object_detection_sample_ssd" project. How can I turn off SSE/AVX instructions when building them (surely they would use native compile flags by default)? Surely the bigger problem would not be the examples, but the binaries that are linked to the examples which (I'm guessing) are distributed with the installation. Is there any instructions on building these from source?
Also do you have an Ubuntu partition on this system? Would be interesting to see of the issue is there too. In any case the system does not meet the requirements but it is worth trying if there are no other options.
I am on an Ubuntu computer - that is all I have. I am not surprised that it does not work on my computer, but, it seems so close, that it is unfortunate that it does not. Also, since it is not prodice an illegal instruction exception, I see no reason for it to fail. Here are exact specs for reference:
CPU: AMD Phenom II N970 Quad-Core Processor × 4 (do you remember the days when quad core was awesome)
GPU (not using): AMD TURKS (DRM 2.43.0 / 4.4.0-141-generic, LLVM 6.0.0)
RAM: 7.8 Gb
OS: Ubuntu 16.04 64bit
Of-course, I'm also using a Movidius Neural Compute Stick (v1) over usb 2.
CPU SSD -pc output (the created image is the exact same as the CPU image given in the previous post):
./object_detection_sample_ssd -i /home/matt/tensorflow/projects/hand_retrain/test_dataset/test_data/images/VOC2007_100.jpg -m /opt/intel/computer_vision_sdk/deployment_tools/intel_models/person-detection-retail-0002/FP32/person-detection-retail-0002.xml -d CPU -pc [ INFO ] InferenceEngine: API version ............ 1.4 Build .................. 19154 Parsing input parameters [ INFO ] Files were added: 1 [ INFO ] /home/matt/tensorflow/projects/hand_retrain/test_dataset/test_data/images/VOC2007_100.jpg [ INFO ] Loading plugin API version ............ 1.5 Build .................. lnx_20181004 Description ....... MKLDNNPlugin [ INFO ] Loading network files: /opt/intel/computer_vision_sdk/deployment_tools/intel_models/person-detection-retail-0002/FP32/person-detection-retail-0002.xml /opt/intel/computer_vision_sdk/deployment_tools/intel_models/person-detection-retail-0002/FP32/person-detection-retail-0002.bin [ INFO ] Preparing input blobs [ INFO ] Batch size is 1 [ INFO ] Preparing output blobs [ INFO ] Loading model to the plugin [ WARNING ] Image is resized from (500, 375) to (992, 544) [ INFO ] Batch size is 1 [ INFO ] Start inference (1 iterations) [ INFO ] Processing output blobs [0,1] element, prob = 0.997059 (198.944,49.4925)-(219.276,60.7977) batch id : 0 WILL BE PRINTED! [1,1] element, prob = 0.927988 (258.948,79.5939)-(289.136,109.581) batch id : 0 WILL BE PRINTED! [2,1] element, prob = 0.868948 (203.756,72.253)-(236.033,84.8551) batch id : 0 WILL BE PRINTED! [3,1] element, prob = 0.73473 (254.07,24.1409)-(290.428,118.06) batch id : 0 WILL BE PRINTED! [4,1] element, prob = 0.696809 (167.899,38.0656)-(289.686,60.9464) batch id : 0 WILL BE PRINTED! [5,1] element, prob = 0.656888 (232.191,105.045)-(246.819,251.06) batch id : 0 WILL BE PRINTED! [6,1] element, prob = 0.600668 (272.92,254.929)-(300.49,367.563) batch id : 0 WILL BE PRINTED! [7,1] element, prob = 0.589226 (238.853,101.062)-(273.306,120.175) batch id : 0 WILL BE PRINTED! [8,1] element, prob = 0.543612 (-0.540293,206.189)-(28.5708,373.679) batch id : 0 WILL BE PRINTED! [9,1] element, prob = 0.512038 (100.436,134.471)-(120.95,208.303) batch id : 0 WILL BE PRINTED! [10,1] element, prob = 0.494639 (97.4799,143.287)-(137.773,288.46) batch id : 0 [11,1] element, prob = 0.475628 (296.093,118.677)-(325.188,221.652) batch id : 0 [12,1] element, prob = 0.472245 (76.4503,169.14)-(109.343,282.465) batch id : 0 [13,1] element, prob = 0.464155 (273.746,132.849)-(300.481,238.612) batch id : 0 [14,1] element, prob = 0.461489 (285.18,138.167)-(309.018,205.9) batch id : 0 [15,1] element, prob = 0.461268 (6.91155,292.572)-(33.6672,373.561) batch id : 0 [16,1] element, prob = 0.44778 (2.77317,302.017)-(19.562,370.847) batch id : 0 [17,1] element, prob = 0.433631 (32.209,306.957)-(59.11,367.342) batch id : 0 [18,1] element, prob = 0.425371 (267.803,163.125)-(349.075,376.553) batch id : 0 [19,1] element, prob = 0.41391 (236.758,153.695)-(261.329,227.025) batch id : 0 [20,1] element, prob = 0.408685 (227.462,68.9116)-(232.516,101.289) batch id : 0 [21,1] element, prob = 0.401777 (53.9914,276.421)-(99.5851,373.516) batch id : 0 [22,1] element, prob = 0.394756 (248.825,117.151)-(274.229,156.856) batch id : 0 [23,1] element, prob = 0.388094 (109.485,288.936)-(139.626,370.241) batch id : 0 [24,1] element, prob = 0.386988 (160.353,129.19)-(187.861,221.348) batch id : 0 [25,1] element, prob = 0.373398 (102.758,64.7022)-(146.696,241.039) batch id : 0 [26,1] element, prob = 0.367827 (243.563,144.918)-(277.473,247.367) batch id : 0 [27,1] element, prob = 0.367335 (262.208,211.172)-(292.827,329.078) batch id : 0 [28,1] element, prob = 0.365246 (257.796,258.17)-(285.643,362.341) batch id : 0 [29,1] element, prob = 0.352192 (236.151,176.897)-(272.537,290.058) batch id : 0 [30,1] element, prob = 0.347749 (313.102,111.362)-(338.638,181.063) batch id : 0 [31,1] element, prob = 0.346787 (93.4459,71.9557)-(124.412,183.308) batch id : 0 [32,1] element, prob = 0.345738 (93.3228,188.158)-(115.233,251.933) batch id : 0 [33,1] element, prob = 0.33277 (130.735,24.8596)-(152.065,89.5862) batch id : 0 [34,1] element, prob = 0.331915 (21.3781,222.7)-(49.9692,340.019) batch id : 0 [35,1] element, prob = 0.331621 (272.782,174.05)-(302.151,283.888) batch id : 0 [36,1] element, prob = 0.331253 (168.733,42.62)-(225.767,57.8462) batch id : 0 [37,1] element, prob = 0.330918 (267.758,314.019)-(289.286,368.094) batch id : 0 [38,1] element, prob = 0.316481 (394.979,111.317)-(420.917,126.304) batch id : 0 [39,1] element, prob = 0.310588 (291.984,302.402)-(312.224,369.669) batch id : 0 [40,1] element, prob = 0.308719 (63.2228,225.288)-(140.382,375.026) batch id : 0 [41,1] element, prob = 0.306981 (96.2652,309.812)-(123.38,371.922) batch id : 0 [42,1] element, prob = 0.297819 (47.6316,285.68)-(76.6014,374.411) batch id : 0 [43,1] element, prob = 0.288995 (199.329,121.588)-(227.785,222.345) batch id : 0 [44,1] element, prob = 0.279405 (232.479,213.545)-(261.96,318.653) batch id : 0 [45,1] element, prob = 0.272762 (234.052,87.7652)-(241.749,155.365) batch id : 0 [46,1] element, prob = 0.268494 (237.29,35.9435)-(265.502,126.149) batch id : 0 [47,1] element, prob = 0.263486 (328.204,202.915)-(357.192,325.484) batch id : 0 [48,1] element, prob = 0.254045 (129.256,27.111)-(169.596,180.299) batch id : 0 [49,1] element, prob = 0.250443 (248.134,220.315)-(278.143,322.187) batch id : 0 [50,1] element, prob = 0.246692 (244.405,236.129)-(265.584,306.774) batch id : 0 [51,1] element, prob = 0.241511 (167.899,89.608)-(211.266,264.019) batch id : 0 [52,1] element, prob = 0.24036 (197.477,169.255)-(227.94,271.303) batch id : 0 [53,1] element, prob = 0.235643 (3.98774,57.6659)-(34.5258,221.089) batch id : 0 [54,1] element, prob = 0.234506 (59.727,66.4823)-(125.548,339.596) batch id : 0 [55,1] element, prob = 0.232519 (88.8708,32.0207)-(118.346,143.062) batch id : 0 [56,1] element, prob = 0.227354 (306.574,133.906)-(330.315,197.765) batch id : 0 [57,1] element, prob = 0.226478 (182.834,14.5971)-(226.534,51.4968) batch id : 0 [58,1] element, prob = 0.221481 (481.88,261.071)-(497.344,360.504) batch id : 0 [59,1] element, prob = 0.211941 (235.909,26.2306)-(259.371,84.0575) batch id : 0 [60,1] element, prob = 0.211006 (345.108,251.314)-(370.334,308.851) batch id : 0 [61,1] element, prob = 0.200583 (221.839,234.993)-(240.033,304.188) batch id : 0 [62,1] element, prob = 0.194168 (373.915,45.7846)-(395.055,107.968) batch id : 0 [63,1] element, prob = 0.191798 (15.2243,143.426)-(41.0938,261.594) batch id : 0 [64,1] element, prob = 0.186198 (2.55513,121.611)-(62.4949,373.768) batch id : 0 [65,1] element, prob = 0.173679 (293.876,179.336)-(326.412,305.333) batch id : 0 [66,1] element, prob = 0.172543 (366.433,46.2567)-(398.23,162.856) batch id : 0 [67,1] element, prob = 0.172276 (366.393,81.6878)-(385.207,154.013) batch id : 0 [68,1] element, prob = 0.170581 (480.252,115.226)-(497.381,229.424) batch id : 0 [69,1] element, prob = 0.168224 (293.729,85.0198)-(313.581,155.656) batch id : 0 [70,1] element, prob = 0.164963 (389.298,48.9445)-(411.87,104.968) batch id : 0 [71,1] element, prob = 0.162953 (53.2706,158.323)-(203.364,377.209) batch id : 0 [72,1] element, prob = 0.161525 (8.04805,5.91219)-(157.17,250.166) batch id : 0 [73,1] element, prob = 0.140037 (133.628,78.7744)-(211.463,369.723) batch id : 0 [74,1] element, prob = 0.139577 (40.88,-2.04585)-(68.0719,116.271) batch id : 0 [75,1] element, prob = 0.137961 (207.549,273.405)-(236.447,373.803) batch id : 0 [76,1] element, prob = 0.1368 (35.4129,208.465)-(72.2991,366.682) batch id : 0 [77,1] element, prob = 0.128557 (384.566,141.372)-(402.126,176.344) batch id : 0 [78,1] element, prob = 0.125769 (281.337,128.888)-(287.822,148.246) batch id : 0 [79,1] element, prob = 0.124974 (210.598,1.57618)-(238.714,36.6062) batch id : 0 [80,1] element, prob = 0.105082 (77.3688,86.2662)-(108.515,202.769) batch id : 0 [81,1] element, prob = 0.104047 (473.124,31.8527)-(496.814,199.322) batch id : 0 [82,1] element, prob = 0.103322 (24.6542,25.7562)-(51.0006,143.718) batch id : 0 [83,1] element, prob = 0.10052 (48.4786,31.1006)-(75.9011,157.556) batch id : 0 [84,1] element, prob = 0.0957587 (2.90126,39.8842)-(20.3039,152.983) batch id : 0 [85,1] element, prob = 0.0922709 (55.4088,1.28828)-(95.5319,89.8101) batch id : 0 [86,1] element, prob = 0.0878628 (41.5833,120.383)-(68.5695,241.958) batch id : 0 [87,1] element, prob = 0.0836319 (177.934,3.83617)-(266.508,49.4962) batch id : 0 [88,1] element, prob = 0.082015 (150.56,29.0788)-(195.207,197.327) batch id : 0 [89,1] element, prob = 0.0793932 (377.088,9.43593)-(406.853,108.755) batch id : 0 [90,1] element, prob = 0.07786 (245.752,1.48766)-(266.309,42.7834) batch id : 0 [91,1] element, prob = 0.0772734 (473.115,173.503)-(496.202,276.44) batch id : 0 [92,1] element, prob = 0.0736602 (439.486,99.4262)-(469.659,195.836) batch id : 0 [93,1] element, prob = 0.0674021 (276.081,13.7846)-(308.229,113.969) batch id : 0 [94,1] element, prob = 0.0638556 (128.147,200.134)-(171.338,369.176) batch id : 0 [95,1] element, prob = 0.0621899 (144.03,4.49122)-(173.022,61.2716) batch id : 0 [96,1] element, prob = 0.0572652 (243.854,83.4662)-(249.81,129.346) batch id : 0 [97,1] element, prob = 0.0494299 (3.56377,-0.10272)-(42.1816,88.9625) batch id : 0 [98,1] element, prob = 0.0491901 (476.355,241.046)-(497.765,311.325) batch id : 0 [99,1] element, prob = 0.048757 (50.0681,98.5335)-(91.2925,281.272) batch id : 0 [100,1] element, prob = 0.0484611 (329.177,95.815)-(457.758,113.492) batch id : 0 [101,1] element, prob = 0.0430711 (211.355,68.0001)-(232.585,305.027) batch id : 0 [102,1] element, prob = 0.0412185 (19.6584,-1.88588)-(58.6687,92.2611) batch id : 0 [103,1] element, prob = 0.0404651 (228.841,85.3283)-(279.531,297.863) batch id : 0 [104,1] element, prob = 0.0399879 (473.352,8.34259)-(495.469,105.57) batch id : 0 [105,1] element, prob = 0.0326501 (216.183,93.9635)-(238.017,129.239) batch id : 0 [106,1] element, prob = 0.0279986 (308.153,85.237)-(329.855,162.498) batch id : 0 [107,1] element, prob = 0.0238666 (461.267,294.376)-(493.977,380.614) batch id : 0 [108,1] element, prob = 0.019164 (291.347,62.4018)-(329.237,192.667) batch id : 0 [109,1] element, prob = 0.014518 (346.556,17.3668)-(373.228,133.976) batch id : 0 [110,1] element, prob = 0.00701878 (456.884,123.246)-(495.633,261.598) batch id : 0 [111,1] element, prob = 0.00367822 (198.269,90.8855)-(230.4,137.295) batch id : 0 [112,1] element, prob = 0.00346408 (461.108,186.609)-(481.239,243.638) batch id : 0 [113,1] element, prob = 0.000881145 (231.924,124.212)-(270.234,167.823) batch id : 0 [114,1] element, prob = 8.02014e-05 (177.487,79.7558)-(222.458,134.819) batch id : 0 [115,1] element, prob = 6.51032e-07 (385.348,276.61)-(479.338,441.781) batch id : 0 [ INFO ] Image out_0.bmp created! total inference time: 1771.05 Average running time of one iteration: 1771.05 ms Throughput: 0.564638 FPS performance counts: Add_ EXECUTED layerType: ScaleShift realTime: 164762 cpu: 164762 execType: ref_any_FP32 Pooling_ EXECUTED layerType: Pooling realTime: 5567 cpu: 5567 execType: ref_any_FP32 Pooling_687 EXECUTED layerType: Pooling realTime: 6750 cpu: 6750 execType: ref_any_FP32 bbox_pred_reshape NOT_RUN layerType: Reshape realTime: 0 cpu: 0 execType: unknown_FP32 cls_prob EXECUTED layerType: SoftMax realTime: 14 cpu: 14 execType: ref_any_FP32 cls_prob_reshape NOT_RUN layerType: Reshape realTime: 0 cpu: 0 execType: unknown_FP32 concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 concat_convf EXECUTED layerType: Concat realTime: 2 cpu: 2 execType: unknown_FP32 conv1_1/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv1_1/conv EXECUTED layerType: Convolution realTime: 93141 cpu: 93141 execType: gemm_blas_FP32 conv1_1/neg EXECUTED layerType: Power realTime: 2551 cpu: 2551 execType: unknown_FP32 conv1_1/relu EXECUTED layerType: ReLU realTime: 3770 cpu: 3770 execType: ref_any_FP32 conv1_1/scale/Mul_/FusedSc... EXECUTED layerType: ScaleShift realTime: 186693 cpu: 186693 execType: ref_any_FP32 conv2_1 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv2_1/1/conv EXECUTED layerType: Convolution realTime: 4905 cpu: 4905 execType: gemm_blas_FP32 conv2_1/1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv2_1/2/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv2_1/2/conv EXECUTED layerType: Convolution realTime: 31647 cpu: 31647 execType: gemm_blas_FP32 conv2_1/2/neg EXECUTED layerType: Power realTime: 978 cpu: 978 execType: unknown_FP32 conv2_1/2/relu EXECUTED layerType: ReLU realTime: 1633 cpu: 1633 execType: ref_any_FP32 conv2_1/2/scale/Mul_/Fused... EXECUTED layerType: ScaleShift realTime: 71689 cpu: 71689 execType: ref_any_FP32 conv2_1/3/conv EXECUTED layerType: Convolution realTime: 8236 cpu: 8236 execType: gemm_blas_FP32 conv2_1/proj EXECUTED layerType: Convolution realTime: 9468 cpu: 9468 execType: gemm_blas_FP32 conv2_2 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv2_2/1/conv EXECUTED layerType: Convolution realTime: 8110 cpu: 8110 execType: gemm_blas_FP32 conv2_2/1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv2_2/2/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv2_2/2/conv EXECUTED layerType: Convolution realTime: 32230 cpu: 32230 execType: gemm_blas_FP32 conv2_2/2/neg EXECUTED layerType: Power realTime: 1379 cpu: 1379 execType: unknown_FP32 conv2_2/2/relu EXECUTED layerType: ReLU realTime: 1641 cpu: 1641 execType: ref_any_FP32 conv2_2/2/scale/Mul_/Fused... EXECUTED layerType: ScaleShift realTime: 78181 cpu: 78181 execType: ref_any_FP32 conv2_2/3/conv EXECUTED layerType: Convolution realTime: 8385 cpu: 8385 execType: gemm_blas_FP32 conv2_3 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv2_3/1/conv EXECUTED layerType: Convolution realTime: 7420 cpu: 7420 execType: gemm_blas_FP32 conv2_3/1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv2_3/2/concat NOT_RUN layerType: Concat realTime: 0 cpu: 0 execType: unknown_FP32 conv2_3/2/conv EXECUTED layerType: Convolution realTime: 32235 cpu: 32235 execType: gemm_blas_FP32 conv2_3/2/neg EXECUTED layerType: Power realTime: 980 cpu: 980 execType: unknown_FP32 conv2_3/2/relu EXECUTED layerType: ReLU realTime: 451 cpu: 451 execType: ref_any_FP32 conv2_3/2/scale/Mul_/Fused... EXECUTED layerType: ScaleShift realTime: 17851 cpu: 17851 execType: ref_any_FP32 conv2_3/3/conv EXECUTED layerType: Convolution realTime: 2180 cpu: 2180 execType: gemm_blas_FP32 conv3_1 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv3_1/1/conv EXECUTED layerType: Convolution realTime: 3831 cpu: 3831 execType: gemm_blas_FP32 conv3_1/1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv3_1/2/concat NOT_RUN layerType: Concat realTime: 0 cpu: 0 execType: unknown_FP32 conv3_1/2/conv EXECUTED layerType: Convolution realTime: 20507 cpu: 20507 execType: gemm_blas_FP32 conv3_1/2/neg EXECUTED layerType: Power realTime: 535 cpu: 535 execType: unknown_FP32 conv3_1/2/relu EXECUTED layerType: ReLU realTime: 968 cpu: 968 execType: ref_any_FP32 conv3_1/2/scale/Mul_/Fused... EXECUTED layerType: ScaleShift realTime: 35028 cpu: 35028 execType: ref_any_FP32 conv3_1/3/conv EXECUTED layerType: Convolution realTime: 6377 cpu: 6377 execType: gemm_blas_FP32 conv3_1/proj EXECUTED layerType: Convolution realTime: 6251 cpu: 6251 execType: gemm_blas_FP32 conv3_2 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv3_2/1/conv EXECUTED layerType: Convolution realTime: 6354 cpu: 6354 execType: gemm_blas_FP32 conv3_2/1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv3_2/2/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv3_2/2/conv EXECUTED layerType: Convolution realTime: 18325 cpu: 18325 execType: gemm_blas_FP32 conv3_2/2/neg EXECUTED layerType: Power realTime: 1703 cpu: 1703 execType: unknown_FP32 conv3_2/2/relu EXECUTED layerType: ReLU realTime: 954 cpu: 954 execType: ref_any_FP32 conv3_2/2/scale/Mul_/Fused... EXECUTED layerType: ScaleShift realTime: 36966 cpu: 36966 execType: ref_any_FP32 conv3_2/3/conv EXECUTED layerType: Convolution realTime: 6400 cpu: 6400 execType: gemm_blas_FP32 conv3_3 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv3_3/1/conv EXECUTED layerType: Convolution realTime: 5636 cpu: 5636 execType: gemm_blas_FP32 conv3_3/1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv3_3/2/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv3_3/2/conv EXECUTED layerType: Convolution realTime: 18510 cpu: 18510 execType: gemm_blas_FP32 conv3_3/2/neg EXECUTED layerType: Power realTime: 541 cpu: 541 execType: unknown_FP32 conv3_3/2/relu EXECUTED layerType: ReLU realTime: 1087 cpu: 1087 execType: ref_any_FP32 conv3_3/2/scale/Mul_/Fused... EXECUTED layerType: ScaleShift realTime: 33217 cpu: 33217 execType: ref_any_FP32 conv3_3/3/conv EXECUTED layerType: Convolution realTime: 6427 cpu: 6427 execType: gemm_blas_FP32 conv3_4 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv3_4/1/conv EXECUTED layerType: Convolution realTime: 5774 cpu: 5774 execType: gemm_blas_FP32 conv3_4/1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv3_4/2/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv3_4/2/conv EXECUTED layerType: Convolution realTime: 19172 cpu: 19172 execType: gemm_blas_FP32 conv3_4/2/neg EXECUTED layerType: Power realTime: 536 cpu: 536 execType: unknown_FP32 conv3_4/2/relu EXECUTED layerType: ReLU realTime: 1288 cpu: 1288 execType: ref_any_FP32 conv3_4/2/scale/Mul_/Fused... EXECUTED layerType: ScaleShift realTime: 33306 cpu: 33306 execType: ref_any_FP32 conv3_4/3/conv EXECUTED layerType: Convolution realTime: 6314 cpu: 6314 execType: gemm_blas_FP32 conv4_1 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv4_1/incep EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv4_1/incep/0/conv EXECUTED layerType: Convolution realTime: 2801 cpu: 2801 execType: gemm_blas_FP32 conv4_1/incep/0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_1/incep/1_0/conv EXECUTED layerType: Convolution realTime: 9798 cpu: 9798 execType: gemm_blas_FP32 conv4_1/incep/1_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_1/incep/1_reduce/conv EXECUTED layerType: Convolution realTime: 2240 cpu: 2240 execType: gemm_blas_FP32 conv4_1/incep/1_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_1/incep/2_0/conv EXECUTED layerType: Convolution realTime: 3123 cpu: 3123 execType: gemm_blas_FP32 conv4_1/incep/2_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_1/incep/2_1/conv EXECUTED layerType: Convolution realTime: 5200 cpu: 5200 execType: gemm_blas_FP32 conv4_1/incep/2_1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_1/incep/2_reduce/conv EXECUTED layerType: Convolution realTime: 2583 cpu: 2583 execType: gemm_blas_FP32 conv4_1/incep/2_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_1/incep/pool EXECUTED layerType: Pooling realTime: 15285 cpu: 15285 execType: ref_any_FP32 conv4_1/incep/poolproj/conv EXECUTED layerType: Convolution realTime: 3091 cpu: 3091 execType: gemm_blas_FP32 conv4_1/incep/poolproj/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_1/out/conv EXECUTED layerType: Convolution realTime: 10064 cpu: 10064 execType: gemm_blas_FP32 conv4_1/proj EXECUTED layerType: Convolution realTime: 5161 cpu: 5161 execType: gemm_blas_FP32 conv4_2 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv4_2/incep EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv4_2/incep/0/conv EXECUTED layerType: Convolution realTime: 3890 cpu: 3890 execType: gemm_blas_FP32 conv4_2/incep/0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_2/incep/1_0/conv EXECUTED layerType: Convolution realTime: 12798 cpu: 12798 execType: gemm_blas_FP32 conv4_2/incep/1_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_2/incep/1_reduce/conv EXECUTED layerType: Convolution realTime: 3046 cpu: 3046 execType: gemm_blas_FP32 conv4_2/incep/1_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_2/incep/2_0/conv EXECUTED layerType: Convolution realTime: 3642 cpu: 3642 execType: gemm_blas_FP32 conv4_2/incep/2_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_2/incep/2_1/conv EXECUTED layerType: Convolution realTime: 5126 cpu: 5126 execType: gemm_blas_FP32 conv4_2/incep/2_1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_2/incep/2_reduce/conv EXECUTED layerType: Convolution realTime: 2056 cpu: 2056 execType: gemm_blas_FP32 conv4_2/incep/2_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_2/out/conv EXECUTED layerType: Convolution realTime: 6829 cpu: 6829 execType: gemm_blas_FP32 conv4_3 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv4_3/incep EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv4_3/incep/0/conv EXECUTED layerType: Convolution realTime: 4141 cpu: 4141 execType: gemm_blas_FP32 conv4_3/incep/0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_3/incep/1_0/conv EXECUTED layerType: Convolution realTime: 12751 cpu: 12751 execType: gemm_blas_FP32 conv4_3/incep/1_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_3/incep/1_reduce/conv EXECUTED layerType: Convolution realTime: 3133 cpu: 3133 execType: gemm_blas_FP32 conv4_3/incep/1_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_3/incep/2_0/conv EXECUTED layerType: Convolution realTime: 3953 cpu: 3953 execType: gemm_blas_FP32 conv4_3/incep/2_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_3/incep/2_1/conv EXECUTED layerType: Convolution realTime: 5355 cpu: 5355 execType: gemm_blas_FP32 conv4_3/incep/2_1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_3/incep/2_reduce/conv EXECUTED layerType: Convolution realTime: 1636 cpu: 1636 execType: gemm_blas_FP32 conv4_3/incep/2_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_3/out/conv EXECUTED layerType: Convolution realTime: 6681 cpu: 6681 execType: gemm_blas_FP32 conv4_4 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv4_4/incep EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv4_4/incep/0/conv EXECUTED layerType: Convolution realTime: 6987 cpu: 6987 execType: gemm_blas_FP32 conv4_4/incep/0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_4/incep/1_0/conv EXECUTED layerType: Convolution realTime: 24093 cpu: 24093 execType: gemm_blas_FP32 conv4_4/incep/1_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_4/incep/1_reduce/conv EXECUTED layerType: Convolution realTime: 3635 cpu: 3635 execType: gemm_blas_FP32 conv4_4/incep/1_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_4/incep/2_0/conv EXECUTED layerType: Convolution realTime: 3504 cpu: 3504 execType: gemm_blas_FP32 conv4_4/incep/2_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_4/incep/2_1/conv EXECUTED layerType: Convolution realTime: 14905 cpu: 14905 execType: gemm_blas_FP32 conv4_4/incep/2_1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_4/incep/2_reduce/conv EXECUTED layerType: Convolution realTime: 26684 cpu: 26684 execType: gemm_blas_FP32 conv4_4/incep/2_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv4_4/out/conv EXECUTED layerType: Convolution realTime: 10457 cpu: 10457 execType: gemm_blas_FP32 conv4_4/out/conv___concat EXECUTED layerType: Reorder realTime: 57357 cpu: 57357 execType: reorder_FP32 conv5_1 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv5_1/incep EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv5_1/incep/0/conv EXECUTED layerType: Convolution realTime: 2999 cpu: 2999 execType: gemm_blas_FP32 conv5_1/incep/0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_1/incep/1_0/conv EXECUTED layerType: Convolution realTime: 18939 cpu: 18939 execType: gemm_blas_FP32 conv5_1/incep/1_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_1/incep/1_reduce/conv EXECUTED layerType: Convolution realTime: 3152 cpu: 3152 execType: gemm_blas_FP32 conv5_1/incep/1_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_1/incep/2_0/conv EXECUTED layerType: Convolution realTime: 1067 cpu: 1067 execType: gemm_blas_FP32 conv5_1/incep/2_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_1/incep/2_1/conv EXECUTED layerType: Convolution realTime: 37750 cpu: 37750 execType: gemm_blas_FP32 conv5_1/incep/2_1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_1/incep/2_reduce/conv EXECUTED layerType: Convolution realTime: 1009 cpu: 1009 execType: gemm_blas_FP32 conv5_1/incep/2_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_1/incep/pool EXECUTED layerType: Pooling realTime: 7447 cpu: 7447 execType: ref_any_FP32 conv5_1/incep/poolproj/conv EXECUTED layerType: Convolution realTime: 2090 cpu: 2090 execType: gemm_blas_FP32 conv5_1/incep/poolproj/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_1/out/conv EXECUTED layerType: Convolution realTime: 11036 cpu: 11036 execType: gemm_blas_FP32 conv5_1/proj EXECUTED layerType: Convolution realTime: 18351 cpu: 18351 execType: gemm_blas_FP32 conv5_2 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv5_2/incep EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv5_2/incep/0/conv EXECUTED layerType: Convolution realTime: 1018 cpu: 1018 execType: gemm_blas_FP32 conv5_2/incep/0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_2/incep/1_0/conv EXECUTED layerType: Convolution realTime: 6264 cpu: 6264 execType: gemm_blas_FP32 conv5_2/incep/1_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_2/incep/1_reduce/conv EXECUTED layerType: Convolution realTime: 8474 cpu: 8474 execType: gemm_blas_FP32 conv5_2/incep/1_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_2/incep/2_0/conv EXECUTED layerType: Convolution realTime: 9413 cpu: 9413 execType: gemm_blas_FP32 conv5_2/incep/2_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_2/incep/2_1/conv EXECUTED layerType: Convolution realTime: 6611 cpu: 6611 execType: gemm_blas_FP32 conv5_2/incep/2_1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_2/incep/2_reduce/conv EXECUTED layerType: Convolution realTime: 678 cpu: 678 execType: gemm_blas_FP32 conv5_2/incep/2_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_2/out/conv EXECUTED layerType: Convolution realTime: 7590 cpu: 7590 execType: gemm_blas_FP32 conv5_3 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv5_3/incep EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 conv5_3/incep/0/conv EXECUTED layerType: Convolution realTime: 5322 cpu: 5322 execType: gemm_blas_FP32 conv5_3/incep/0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_3/incep/1_0/conv EXECUTED layerType: Convolution realTime: 6560 cpu: 6560 execType: gemm_blas_FP32 conv5_3/incep/1_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_3/incep/1_reduce/conv EXECUTED layerType: Convolution realTime: 1330 cpu: 1330 execType: gemm_blas_FP32 conv5_3/incep/1_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_3/incep/2_0/conv EXECUTED layerType: Convolution realTime: 5939 cpu: 5939 execType: gemm_blas_FP32 conv5_3/incep/2_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_3/incep/2_1/conv EXECUTED layerType: Convolution realTime: 2061 cpu: 2061 execType: gemm_blas_FP32 conv5_3/incep/2_1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_3/incep/2_reduce/conv EXECUTED layerType: Convolution realTime: 1578 cpu: 1578 execType: gemm_blas_FP32 conv5_3/incep/2_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_3/out/conv EXECUTED layerType: Convolution realTime: 7146 cpu: 7146 execType: gemm_blas_FP32 conv5_4 NOT_RUN layerType: Eltwise realTime: 0 cpu: 0 execType: undef conv5_4/incep EXECUTED layerType: Concat realTime: 2 cpu: 2 execType: unknown_FP32 conv5_4/incep/0/conv EXECUTED layerType: Convolution realTime: 6841 cpu: 6841 execType: gemm_blas_FP32 conv5_4/incep/0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_4/incep/1_0/conv EXECUTED layerType: Convolution realTime: 13535 cpu: 13535 execType: gemm_blas_FP32 conv5_4/incep/1_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_4/incep/1_reduce/conv EXECUTED layerType: Convolution realTime: 8847 cpu: 8847 execType: gemm_blas_FP32 conv5_4/incep/1_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_4/incep/2_0/conv EXECUTED layerType: Convolution realTime: 2026 cpu: 2026 execType: gemm_blas_FP32 conv5_4/incep/2_0/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_4/incep/2_1/conv EXECUTED layerType: Convolution realTime: 6721 cpu: 6721 execType: gemm_blas_FP32 conv5_4/incep/2_1/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_4/incep/2_reduce/conv EXECUTED layerType: Convolution realTime: 19120 cpu: 19120 execType: gemm_blas_FP32 conv5_4/incep/2_reduce/relu NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef conv5_4/out/conv EXECUTED layerType: Convolution realTime: 16855 cpu: 16855 execType: gemm_blas_FP32 convf_2 EXECUTED layerType: Convolution realTime: 13172 cpu: 13172 execType: gemm_blas_FP32 convf_rpn EXECUTED layerType: Convolution realTime: 12927 cpu: 12927 execType: gemm_blas_FP32 data_U8_FP32_Add_ EXECUTED layerType: Reorder realTime: 1379 cpu: 1379 execType: reorder_I8 detection_out EXECUTED layerType: DetectionOutput realTime: 238 cpu: 238 execType: unknown_FP32 detector/bbox/ave_pred EXECUTED layerType: Pooling realTime: 104 cpu: 104 execType: ref_any_FP32 detector/bbox/bbox EXECUTED layerType: Convolution realTime: 12827 cpu: 12827 execType: gemm_blas_FP32 detector/bbox/ps_roi_pooling EXECUTED layerType: PSROIPooling realTime: 3511 cpu: 3511 execType: unknown_FP32 detector/cls/ave_pred EXECUTED layerType: Pooling realTime: 45 cpu: 45 execType: ref_any_FP32 detector/cls/cls EXECUTED layerType: Convolution realTime: 3551 cpu: 3551 execType: gemm_blas_FP32 detector/cls/ps_roi_pooling EXECUTED layerType: PSROIPooling realTime: 791 cpu: 791 execType: unknown_FP32 downsample EXECUTED layerType: Pooling realTime: 15438 cpu: 15438 execType: ref_any_FP32 im_info EXECUTED layerType: Input realTime: 1 cpu: 1 execType: unknown out_detection_out NOT_RUN layerType: Output realTime: 0 cpu: 0 execType: unknown_FP32 pool1 EXECUTED layerType: Pooling realTime: 58854 cpu: 58854 execType: ref_any_FP32 proposal EXECUTED layerType: Proposal realTime: 19166 cpu: 19166 execType: unknown_FP32 reluf_2 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef reluf_rpn NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef rois_reshape EXECUTED layerType: Reshape realTime: 1 cpu: 1 execType: unknown_FP32 rpn_bbox_pred EXECUTED layerType: Convolution realTime: 3222 cpu: 3222 execType: gemm_blas_FP32 rpn_cls_prob EXECUTED layerType: SoftMax realTime: 9721 cpu: 9721 execType: ref_any_FP32 rpn_cls_prob_reshape NOT_RUN layerType: Reshape realTime: 0 cpu: 0 execType: unknown_FP32 rpn_cls_score EXECUTED layerType: Convolution realTime: 588 cpu: 588 execType: gemm_blas_FP32 rpn_cls_score_reshape EXECUTED layerType: Reshape realTime: 1 cpu: 1 execType: unknown_FP32 rpn_conv1 EXECUTED layerType: Convolution realTime: 9789 cpu: 9789 execType: gemm_blas_FP32 rpn_relu1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef upsample EXECUTED layerType: Deconvolution realTime: 16680 cpu: 16680 execType: gemm_blas_FP32 Total time: 1770652 microseconds [ INFO ] Execution successful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Matt,
Could be an MKLDNN issue (either a bug or a non-supported / implemented feature). We have the source code so I think the next step is to see if we can pass the unit tests on your system. I have good test results on some of my new systems but failing a few unit tests on older systems. That would help us further assess the situation if you really want to invest on getting this to run on an older unsupported system.
git clone https://github.com/opencv/dldt.git cd dldt/inference-engine/ git submodule init git submodule update --recursive mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release .. make -j13 ../bin/intel64/Release/InferenceEngineUnitTests
I can pass all unit tests on a supported system
[----------] Global test environment tear-down [==========] 1662 tests from 145 test cases ran. (42707 ms total) [ PASSED ] 1662 tests.
I am failing a few tests on older systems and some of the failed tests are relevant to SSD as in your case here:
[ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/11, where GetParam() = 104-byte object . . .
What is your result?
Cheers,
nikos
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Here's the result of the tests:
../bin/intel64/Release/InferenceEngineUnitTests Running main() from gtest_main.cc [==========] Running 1662 tests from 145 test cases. [----------] Global test environment set-up. [----------] 8 tests from GraphCopyTests [ RUN ] GraphCopyTests.copyNetworkPreserveBasicParams [ OK ] GraphCopyTests.copyNetworkPreserveBasicParams (1 ms) [ RUN ] GraphCopyTests.canPreserveBatchWhenCopyNetwork [ OK ] GraphCopyTests.canPreserveBatchWhenCopyNetwork (0 ms) [ RUN ] GraphCopyTests.canPreserveInputs [ OK ] GraphCopyTests.canPreserveInputs (0 ms) [ RUN ] GraphCopyTests.canPreserveOutputs [ OK ] GraphCopyTests.canPreserveOutputs (0 ms) [ RUN ] GraphCopyTests.canPreserveAttributes [ OK ] GraphCopyTests.canPreserveAttributes (0 ms) [ RUN ] GraphCopyTests.canPreserveGetData [ OK ] GraphCopyTests.canPreserveGetData (1 ms) [ RUN ] GraphCopyTests.canPreserveTopology [ OK ] GraphCopyTests.canPreserveTopology (0 ms) [ RUN ] GraphCopyTests.canQuantizeTopology [ OK ] GraphCopyTests.canQuantizeTopology (0 ms) [----------] 8 tests from GraphCopyTests (2 ms total) [----------] 3 tests from CNNSpecificGraphCopyTests [ RUN ] CNNSpecificGraphCopyTests.copyNetworkWithClampLayer [ OK ] CNNSpecificGraphCopyTests.copyNetworkWithClampLayer (0 ms) [ RUN ] CNNSpecificGraphCopyTests.copyPreprocess [ OK ] CNNSpecificGraphCopyTests.copyPreprocess (0 ms) [ RUN ] CNNSpecificGraphCopyTests.copyNetworkWithDeconvolution [ OK ] CNNSpecificGraphCopyTests.copyNetworkWithDeconvolution (0 ms) [----------] 3 tests from CNNSpecificGraphCopyTests (1 ms total) [----------] 33 tests from GraphToolsTest [ RUN ] GraphToolsTest.canRunSimpleDFS [ OK ] GraphToolsTest.canRunSimpleDFS (0 ms) [ RUN ] GraphToolsTest.canRunCycleDFS [ OK ] GraphToolsTest.canRunCycleDFS (0 ms) [ RUN ] GraphToolsTest.canRunBFS [ OK ] GraphToolsTest.canRunBFS (0 ms) [ RUN ] GraphToolsTest.canRunNBFS [ OK ] GraphToolsTest.canRunNBFS (0 ms) [ RUN ] GraphToolsTest.canSortTopologically [ OK ] GraphToolsTest.canSortTopologically (0 ms) [ RUN ] GraphToolsTest.canDetectLoopsWhileSortTing [ OK ] GraphToolsTest.canDetectLoopsWhileSortTing (0 ms) [ RUN ] GraphToolsTest.canSortIfInputsPointsToLayerWithMultiInputs [ OK ] GraphToolsTest.canSortIfInputsPointsToLayerWithMultiInputs (0 ms) [ RUN ] GraphToolsTest.canGetAllMemoryInputsLayersFromStandardInputs [ OK ] GraphToolsTest.canGetAllMemoryInputsLayersFromStandardInputs (1 ms) [ RUN ] GraphToolsTest.canGetSingleInputLayer [ OK ] GraphToolsTest.canGetSingleInputLayer (0 ms) [ RUN ] GraphToolsTest.canIterateOverCNNNetwork [ OK ] GraphToolsTest.canIterateOverCNNNetwork (0 ms) [ RUN ] GraphToolsTest.canIterateOverCNNNetworkWithCycle [ OK ] GraphToolsTest.canIterateOverCNNNetworkWithCycle (0 ms) [ RUN ] GraphToolsTest.canCompareCNNNetworkIterators [ OK ] GraphToolsTest.canCompareCNNNetworkIterators (0 ms) [ RUN ] GraphToolsTest.canIterateOverEmptyNetwork [ OK ] GraphToolsTest.canIterateOverEmptyNetwork (0 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersThrowsForNullPointers [ OK ] GraphToolsTest.CNNNetSwapLayersThrowsForNullPointers (0 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersSwapWithItself [ OK ] GraphToolsTest.CNNNetSwapLayersSwapWithItself (0 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersSimpleCase_1 [ OK ] GraphToolsTest.CNNNetSwapLayersSimpleCase_1 (0 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersSimpleCase_2 [ OK ] GraphToolsTest.CNNNetSwapLayersSimpleCase_2 (1 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersSimpleCase_3 [ OK ] GraphToolsTest.CNNNetSwapLayersSimpleCase_3 (0 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersDoesSwapDims [ OK ] GraphToolsTest.CNNNetSwapLayersDoesSwapDims (0 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersSimpleCase_4 [ OK ] GraphToolsTest.CNNNetSwapLayersSimpleCase_4 (0 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersSplit [ OK ] GraphToolsTest.CNNNetSwapLayersSplit (0 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersSplit_2 [ OK ] GraphToolsTest.CNNNetSwapLayersSplit_2 (1 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersSplit_3 [ OK ] GraphToolsTest.CNNNetSwapLayersSplit_3 (0 ms) [ RUN ] GraphToolsTest.CNNNetSwapLayersSplit_4 [ OK ] GraphToolsTest.CNNNetSwapLayersSplit_4 (0 ms) [ RUN ] GraphToolsTest.CNNNetworkInsertLayerThrowsForNullPointers [ OK ] GraphToolsTest.CNNNetworkInsertLayerThrowsForNullPointers (0 ms) [ RUN ] GraphToolsTest.CanNotInsertLayerIntoNonAdjiacendLayers [ OK ] GraphToolsTest.CanNotInsertLayerIntoNonAdjiacendLayers (0 ms) [ RUN ] GraphToolsTest.CNNNetworkInsertLayerSimpleCase [ OK ] GraphToolsTest.CNNNetworkInsertLayerSimpleCase (1 ms) [ RUN ] GraphToolsTest.CNNNetworkInsertLayerSimpleCaseWithMultipleOutputs [ OK ] GraphToolsTest.CNNNetworkInsertLayerSimpleCaseWithMultipleOutputs (0 ms) [ RUN ] GraphToolsTest.CNNNetworkInsertLayerSimpleCaseWithMultipleInputs [ OK ] GraphToolsTest.CNNNetworkInsertLayerSimpleCaseWithMultipleInputs (0 ms) [ RUN ] GraphToolsTest.CNNNetworkInsertAfterLastLayer [ OK ] GraphToolsTest.CNNNetworkInsertAfterLastLayer (0 ms) [ RUN ] GraphToolsTest.CNNNetworkInsertAfterAll [ OK ] GraphToolsTest.CNNNetworkInsertAfterAll (0 ms) [ RUN ] GraphToolsTest.CNNNetworkInsertAllAfterSplit [ OK ] GraphToolsTest.CNNNetworkInsertAllAfterSplit (1 ms) [ RUN ] GraphToolsTest.CNNNetworkInsert1AfterSplit [ OK ] GraphToolsTest.CNNNetworkInsert1AfterSplit (0 ms) [----------] 33 tests from GraphToolsTest (5 ms total) [----------] 4 tests from PreProcessTests [ RUN ] PreProcessTests.throwsOnSettingNullMeanImage [ OK ] PreProcessTests.throwsOnSettingNullMeanImage (0 ms) [ RUN ] PreProcessTests.throwsOnSetting2DMeanImage [ OK ] PreProcessTests.throwsOnSetting2DMeanImage (0 ms) [ RUN ] PreProcessTests.throwsOnSettingWrongSizeMeanImage [ OK ] PreProcessTests.throwsOnSettingWrongSizeMeanImage (0 ms) [ RUN ] PreProcessTests.noThrowWithCorrectSizeMeanImage [ OK ] PreProcessTests.noThrowWithCorrectSizeMeanImage (0 ms) [----------] 4 tests from PreProcessTests (0 ms total) [----------] 3 tests from PreallocatorTests [ RUN ] PreallocatorTests.canAccessPreAllocatedMemory [ OK ] PreallocatorTests.canAccessPreAllocatedMemory (0 ms) [ RUN ] PreallocatorTests.canNotAllocateMoreMemory [ OK ] PreallocatorTests.canNotAllocateMoreMemory (0 ms) [ RUN ] PreallocatorTests.canNotLockWrongHandle [ OK ] PreallocatorTests.canNotLockWrongHandle (0 ms) [----------] 3 tests from PreallocatorTests (0 ms total) [----------] 7 tests from ResponseBufferTests [ RUN ] ResponseBufferTests.canCreateResponseMessage [ OK ] ResponseBufferTests.canCreateResponseMessage (0 ms) [ RUN ] ResponseBufferTests.canReportError [ OK ] ResponseBufferTests.canReportError (0 ms) [ RUN ] ResponseBufferTests.savePreviosMessage [ OK ] ResponseBufferTests.savePreviosMessage (0 ms) [ RUN ] ResponseBufferTests.canHandleBigMessage [ OK ] ResponseBufferTests.canHandleBigMessage (0 ms) [ RUN ] ResponseBufferTests.canHandleNotNullTerminatedInput [ OK ] ResponseBufferTests.canHandleNotNullTerminatedInput (0 ms) [ RUN ] ResponseBufferTests.canHandlePredefined [ OK ] ResponseBufferTests.canHandlePredefined (0 ms) [ RUN ] ResponseBufferTests.canHandleNotNullTerminatedPredefined [ OK ] ResponseBufferTests.canHandleNotNullTerminatedPredefined (0 ms) [----------] 7 tests from ResponseBufferTests (0 ms total) [----------] 18 tests from ExceptionTests [ RUN ] ExceptionTests.canThrowUsingMacro [ OK ] ExceptionTests.canThrowUsingMacro (0 ms) [ RUN ] ExceptionTests.canThrowScoringException [ OK ] ExceptionTests.canThrowScoringException (0 ms) [ RUN ] ExceptionTests.canDefineExceptionContent [ OK ] ExceptionTests.canDefineExceptionContent (0 ms) [ RUN ] ExceptionTests.exceptionShowsCorrectMessage [ OK ] ExceptionTests.exceptionShowsCorrectMessage (0 ms) [ RUN ] ExceptionTests.exceptionCanBeCoughtAsStandard [ OK ] ExceptionTests.exceptionCanBeCoughtAsStandard (0 ms) [ RUN ] ExceptionTests.canThrowStatusCode [ OK ] ExceptionTests.canThrowStatusCode (0 ms) [ RUN ] ExceptionTests.handleOnlyFirstStatus [ OK ] ExceptionTests.handleOnlyFirstStatus (0 ms) [ RUN ] ExceptionTests.ignoreNotStatusCodeEnumAfterManip [ OK ] ExceptionTests.ignoreNotStatusCodeEnumAfterManip (0 ms) [ RUN ] ExceptionTests.canUseManipulatorStandalone [ OK ] ExceptionTests.canUseManipulatorStandalone (0 ms) [ RUN ] ExceptionTests.statusCodeNotAppearInMessageAfterCatch [ OK ] ExceptionTests.statusCodeNotAppearInMessageAfterCatch (0 ms) [ RUN ] ExceptionTests.statusCodeAppearInMessageAfterCatch [ OK ] ExceptionTests.statusCodeAppearInMessageAfterCatch (0 ms) [ RUN ] ExceptionTests.canConvertToStatus [ OK ] ExceptionTests.canConvertToStatus (0 ms) [ RUN ] ExceptionTests.canConvertStatusToException [ OK ] ExceptionTests.canConvertStatusToException (0 ms) [ RUN ] ExceptionTests.throwAfterConvertStatusToClassContainMessage [ OK ] ExceptionTests.throwAfterConvertStatusToClassContainMessage (0 ms) [ RUN ] ExceptionTests.exceptionWithAssertThrowsNothingIfTrue [ OK ] ExceptionTests.exceptionWithAssertThrowsNothingIfTrue (0 ms) [ RUN ] ExceptionTests.exceptionWithAssertThrowsNothingIfExpressionTrue [ OK ] ExceptionTests.exceptionWithAssertThrowsNothingIfExpressionTrue (0 ms) [ RUN ] ExceptionTests.exceptionWithAssertThrowsExceptionIfFalse [ OK ] ExceptionTests.exceptionWithAssertThrowsExceptionIfFalse (0 ms) [ RUN ] ExceptionTests.exceptionWithAssertThrowsExceptionIfFalseExpession [ OK ] ExceptionTests.exceptionWithAssertThrowsExceptionIfFalseExpession (0 ms) [----------] 18 tests from ExceptionTests (1 ms total) [----------] 6 tests from PluginTest [ RUN ] PluginTest.canCreatePlugin [ OK ] PluginTest.canCreatePlugin (0 ms) [ RUN ] PluginTest.canCreatePluginUsingSmartPtr [ OK ] PluginTest.canCreatePluginUsingSmartPtr (0 ms) [ RUN ] PluginTest.shouldThrowExceptionIfPluginNotExist [ OK ] PluginTest.shouldThrowExceptionIfPluginNotExist (1 ms) [ RUN ] PluginTest.canCallErrorHandlerIfNecessary [ OK ] PluginTest.canCallErrorHandlerIfNecessary (0 ms) [ RUN ] PluginTest.canForwardPluginEnginePtr [ OK ] PluginTest.canForwardPluginEnginePtr (0 ms) [ RUN ] PluginTest.canSetConfiguration [ OK ] PluginTest.canSetConfiguration (0 ms) [----------] 6 tests from PluginTest (1 ms total) [----------] 8 tests from PrecisionTests [ RUN ] PrecisionTests.ShowsCorrectPrecisionNames [ OK ] PrecisionTests.ShowsCorrectPrecisionNames (0 ms) [ RUN ] PrecisionTests.sizeIsCorrect [ OK ] PrecisionTests.sizeIsCorrect (0 ms) [ RUN ] PrecisionTests.is_float [ OK ] PrecisionTests.is_float (0 ms) [ RUN ] PrecisionTests.constructFromSTR [ OK ] PrecisionTests.constructFromSTR (0 ms) [ RUN ] PrecisionTests.canCompareCustomPrecisions [ OK ] PrecisionTests.canCompareCustomPrecisions (0 ms) [ RUN ] PrecisionTests.canUseInIfs [ OK ] PrecisionTests.canUseInIfs (0 ms) [ RUN ] PrecisionTests.canCreateFromStruct [ OK ] PrecisionTests.canCreateFromStruct (0 ms) [ RUN ] PrecisionTests.canCreateMoreThan255bitsPrecisions [ OK ] PrecisionTests.canCreateMoreThan255bitsPrecisions (0 ms) [----------] 8 tests from PrecisionTests (0 ms total) [----------] 1 test from SoPointerTests [ RUN ] SoPointerTests.assignObjThenLoader [ OK ] SoPointerTests.assignObjThenLoader (0 ms) [----------] 1 test from SoPointerTests (0 ms total) [----------] 12 tests from BlobProxyTests [ RUN ] BlobProxyTests.convertByteBlobToFloat [ OK ] BlobProxyTests.convertByteBlobToFloat (0 ms) [ RUN ] BlobProxyTests.shouldNotDeAllocate [ OK ] BlobProxyTests.shouldNotDeAllocate (0 ms) [ RUN ] BlobProxyTests.canAccessProxyBlobUsingBaseMethod [ OK ] BlobProxyTests.canAccessProxyBlobUsingBaseMethod (1 ms) [ RUN ] BlobProxyTests.canAccessProxyBlobUsingHelpers [ OK ] BlobProxyTests.canAccessProxyBlobUsingHelpers (0 ms) [ RUN ] BlobProxyTests.canCreateProxyBlobFromDifferentBaseBlobType [ OK ] BlobProxyTests.canCreateProxyBlobFromDifferentBaseBlobType (0 ms) [ RUN ] BlobProxyTests.canNotCreateBlobWithOffsetOfSizeOutOfOriginal [ OK ] BlobProxyTests.canNotCreateBlobWithOffsetOfSizeOutOfOriginal (0 ms) [ RUN ] BlobProxyTests.canAccessBothArraysAfterProxying [ OK ] BlobProxyTests.canAccessBothArraysAfterProxying (0 ms) [ RUN ] BlobProxyTests.convertTwoByteBlobToFloat [ OK ] BlobProxyTests.convertTwoByteBlobToFloat (0 ms) [ RUN ] BlobProxyTests.throwsIfSmallProxyObjectSize [ OK ] BlobProxyTests.throwsIfSmallProxyObjectSize (0 ms) [ RUN ] BlobProxyTests.canReturnConstantData [ OK ] BlobProxyTests.canReturnConstantData (0 ms) [ RUN ] BlobProxyTests.canIterateOverData [ OK ] BlobProxyTests.canIterateOverData (0 ms) [ RUN ] BlobProxyTests.canIterateOverReadOnly [ OK ] BlobProxyTests.canIterateOverReadOnly (0 ms) [----------] 12 tests from BlobProxyTests (1 ms total) [----------] 14 tests from DataTests [ RUN ] DataTests.canSetEmptyDimsForDataDefault [ OK ] DataTests.canSetEmptyDimsForDataDefault (0 ms) [ RUN ] DataTests.canSetEmptyDimsForDataBlocked [ OK ] DataTests.canSetEmptyDimsForDataBlocked (0 ms) [ RUN ] DataTests.canSetNotEmptyDimsForDataBlocked [ OK ] DataTests.canSetNotEmptyDimsForDataBlocked (0 ms) [ RUN ] DataTests.canSetNotEmptyDimsForDataNCHW [ OK ] DataTests.canSetNotEmptyDimsForDataNCHW (0 ms) [ RUN ] DataTests.canSetEmptyDimsForTensorDescNCHW [ OK ] DataTests.canSetEmptyDimsForTensorDescNCHW (0 ms) [ RUN ] DataTests.canSetEmptyDimsForTensorDescBlocked [ OK ] DataTests.canSetEmptyDimsForTensorDescBlocked (0 ms) [ RUN ] DataTests.canSetNotEmptyDimsForTensorDescBlocked [ OK ] DataTests.canSetNotEmptyDimsForTensorDescBlocked (0 ms) [ RUN ] DataTests.canSetEmptyDimsForBlockingDescOrder [ OK ] DataTests.canSetEmptyDimsForBlockingDescOrder (0 ms) [ RUN ] DataTests.throwOnFillDescByEmptyDimsForBlockingDesc [ OK ] DataTests.throwOnFillDescByEmptyDimsForBlockingDesc (0 ms) [ RUN ] DataTests.throwOnSetEmptyDimsForBlockingDescBlocked [ OK ] DataTests.throwOnSetEmptyDimsForBlockingDescBlocked (0 ms) [ RUN ] DataTests.throwOnSetEmptyDimsForBlockingDescNCHW [ OK ] DataTests.throwOnSetEmptyDimsForBlockingDescNCHW (0 ms) [ RUN ] DataTests.canSetNotEmptyDimsForBlockingDescBlocked [ OK ] DataTests.canSetNotEmptyDimsForBlockingDescBlocked (0 ms) [ RUN ] DataTests.canSetNotEmptyDimsForBlockingDescNCHW [ OK ] DataTests.canSetNotEmptyDimsForBlockingDescNCHW (0 ms) [ RUN ] DataTests.setPrecision [ OK ] DataTests.setPrecision (0 ms) [----------] 14 tests from DataTests (0 ms total) [----------] 2 tests from SystemAllocatorTests [ RUN ] SystemAllocatorTests.canAllocate [ OK ] SystemAllocatorTests.canAllocate (0 ms) [ RUN ] SystemAllocatorTests.canLockAllocatedMemory [ OK ] SystemAllocatorTests.canLockAllocatedMemory (0 ms) [----------] 2 tests from SystemAllocatorTests (0 ms total) [----------] 5 tests from CaselessTests [ RUN ] CaselessTests.emptyAreEqual [ OK ] CaselessTests.emptyAreEqual (0 ms) [ RUN ] CaselessTests.canIgnoreCase [ OK ] CaselessTests.canIgnoreCase (0 ms) [ RUN ] CaselessTests.emptyIsNotEqualNotEmpty [ OK ] CaselessTests.emptyIsNotEqualNotEmpty (0 ms) [ RUN ] CaselessTests.canFindCaslessInMap [ OK ] CaselessTests.canFindCaslessInMap (0 ms) [ RUN ] CaselessTests.canFindCaslessInUnordered [ OK ] CaselessTests.canFindCaslessInUnordered (0 ms) [----------] 5 tests from CaselessTests (0 ms total) [----------] 6 tests from TensorDescTests [ RUN ] TensorDescTests.CreateBlobWithIncorrectLayout [ OK ] TensorDescTests.CreateBlobWithIncorrectLayout (0 ms) [ RUN ] TensorDescTests.CreateEmptyBlob [ OK ] TensorDescTests.CreateEmptyBlob (0 ms) [ RUN ] TensorDescTests.CreateBlockedBlobNCHW [ OK ] TensorDescTests.CreateBlockedBlobNCHW (0 ms) [ RUN ] TensorDescTests.CreateBlockedBlobNCDHW [ OK ] TensorDescTests.CreateBlockedBlobNCDHW (0 ms) [ RUN ] TensorDescTests.CompareNHWCandNCHWLayouts [ OK ] TensorDescTests.CompareNHWCandNCHWLayouts (0 ms) [ RUN ] TensorDescTests.CompareNDHWCandNCDHWLayouts [ OK ] TensorDescTests.CompareNDHWCandNCDHWLayouts (0 ms) [----------] 6 tests from TensorDescTests (0 ms total) [----------] 15 tests from UtilTests [ RUN ] UtilTests.contains [ OK ] UtilTests.contains (0 ms) [ RUN ] UtilTests.groupSubraphsEmpty [ OK ] UtilTests.groupSubraphsEmpty (0 ms) [ RUN ] UtilTests.groupSubraphsNoSplit [ OK ] UtilTests.groupSubraphsNoSplit (1 ms) [ RUN ] UtilTests.groupSubraphsAlwaysSplit [ OK ] UtilTests.groupSubraphsAlwaysSplit (0 ms) [ RUN ] UtilTests.groupSubraphsUnconnectedSubgraphs [ OK ] UtilTests.groupSubraphsUnconnectedSubgraphs (0 ms) [ RUN ] UtilTests.groupSubraphsLinear [ OK ] UtilTests.groupSubraphsLinear (0 ms) [ RUN ] UtilTests.groupSubraphsDeadBranch [ OK ] UtilTests.groupSubraphsDeadBranch (0 ms) [ RUN ] UtilTests.cloneData [ OK ] UtilTests.cloneData (0 ms) [ RUN ] UtilTests.cloneLayers [ OK ] UtilTests.cloneLayers (0 ms) [ RUN ] UtilTests.cloneNet [ OK ] UtilTests.cloneNet (0 ms) [ RUN ] UtilTests.cloneNet_input [ OK ] UtilTests.cloneNet_input (0 ms) [ RUN ] UtilTests.cloneNet_const [ OK ] UtilTests.cloneNet_const (0 ms) [ RUN ] UtilTests.getRootDataObjects [ OK ] UtilTests.getRootDataObjects (1 ms) [ RUN ] UtilTests.networkComplexity [ OK ] UtilTests.networkComplexity (2 ms) [ RUN ] UtilTests.replaceLayerWithNewLayer [ OK ] UtilTests.replaceLayerWithNewLayer (0 ms) [----------] 15 tests from UtilTests (4 ms total) [----------] 3 tests from RangeIteratorTests [ RUN ] RangeIteratorTests.canCompareSameStringsInsensitive [ OK ] RangeIteratorTests.canCompareSameStringsInsensitive (0 ms) [ RUN ] RangeIteratorTests.canCompareNotSameStringsInsensitive [ OK ] RangeIteratorTests.canCompareNotSameStringsInsensitive (0 ms) [ RUN ] RangeIteratorTests.cannotDereferenceEndIterator [ OK ] RangeIteratorTests.cannotDereferenceEndIterator (0 ms) [----------] 3 tests from RangeIteratorTests (0 ms total) [----------] 5 tests from SharedObjectLoaderTests [ RUN ] SharedObjectLoaderTests.canLoadExistedPlugin MEM_USAGE=56728KB [ OK ] SharedObjectLoaderTests.canLoadExistedPlugin (0 ms) [ RUN ] SharedObjectLoaderTests.loaderThrowsIfNoPlugin MEM_USAGE=56728KB [ OK ] SharedObjectLoaderTests.loaderThrowsIfNoPlugin (1 ms) [ RUN ] SharedObjectLoaderTests.canFindExistedMethod MEM_USAGE=56728KB [ OK ] SharedObjectLoaderTests.canFindExistedMethod (0 ms) [ RUN ] SharedObjectLoaderTests.throwIfMethodNofFoundInLibrary MEM_USAGE=56728KB [ OK ] SharedObjectLoaderTests.throwIfMethodNofFoundInLibrary (0 ms) [ RUN ] SharedObjectLoaderTests.canCallExistedMethod MEM_USAGE=56728KB [ OK ] SharedObjectLoaderTests.canCallExistedMethod (0 ms) [----------] 5 tests from SharedObjectLoaderTests (1 ms total) [----------] 30 tests from LayersTests [ RUN ] LayersTests.canCreateLayersWithDefaultParams [ OK ] LayersTests.canCreateLayersWithDefaultParams (0 ms) [ RUN ] LayersTests.throwsOnExpiredDataPtr [ OK ] LayersTests.throwsOnExpiredDataPtr (0 ms) [ RUN ] LayersTests.copyConvolution [ OK ] LayersTests.copyConvolution (0 ms) [ RUN ] LayersTests.copyDeconvolution [ OK ] LayersTests.copyDeconvolution (0 ms) [ RUN ] LayersTests.copyPooling [ OK ] LayersTests.copyPooling (0 ms) [ RUN ] LayersTests.canNotInserOutOfBounds [ OK ] LayersTests.canNotInserOutOfBounds (0 ms) [ RUN ] LayersTests.canInsertIntoExistedAxis [ OK ] LayersTests.canInsertIntoExistedAxis (1 ms) [ RUN ] LayersTests.canRemoveProperty [ OK ] LayersTests.canRemoveProperty (0 ms) [ RUN ] LayersTests.cannotRemovePropertyOutOfRange [ OK ] LayersTests.cannotRemovePropertyOutOfRange (0 ms) [ RUN ] LayersTests.convIRv2BackwardCompatibility [ OK ] LayersTests.convIRv2BackwardCompatibility (0 ms) [ RUN ] LayersTests.deconvIRv2BackwardCompatibility [ OK ] LayersTests.deconvIRv2BackwardCompatibility (0 ms) [ RUN ] LayersTests.poolIRv2BackwardCompatibility [ OK ] LayersTests.poolIRv2BackwardCompatibility (0 ms) [ RUN ] LayersTests.canGetPadBeginForConvolution [ OK ] LayersTests.canGetPadBeginForConvolution (0 ms) [ RUN ] LayersTests.canGetPadEndForConvolution [ OK ] LayersTests.canGetPadEndForConvolution (0 ms) [ RUN ] LayersTests.canGetPad3DBeginForConvolution [ OK ] LayersTests.canGetPad3DBeginForConvolution (0 ms) [ RUN ] LayersTests.canGetPad3DEndForConvolution [ OK ] LayersTests.canGetPad3DEndForConvolution (0 ms) [ RUN ] LayersTests.returnDefaultPadForEmptyConvolution [ OK ] LayersTests.returnDefaultPadForEmptyConvolution (0 ms) [ RUN ] LayersTests.returnEmptyPadForValidPadConvolution [ OK ] LayersTests.returnEmptyPadForValidPadConvolution (0 ms) [ RUN ] LayersTests.throwOnSamePadForEmptyConvolution [ OK ] LayersTests.throwOnSamePadForEmptyConvolution (0 ms) [ RUN ] LayersTests.throwOnInvalidDimsSamePadForConvolution [ OK ] LayersTests.throwOnInvalidDimsSamePadForConvolution (0 ms) [ RUN ] LayersTests.throwOn2DSamePadForConvolution [ OK ] LayersTests.throwOn2DSamePadForConvolution (0 ms) [ RUN ] LayersTests.throwWithNotEnoughParamsSamePadForConvolution [ OK ] LayersTests.throwWithNotEnoughParamsSamePadForConvolution (0 ms) [ RUN ] LayersTests.canGetSamePadForConvolutionEvenInput [ OK ] LayersTests.canGetSamePadForConvolutionEvenInput (0 ms) [ RUN ] LayersTests.canGetSamePadForConvolutionEvenInput3D [ OK ] LayersTests.canGetSamePadForConvolutionEvenInput3D (0 ms) [ RUN ] LayersTests.canGetSamePadForConvolutionOddInput [ OK ] LayersTests.canGetSamePadForConvolutionOddInput (0 ms) [ RUN ] LayersTests.canGetSamePadForDeConvolutionEvenInput [ OK ] LayersTests.canGetSamePadForDeConvolutionEvenInput (0 ms) [ RUN ] LayersTests.canGetSamePadForDeConvolutionOddInput [ OK ] LayersTests.canGetSamePadForDeConvolutionOddInput (0 ms) [ RUN ] LayersTests.canGetSamePadForPoolingEvenInput [ OK ] LayersTests.canGetSamePadForPoolingEvenInput (0 ms) [ RUN ] LayersTests.canGetSamePadForPoolingOddInput [ OK ] LayersTests.canGetSamePadForPoolingOddInput (0 ms) [ RUN ] LayersTests.cannotGetPadForUnsupportedLayer [ OK ] LayersTests.cannotGetPadForUnsupportedLayer (0 ms) [----------] 30 tests from LayersTests (1 ms total) [----------] 3 tests from LockedMemoryTest [ RUN ] LockedMemoryTest.canUnlockMemoryAfterUsage MEM_USAGE=56728KB [ OK ] LockedMemoryTest.canUnlockMemoryAfterUsage (0 ms) [ RUN ] LockedMemoryTest.canReadFromLockedMemory MEM_USAGE=56728KB [ OK ] LockedMemoryTest.canReadFromLockedMemory (0 ms) [ RUN ] LockedMemoryTest.canWriteToLockedMemory MEM_USAGE=56728KB [ OK ] LockedMemoryTest.canWriteToLockedMemory (0 ms) [----------] 3 tests from LockedMemoryTest (0 ms total) [----------] 30 tests from BlobTests [ RUN ] BlobTests.canCreateBlobUsingDefaultAllocator [ OK ] BlobTests.canCreateBlobUsingDefaultAllocator (1 ms) [ RUN ] BlobTests.secondAllocateWontMemLeak [ OK ] BlobTests.secondAllocateWontMemLeak (0 ms) [ RUN ] BlobTests.doesNotUnlockIfLockFailed [ OK ] BlobTests.doesNotUnlockIfLockFailed (0 ms) [ RUN ] BlobTests.canAccessDataUsingAllocator [ OK ] BlobTests.canAccessDataUsingAllocator (0 ms) [ RUN ] BlobTests.canLockReadOnlyDataForRead [ OK ] BlobTests.canLockReadOnlyDataForRead (0 ms) [ RUN ] BlobTests.canAccessDataUsingBufferBaseMethod [ OK ] BlobTests.canAccessDataUsingBufferBaseMethod (0 ms) [ RUN ] BlobTests.canMoveFromTBlobWithSameType [ OK ] BlobTests.canMoveFromTBlobWithSameType (0 ms) [ RUN ] BlobTests.saveDimsAndSizeAfterMove [ OK ] BlobTests.saveDimsAndSizeAfterMove (0 ms) [ RUN ] BlobTests.canSetAfterFree [ OK ] BlobTests.canSetAfterFree (0 ms) [ RUN ] BlobTests.canSetAfterFreeNonAllocated [ OK ] BlobTests.canSetAfterFreeNonAllocated (0 ms) [ RUN ] BlobTests.canCopyBlob [ OK ] BlobTests.canCopyBlob (0 ms) [ RUN ] BlobTests.canCompareToNullPtrWithoutDereferencing [ OK ] BlobTests.canCompareToNullPtrWithoutDereferencing (0 ms) [ RUN ] BlobTests.canCreateBlob [ OK ] BlobTests.canCreateBlob (0 ms) [ RUN ] BlobTests.canAllocateBlob [ OK ] BlobTests.canAllocateBlob (0 ms) [ RUN ] BlobTests.canDeallocateBlob [ OK ] BlobTests.canDeallocateBlob (0 ms) [ RUN ] BlobTests.canCreateBlobWithoutDims [ OK ] BlobTests.canCreateBlobWithoutDims (0 ms) [ RUN ] BlobTests.canSetToBlobWithoutDims [ OK ] BlobTests.canSetToBlobWithoutDims (0 ms) [ RUN ] BlobTests.canReadDataFromConstBlob [ OK ] BlobTests.canReadDataFromConstBlob (0 ms) [ RUN ] BlobTests.canMakeSharedBlob [ OK ] BlobTests.canMakeSharedBlob (0 ms) [ RUN ] BlobTests.canUseBlobInMoveSemantics [ OK ] BlobTests.canUseBlobInMoveSemantics (0 ms) [ RUN ] BlobTests.canCreateBlobOnExistedMemory [ OK ] BlobTests.canCreateBlobOnExistedMemory (0 ms) [ RUN ] BlobTests.preAllocatorWillnotWorkIfPtrNotAlocated [ OK ] BlobTests.preAllocatorWillnotWorkIfPtrNotAlocated (0 ms) [ RUN ] BlobTests.cannotIncreaseSizeOfPreallocated [ OK ] BlobTests.cannotIncreaseSizeOfPreallocated (0 ms) [ RUN ] BlobTests.canAcceptpreallocatedSize [ OK ] BlobTests.canAcceptpreallocatedSize (0 ms) [ RUN ] BlobTests.ifBlobCannotReleaseItWillReuseOldMemory [ OK ] BlobTests.ifBlobCannotReleaseItWillReuseOldMemory (0 ms) [ RUN ] BlobTests.ifBlobCannotReleaseItWillReuseOldMemoryOnlyIfAllocated [ OK ] BlobTests.ifBlobCannotReleaseItWillReuseOldMemoryOnlyIfAllocated (0 ms) [ RUN ] BlobTests.canModifyDataInRangedFor [ OK ] BlobTests.canModifyDataInRangedFor (0 ms) [ RUN ] BlobTests.makeRoiBlobNchw [ OK ] BlobTests.makeRoiBlobNchw (0 ms) [ RUN ] BlobTests.makeRoiBlobNhwc [ OK ] BlobTests.makeRoiBlobNhwc (0 ms) [ RUN ] BlobTests.makeRoiBlobWrongSize [ OK ] BlobTests.makeRoiBlobWrongSize (0 ms) [----------] 30 tests from BlobTests (1 ms total) [----------] 1 test from PointerTests [ RUN ] PointerTests.InferenceEnginePtrStoresValues [ OK ] PointerTests.InferenceEnginePtrStoresValues (0 ms) [----------] 1 test from PointerTests (0 ms total) [----------] 5 tests from DeviceTests [ RUN ] DeviceTests.internalFindThrowsOnBadDevice [ OK ] DeviceTests.internalFindThrowsOnBadDevice (1 ms) [ RUN ] DeviceTests.externalFindReturnsErrorStatus [ OK ] DeviceTests.externalFindReturnsErrorStatus (0 ms) [ RUN ] DeviceTests.externalFindPopulatesResult [ OK ] DeviceTests.externalFindPopulatesResult (0 ms) [ RUN ] DeviceTests.internalFindReturnsResponse [ OK ] DeviceTests.internalFindReturnsResponse (0 ms) [ RUN ] DeviceTests.returnsProperDeviceName [ OK ] DeviceTests.returnsProperDeviceName (0 ms) [----------] 5 tests from DeviceTests (1 ms total) [----------] 1 test from CNNNetworkTests [ RUN ] CNNNetworkTests.throwsOnInitWithNull [ OK ] CNNNetworkTests.throwsOnInitWithNull (0 ms) [----------] 1 test from CNNNetworkTests (0 ms total) [----------] 9 tests from LayerTransformTest [ RUN ] LayerTransformTest.canInjectIntoConvolutionLayer [ OK ] LayerTransformTest.canInjectIntoConvolutionLayer (0 ms) [ RUN ] LayerTransformTest.canInjectValue [ OK ] LayerTransformTest.canInjectValue (0 ms) [ RUN ] LayerTransformTest.canAccessInjectedValue [ OK ] LayerTransformTest.canAccessInjectedValue (0 ms) [ RUN ] LayerTransformTest.returnNullIfNotInjected [ OK ] LayerTransformTest.returnNullIfNotInjected (0 ms) [ RUN ] LayerTransformTest.canInjectStruct [ OK ] LayerTransformTest.canInjectStruct (0 ms) [ RUN ] LayerTransformTest.injectioWillCopyOutData [ OK ] LayerTransformTest.injectioWillCopyOutData (0 ms) [ RUN ] LayerTransformTest.injectioWillCopyInputData [ OK ] LayerTransformTest.injectioWillCopyInputData (0 ms) [ RUN ] LayerTransformTest.transformWillOnlyTransformOnce [ OK ] LayerTransformTest.transformWillOnlyTransformOnce (0 ms) [ RUN ] LayerTransformTest.transformCanGoToParentIfChildTransformNotImplemented [ OK ] LayerTransformTest.transformCanGoToParentIfChildTransformNotImplemented (0 ms) [----------] 9 tests from LayerTransformTest (0 ms total) [----------] 2 tests from DebugTests [ RUN ] DebugTests.tolowerWorksWithEmptyString [ OK ] DebugTests.tolowerWorksWithEmptyString (0 ms) [ RUN ] DebugTests.shouldConvertToLowerCase [ OK ] DebugTests.shouldConvertToLowerCase (0 ms) [----------] 2 tests from DebugTests (0 ms total) [----------] 6 tests from InferenceEngineTests [ RUN ] InferenceEngineTests.checkZeroInput [ OK ] InferenceEngineTests.checkZeroInput (0 ms) [ RUN ] InferenceEngineTests.testInsertSort [ OK ] InferenceEngineTests.testInsertSort (0 ms) [ RUN ] InferenceEngineTests.testInsertSortOverDraft [ OK ] InferenceEngineTests.testInsertSortOverDraft (0 ms) [ RUN ] InferenceEngineTests.testThrowsOnCopyToBadBlob [ OK ] InferenceEngineTests.testThrowsOnCopyToBadBlob (0 ms) [ RUN ] InferenceEngineTests.testThrowsOnCopyToBlobWithBadSize [ OK ] InferenceEngineTests.testThrowsOnCopyToBlobWithBadSize (0 ms) [ RUN ] InferenceEngineTests.canCopyToProperBlob [ OK ] InferenceEngineTests.canCopyToProperBlob (0 ms) [----------] 6 tests from InferenceEngineTests (0 ms total) [----------] 5 tests from PluginDispatcherTests [ RUN ] PluginDispatcherTests.canLoadMockPlugin [ OK ] PluginDispatcherTests.canLoadMockPlugin (0 ms) [ RUN ] PluginDispatcherTests.throwsOnUnknownPlugin [ OK ] PluginDispatcherTests.throwsOnUnknownPlugin (1 ms) [ RUN ] PluginDispatcherTests.throwsOnDeviceWithoutPlugins [ OK ] PluginDispatcherTests.throwsOnDeviceWithoutPlugins (0 ms) [ RUN ] PluginDispatcherTests.triesToLoadEveryPluginSuitableForDevice [ OK ] PluginDispatcherTests.triesToLoadEveryPluginSuitableForDevice (0 ms) [ RUN ] PluginDispatcherTests.returnsIfLoadSuccessfull [ OK ] PluginDispatcherTests.returnsIfLoadSuccessfull (0 ms) [----------] 5 tests from PluginDispatcherTests (1 ms total) [----------] 11 tests from CallbackManagerTests [ RUN ] CallbackManagerTests.disabledByDefault [ OK ] CallbackManagerTests.disabledByDefault (0 ms) [ RUN ] CallbackManagerTests.disabledIfCallbackNotSet [ OK ] CallbackManagerTests.disabledIfCallbackNotSet (0 ms) [ RUN ] CallbackManagerTests.canStartTask [ OK ] CallbackManagerTests.canStartTask (0 ms) [ RUN ] CallbackManagerTests.canSetCallback [ OK ] CallbackManagerTests.canSetCallback (0 ms) [ RUN ] CallbackManagerTests.failToRunForEmptyRequest [ OK ] CallbackManagerTests.failToRunForEmptyRequest (0 ms) [ RUN ] CallbackManagerTests.callbackIsNotCalledIfWasNotSet [ OK ] CallbackManagerTests.callbackIsNotCalledIfWasNotSet (0 ms) [ RUN ] CallbackManagerTests.canRunCallback [ OK ] CallbackManagerTests.canRunCallback (0 ms) [ RUN ] CallbackManagerTests.canDisableCallback [ OK ] CallbackManagerTests.canDisableCallback (0 ms) [ RUN ] CallbackManagerTests.canSetException [ OK ] CallbackManagerTests.canSetException (0 ms) [ RUN ] CallbackManagerTests.canSetStatus [ OK ] CallbackManagerTests.canSetStatus (0 ms) [ RUN ] CallbackManagerTests.initResetStatusAndException [ OK ] CallbackManagerTests.initResetStatusAndException (0 ms) [----------] 11 tests from CallbackManagerTests (0 ms total) [----------] 19 tests from PluginBaseTests [ RUN ] PluginBaseTests.canReportVersion [ OK ] PluginBaseTests.canReportVersion (0 ms) [ RUN ] PluginBaseTests.canForwardLoadNetwork [ OK ] PluginBaseTests.canForwardLoadNetwork (0 ms) [ RUN ] PluginBaseTests.canReportErrorInLoadNetwork [ OK ] PluginBaseTests.canReportErrorInLoadNetwork (0 ms) [ RUN ] PluginBaseTests.canCatchUnknownErrorInLoadNetwork [ OK ] PluginBaseTests.canCatchUnknownErrorInLoadNetwork (0 ms) [ RUN ] PluginBaseTests.canForwardLoadExeNetwork [ OK ] PluginBaseTests.canForwardLoadExeNetwork (0 ms) [ RUN ] PluginBaseTests.canReportErrorInLoadExeNetwork [ OK ] PluginBaseTests.canReportErrorInLoadExeNetwork (1 ms) [ RUN ] PluginBaseTests.canCatchUnknownErrorInLoadExeNetwork [ OK ] PluginBaseTests.canCatchUnknownErrorInLoadExeNetwork (0 ms) [ RUN ] PluginBaseTests.canForwarInfer [ OK ] PluginBaseTests.canForwarInfer (0 ms) [ RUN ] PluginBaseTests.canReportErrorInInfer [ OK ] PluginBaseTests.canReportErrorInInfer (0 ms) [ RUN ] PluginBaseTests.canCatchUnknownErrorInInfer [ OK ] PluginBaseTests.canCatchUnknownErrorInInfer (0 ms) [ RUN ] PluginBaseTests.canForwarBlobMapInfer [ OK ] PluginBaseTests.canForwarBlobMapInfer (0 ms) [ RUN ] PluginBaseTests.canReportErrorInBlobMapInfer [ OK ] PluginBaseTests.canReportErrorInBlobMapInfer (0 ms) [ RUN ] PluginBaseTests.canCatchUnknownErrorInBlobMapInfer [ OK ] PluginBaseTests.canCatchUnknownErrorInBlobMapInfer (0 ms) [ RUN ] PluginBaseTests.canForwarGetPerformanceCounts [ OK ] PluginBaseTests.canForwarGetPerformanceCounts (0 ms) [ RUN ] PluginBaseTests.canReportErrorInGetPerformanceCounts [ OK ] PluginBaseTests.canReportErrorInGetPerformanceCounts (0 ms) [ RUN ] PluginBaseTests.canCatchUnknownErrorInGetPerformanceCounts [ OK ] PluginBaseTests.canCatchUnknownErrorInGetPerformanceCounts (0 ms) [ RUN ] PluginBaseTests.canForwarSetConfig [ OK ] PluginBaseTests.canForwarSetConfig (0 ms) [ RUN ] PluginBaseTests.canReportErrorInSetConfig [ OK ] PluginBaseTests.canReportErrorInSetConfig (0 ms) [ RUN ] PluginBaseTests.canCatchUnknownErrorInSetConfig [ OK ] PluginBaseTests.canCatchUnknownErrorInSetConfig (0 ms) [----------] 19 tests from PluginBaseTests (1 ms total) [----------] 3 tests from TaskTests [ RUN ] TaskTests.canRunWithTaskSync [ OK ] TaskTests.canRunWithTaskSync (0 ms) [ RUN ] TaskTests.canRunWithTaskSyncAndWait [ OK ] TaskTests.canRunWithTaskSyncAndWait (0 ms) [ RUN ] TaskTests.canSyncNThreadsUsingTaskSync [ OK ] TaskTests.canSyncNThreadsUsingTaskSync (1 ms) [----------] 3 tests from TaskTests (1 ms total) [----------] 3 tests from ExecutableNetworkThreadSafeTests [ RUN ] ExecutableNetworkThreadSafeTests.createInferRequestCallsThreadSafeImplAndSetNetworkIO [ OK ] ExecutableNetworkThreadSafeTests.createInferRequestCallsThreadSafeImplAndSetNetworkIO (0 ms) [ RUN ] ExecutableNetworkThreadSafeTests.returnErrorIfInferThrowsException [ OK ] ExecutableNetworkThreadSafeTests.returnErrorIfInferThrowsException (1 ms) [ RUN ] ExecutableNetworkThreadSafeTests.returnErrorIfStartAsyncThrowsException [ OK ] ExecutableNetworkThreadSafeTests.returnErrorIfStartAsyncThrowsException (0 ms) [----------] 3 tests from ExecutableNetworkThreadSafeTests (1 ms total) [----------] 21 tests from InferRequestTests [ RUN ] InferRequestTests.canForwardStartAsync [ OK ] InferRequestTests.canForwardStartAsync (1 ms) [ RUN ] InferRequestTests.throwsIfStartAsyncReturnNotOK [ OK ] InferRequestTests.throwsIfStartAsyncReturnNotOK (0 ms) [ RUN ] InferRequestTests.canForwardWait [ OK ] InferRequestTests.canForwardWait (0 ms) [ RUN ] InferRequestTests.canForwardStatusFromWait [ OK ] InferRequestTests.canForwardStatusFromWait (0 ms) [ RUN ] InferRequestTests.canForwardInfer [ OK ] InferRequestTests.canForwardInfer (0 ms) [ RUN ] InferRequestTests.throwsIfInferReturnNotOK [ OK ] InferRequestTests.throwsIfInferReturnNotOK (0 ms) [ RUN ] InferRequestTests.canForwardGetPerformanceCounts [ OK ] InferRequestTests.canForwardGetPerformanceCounts (0 ms) [ RUN ] InferRequestTests.throwsIfGetPerformanceCountsReturnNotOK [ OK ] InferRequestTests.throwsIfGetPerformanceCountsReturnNotOK (0 ms) [ RUN ] InferRequestTests.getInputCallsSetBlob [ OK ] InferRequestTests.getInputCallsSetBlob (0 ms) [ RUN ] InferRequestTests.throwsIfSetInputReturnNotOK [ OK ] InferRequestTests.throwsIfSetInputReturnNotOK (0 ms) [ RUN ] InferRequestTests.getOutputCallsSetBlob [ OK ] InferRequestTests.getOutputCallsSetBlob (0 ms) [ RUN ] InferRequestTests.canForwardGetBlob [ OK ] InferRequestTests.canForwardGetBlob (0 ms) [ RUN ] InferRequestTests.throwsIfGetBlobReturnNotOK [ OK ] InferRequestTests.throwsIfGetBlobReturnNotOK (0 ms) [ RUN ] InferRequestTests.canForwardSetBlob [ OK ] InferRequestTests.canForwardSetBlob (0 ms) [ RUN ] InferRequestTests.throwsIfSetBlobReturnNotOK [ OK ] InferRequestTests.throwsIfSetBlobReturnNotOK (0 ms) [ RUN ] InferRequestTests.throwsIfSetOutputReturnNotOK [ OK ] InferRequestTests.throwsIfSetOutputReturnNotOK (0 ms) [ RUN ] InferRequestTests.canForwardCompletionCallback [ OK ] InferRequestTests.canForwardCompletionCallback (0 ms) [ RUN ] InferRequestTests.canForwardAnyCallback [ OK ] InferRequestTests.canForwardAnyCallback (0 ms) [ RUN ] InferRequestTests.failToSetInputWithInCorrectName [ OK ] InferRequestTests.failToSetInputWithInCorrectName (0 ms) [ RUN ] InferRequestTests.failToSetOutputWithInCorrectName [ OK ] InferRequestTests.failToSetOutputWithInCorrectName (0 ms) [ RUN ] InferRequestTests.failToSetInputWithNotAllocatedInput [ OK ] InferRequestTests.failToSetInputWithNotAllocatedInput (0 ms) [----------] 21 tests from InferRequestTests (2 ms total) [----------] 15 tests from InferRequestThreadSafeDefaultTests [ RUN ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnStartAsync [ OK ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnStartAsync (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.canResetBusyStatusIfStartAsyncTaskFails [ OK ] InferRequestThreadSafeDefaultTests.canResetBusyStatusIfStartAsyncTaskFails (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.canResetBusyStatusIfInitNextTaskFails [ OK ] InferRequestThreadSafeDefaultTests.canResetBusyStatusIfInitNextTaskFails (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnGetUserData [ OK ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnGetUserData (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnSetUserData [ OK ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnSetUserData (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.returnInferNotStartedOnWait [ OK ] InferRequestThreadSafeDefaultTests.returnInferNotStartedOnWait (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnInfer [ OK ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnInfer (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.canResetBusyStatusIfInferFails [ OK ] InferRequestThreadSafeDefaultTests.canResetBusyStatusIfInferFails (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnGetPerformanceCounts [ OK ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnGetPerformanceCounts (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnGetBlob [ OK ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnGetBlob (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnSetBlob [ OK ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnSetBlob (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnSetCompletionCallback [ OK ] InferRequestThreadSafeDefaultTests.returnRequestBusyOnSetCompletionCallback (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.callbackTakesOKIfAsyncRequestWasOK [ OK ] InferRequestThreadSafeDefaultTests.callbackTakesOKIfAsyncRequestWasOK (0 ms) [ RUN ] InferRequestThreadSafeDefaultTests.callbackIsCalledIfAsyncRequestFailed [ OK ] InferRequestThreadSafeDefaultTests.callbackIsCalledIfAsyncRequestFailed (1 ms) [ RUN ] InferRequestThreadSafeDefaultTests.canCatchExceptionIfAsyncRequestFailedAndNoCallback [ OK ] InferRequestThreadSafeDefaultTests.canCatchExceptionIfAsyncRequestFailedAndNoCallback (0 ms) [----------] 15 tests from InferRequestThreadSafeDefaultTests (2 ms total) [----------] 9 tests from TaskSynchronizerTests [ RUN ] TaskSynchronizerTests.canLockAndUnlockRequestSync [ OK ] TaskSynchronizerTests.canLockAndUnlockRequestSync (0 ms) [ RUN ] TaskSynchronizerTests.canCallUnlockMoreThanLock [ OK ] TaskSynchronizerTests.canCallUnlockMoreThanLock (0 ms) [ RUN ] TaskSynchronizerTests.canUseScopeRequestForMoreThanMaxInQueueTimes [ OK ] TaskSynchronizerTests.canUseScopeRequestForMoreThanMaxInQueueTimes (0 ms) [ RUN ] TaskSynchronizerTests.canSyncMaxNumThreadsUsingRequestSync [ OK ] TaskSynchronizerTests.canSyncMaxNumThreadsUsingRequestSync (1002 ms) [ RUN ] TaskSynchronizerTests.throwExceptionOnLockMoreThanMaxUsingRequestSync [ OK ] TaskSynchronizerTests.throwExceptionOnLockMoreThanMaxUsingRequestSync (1003 ms) [ RUN ] TaskSynchronizerTests.canSyncNThreadsUsingRequestSync [ OK ] TaskSynchronizerTests.canSyncNThreadsUsingRequestSync (8 ms) [ RUN ] TaskSynchronizerTests.canSyncNThreadsUsingScopeSync [ OK ] TaskSynchronizerTests.canSyncNThreadsUsingScopeSync (1 ms) [ RUN ] TaskSynchronizerTests.callAddToQueueAndWaitOnLock [ OK ] TaskSynchronizerTests.callAddToQueueAndWaitOnLock (0 ms) [ RUN ] TaskSynchronizerTests.callLockOnCreation [ OK ] TaskSynchronizerTests.callLockOnCreation (0 ms) [----------] 9 tests from TaskSynchronizerTests (2014 ms total) [----------] 9 tests from ExecutableNetworkBaseTests [ RUN ] ExecutableNetworkBaseTests.canForwardCreateInferRequest [ OK ] ExecutableNetworkBaseTests.canForwardCreateInferRequest (0 ms) [ RUN ] ExecutableNetworkBaseTests.canReportErrorInCreateInferRequest [ OK ] ExecutableNetworkBaseTests.canReportErrorInCreateInferRequest (0 ms) [ RUN ] ExecutableNetworkBaseTests.canCatchUnknownErrorInCreateInferRequest [ OK ] ExecutableNetworkBaseTests.canCatchUnknownErrorInCreateInferRequest (1 ms) [ RUN ] ExecutableNetworkBaseTests.canForwardExport [ OK ] ExecutableNetworkBaseTests.canForwardExport (0 ms) [ RUN ] ExecutableNetworkBaseTests.canReportErrorInExport [ OK ] ExecutableNetworkBaseTests.canReportErrorInExport (0 ms) [ RUN ] ExecutableNetworkBaseTests.canCatchUnknownErrorInExport [ OK ] ExecutableNetworkBaseTests.canCatchUnknownErrorInExport (0 ms) [ RUN ] ExecutableNetworkBaseTests.canForwardGetMappedTopology [ OK ] ExecutableNetworkBaseTests.canForwardGetMappedTopology (0 ms) [ RUN ] ExecutableNetworkBaseTests.canReportErrorInCreateInferRequestGetMappedTopology [ OK ] ExecutableNetworkBaseTests.canReportErrorInCreateInferRequestGetMappedTopology (0 ms) [ RUN ] ExecutableNetworkBaseTests.canCatchUnknownErrorInGetMappedTopology [ OK ] ExecutableNetworkBaseTests.canCatchUnknownErrorInGetMappedTopology (0 ms) [----------] 9 tests from ExecutableNetworkBaseTests (1 ms total) [----------] 6 tests from TaskWithStagesTests [ RUN ] TaskWithStagesTests.canCreateTask [ OK ] TaskWithStagesTests.canCreateTask (0 ms) [ RUN ] TaskWithStagesTests.runNoThrowMakeTaskPostponeWithStages [ OK ] TaskWithStagesTests.runNoThrowMakeTaskPostponeWithStages (0 ms) [ RUN ] TaskWithStagesTests.stageDoneReducesStages [ OK ] TaskWithStagesTests.stageDoneReducesStages (0 ms) [ RUN ] TaskWithStagesTests.runNoThrowMakesTaskDoneAfterCallStageDone [ OK ] TaskWithStagesTests.runNoThrowMakesTaskDoneAfterCallStageDone (0 ms) [ RUN ] TaskWithStagesTests.canResetStages [ OK ] TaskWithStagesTests.canResetStages (0 ms) [ RUN ] TaskWithStagesTests.throwExceptionIfCalledStageDoneMoreThanStagesTimes [ OK ] TaskWithStagesTests.throwExceptionIfCalledStageDoneMoreThanStagesTimes (0 ms) [----------] 6 tests from TaskWithStagesTests (0 ms total) [----------] 14 tests from MemoryStateTests [ RUN ] MemoryStateTests.ExecutableNetworkCanConvertOneMemoryStateFromCppToAPI [ OK ] MemoryStateTests.ExecutableNetworkCanConvertOneMemoryStateFromCppToAPI (0 ms) [ RUN ] MemoryStateTests.ExecutableNetworkCanConvertZeroMemoryStateFromCppToAPI [ OK ] MemoryStateTests.ExecutableNetworkCanConvertZeroMemoryStateFromCppToAPI (1 ms) [ RUN ] MemoryStateTests.ExecutableNetworkCanConvert2MemoryStatesFromCPPtoAPI [ OK ] MemoryStateTests.ExecutableNetworkCanConvert2MemoryStatesFromCPPtoAPI (0 ms) [ RUN ] MemoryStateTests.MemoryStatePropagatesReset [ OK ] MemoryStateTests.MemoryStatePropagatesReset (0 ms) [ RUN ] MemoryStateTests.MemoryStatePropagatesExceptionsFromReset [ OK ] MemoryStateTests.MemoryStatePropagatesExceptionsFromReset (0 ms) [ RUN ] MemoryStateTests.MemoryStatePropagatesGetName [ OK ] MemoryStateTests.MemoryStatePropagatesGetName (0 ms) [ RUN ] MemoryStateTests.MemoryStatePropagatesGetNameWithZeroLen [ OK ] MemoryStateTests.MemoryStatePropagatesGetNameWithZeroLen (0 ms) [ RUN ] MemoryStateTests.MemoryStatePropagatesGetNameWithLenOfOne [ OK ] MemoryStateTests.MemoryStatePropagatesGetNameWithLenOfOne (0 ms) [ RUN ] MemoryStateTests.MemoryStatePropagatesGetNameWithLenOfTwo [ OK ] MemoryStateTests.MemoryStatePropagatesGetNameWithLenOfTwo (0 ms) [ RUN ] MemoryStateTests.MemoryStateCanPropagateSetState [ OK ] MemoryStateTests.MemoryStateCanPropagateSetState (0 ms) [ RUN ] MemoryStateTests.MemoryStateCanPropagateGetLastState [ OK ] MemoryStateTests.MemoryStateCanPropagateGetLastState (0 ms) [ RUN ] MemoryStateTests.MemoryStateInternalCanSaveName [ OK ] MemoryStateTests.MemoryStateInternalCanSaveName (0 ms) [ RUN ] MemoryStateTests.MemoryStateInternalCanSaveState [ OK ] MemoryStateTests.MemoryStateInternalCanSaveState (0 ms) [ RUN ] MemoryStateTests.MemoryStateInternalCanSaveStateByReference [ OK ] MemoryStateTests.MemoryStateInternalCanSaveStateByReference (0 ms) [----------] 14 tests from MemoryStateTests (1 ms total) [----------] 3 tests from ExecutorManagerTests [ RUN ] ExecutorManagerTests.canCreateSingleExecutorManager [ OK ] ExecutorManagerTests.canCreateSingleExecutorManager (0 ms) [ RUN ] ExecutorManagerTests.createDifferentExecutorsForDifferentDevices [ OK ] ExecutorManagerTests.createDifferentExecutorsForDifferentDevices (1 ms) [ RUN ] ExecutorManagerTests.returnTheSameExecutorForTheSameDevice [ OK ] ExecutorManagerTests.returnTheSameExecutorForTheSameDevice (0 ms) [----------] 3 tests from ExecutorManagerTests (1 ms total) [----------] 4 tests from ExecutableNetworkTests [ RUN ] ExecutableNetworkTests.canForwardCreateInferRequest [ OK ] ExecutableNetworkTests.canForwardCreateInferRequest (0 ms) [ RUN ] ExecutableNetworkTests.throwsIfCreateInferRequestReturnNotOK [ OK ] ExecutableNetworkTests.throwsIfCreateInferRequestReturnNotOK (0 ms) [ RUN ] ExecutableNetworkTests.canForwardCreateInferRequestPtr [ OK ] ExecutableNetworkTests.canForwardCreateInferRequestPtr (0 ms) [ RUN ] ExecutableNetworkTests.throwsIfCreateInferRequestPtrReturnNotOK [ OK ] ExecutableNetworkTests.throwsIfCreateInferRequestPtrReturnNotOK (0 ms) [----------] 4 tests from ExecutableNetworkTests (0 ms total) [----------] 7 tests from InferenceEnginePluginInternalTest [ RUN ] InferenceEnginePluginInternalTest.canUseNewInferViaOldAPI [ OK ] InferenceEnginePluginInternalTest.canUseNewInferViaOldAPI (1 ms) [ RUN ] InferenceEnginePluginInternalTest.loadExeNetworkCallsSetNetworkIO [ OK ] InferenceEnginePluginInternalTest.loadExeNetworkCallsSetNetworkIO (0 ms) [ RUN ] InferenceEnginePluginInternalTest.failToSetBlobWithInCorrectName [ OK ] InferenceEnginePluginInternalTest.failToSetBlobWithInCorrectName (0 ms) [ RUN ] InferenceEnginePluginInternalTest.failToSetBlobWithNullPtr [ OK ] InferenceEnginePluginInternalTest.failToSetBlobWithNullPtr (1 ms) [ RUN ] InferenceEnginePluginInternalTest.failToSetNullPtr [ OK ] InferenceEnginePluginInternalTest.failToSetNullPtr (0 ms) [ RUN ] InferenceEnginePluginInternalTest.failToSetEmptyBlob [ OK ] InferenceEnginePluginInternalTest.failToSetEmptyBlob (1 ms) [ RUN ] InferenceEnginePluginInternalTest.failToSetNotAllocatedBlob [ OK ] InferenceEnginePluginInternalTest.failToSetNotAllocatedBlob (1 ms) [----------] 7 tests from InferenceEnginePluginInternalTest (4 ms total) [----------] 4 tests from InferenceEnginePluginInternal2Test [ RUN ] InferenceEnginePluginInternal2Test.loadExeNetworkWithEmptyNetworkReturnsError [ OK ] InferenceEnginePluginInternal2Test.loadExeNetworkWithEmptyNetworkReturnsError (1 ms) [ RUN ] InferenceEnginePluginInternal2Test.canForwardGetPerfCount [ OK ] InferenceEnginePluginInternal2Test.canForwardGetPerfCount (0 ms) [ RUN ] InferenceEnginePluginInternal2Test.deprecatedInferCallsSetterAndInfer [ OK ] InferenceEnginePluginInternal2Test.deprecatedInferCallsSetterAndInfer (0 ms) [ RUN ] InferenceEnginePluginInternal2Test.deprecatedLoadNetworkCallsCreateInferRequest [ OK ] InferenceEnginePluginInternal2Test.deprecatedLoadNetworkCallsCreateInferRequest (0 ms) [----------] 4 tests from InferenceEnginePluginInternal2Test (1 ms total) [----------] 12 tests from TaskExecutorTests [ RUN ] TaskExecutorTests.canCreateTaskExecutor [ OK ] TaskExecutorTests.canCreateTaskExecutor (0 ms) [ RUN ] TaskExecutorTests.canCatchException [ OK ] TaskExecutorTests.canCatchException (2 ms) [ RUN ] TaskExecutorTests.canRunDefaultTask [ OK ] TaskExecutorTests.canRunDefaultTask (0 ms) [ RUN ] TaskExecutorTests.canRunDefaultTaskWithoutStop [ OK ] TaskExecutorTests.canRunDefaultTaskWithoutStop (0 ms) [ RUN ] TaskExecutorTests.canRunDefaultTaskWithoutWait [ OK ] TaskExecutorTests.canRunDefaultTaskWithoutWait (0 ms) [ RUN ] TaskExecutorTests.canRunCustomFunction [ OK ] TaskExecutorTests.canRunCustomFunction (0 ms) [ RUN ] TaskExecutorTests.canRun2FunctionsOneByOne [ OK ] TaskExecutorTests.canRun2FunctionsOneByOne (0 ms) [ RUN ] TaskExecutorTests.returnFalseIfRunTaskWhichIsRunning [ OK ] TaskExecutorTests.returnFalseIfRunTaskWhichIsRunning (501 ms) [ RUN ] TaskExecutorTests.canRun2FunctionsOneByOneWithoutWait [ OK ] TaskExecutorTests.canRun2FunctionsOneByOneWithoutWait (1001 ms) [ RUN ] TaskExecutorTests.canRunMultipleTasksWithExceptionInside [ OK ] TaskExecutorTests.canRunMultipleTasksWithExceptionInside (1 ms) [ RUN ] TaskExecutorTests.executorNotReleasedUntilTasksAreDone [ OK ] TaskExecutorTests.executorNotReleasedUntilTasksAreDone (0 ms) [ RUN ] TaskExecutorTests.callWaitOnTaskDtorIfProcessed [ OK ] TaskExecutorTests.callWaitOnTaskDtorIfProcessed (500 ms) [----------] 12 tests from TaskExecutorTests (2006 ms total) [----------] 12 tests from AsyncInferRequestThreadSafeInternalTests [ RUN ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnStartAsync [ OK ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnStartAsync (0 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.canResetBusyStatusIfStartAsyncTaskFails [ OK ] AsyncInferRequestThreadSafeInternalTests.canResetBusyStatusIfStartAsyncTaskFails (0 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.deviceBusyAfterStartAsync [ OK ] AsyncInferRequestThreadSafeInternalTests.deviceBusyAfterStartAsync (0 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnGetUserData [ OK ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnGetUserData (1 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnSetUserData [ OK ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnSetUserData (0 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.returnInferNotStartedOnWait [ OK ] AsyncInferRequestThreadSafeInternalTests.returnInferNotStartedOnWait (0 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnInfer [ OK ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnInfer (0 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.canResetBusyStatusIfInferFails [ OK ] AsyncInferRequestThreadSafeInternalTests.canResetBusyStatusIfInferFails (0 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnGetPerformanceCounts [ OK ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnGetPerformanceCounts (0 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnGetBlob [ OK ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnGetBlob (0 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnSetBlob [ OK ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnSetBlob (0 ms) [ RUN ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnSetCompletionCallback [ OK ] AsyncInferRequestThreadSafeInternalTests.returnRequestBusyOnSetCompletionCallback (0 ms) [----------] 12 tests from AsyncInferRequestThreadSafeInternalTests (1 ms total) [----------] 5 tests from ExecutableNetworkThreadSafeAsyncOnlyTests [ RUN ] ExecutableNetworkThreadSafeAsyncOnlyTests.createAsyncInferRequestCallsThreadSafeImplAndSetNetworkIO [ OK ] ExecutableNetworkThreadSafeAsyncOnlyTests.createAsyncInferRequestCallsThreadSafeImplAndSetNetworkIO (0 ms) [ RUN ] ExecutableNetworkThreadSafeAsyncOnlyTests.returnErrorIfInferThrowsException [ OK ] ExecutableNetworkThreadSafeAsyncOnlyTests.returnErrorIfInferThrowsException (0 ms) [ RUN ] ExecutableNetworkThreadSafeAsyncOnlyTests.returnErrorIfStartAsyncThrowsException [ OK ] ExecutableNetworkThreadSafeAsyncOnlyTests.returnErrorIfStartAsyncThrowsException (0 ms) [ RUN ] ExecutableNetworkThreadSafeAsyncOnlyTests.canForwardStartAsyncAndInfer [ OK ] ExecutableNetworkThreadSafeAsyncOnlyTests.canForwardStartAsyncAndInfer (0 ms) [ RUN ] ExecutableNetworkThreadSafeAsyncOnlyTests.canForwardInferAndStartAsync [ OK ] ExecutableNetworkThreadSafeAsyncOnlyTests.canForwardInferAndStartAsync (0 ms) [----------] 5 tests from ExecutableNetworkThreadSafeAsyncOnlyTests (0 ms total) [----------] 26 tests from InferRequestBaseTests [ RUN ] InferRequestBaseTests.canForwardStartAsync [ OK ] InferRequestBaseTests.canForwardStartAsync (0 ms) [ RUN ] InferRequestBaseTests.canReportErrorInStartAsync [ OK ] InferRequestBaseTests.canReportErrorInStartAsync (0 ms) [ RUN ] InferRequestBaseTests.canCatchUnknownErrorInStartAsync [ OK ] InferRequestBaseTests.canCatchUnknownErrorInStartAsync (0 ms) [ RUN ] InferRequestBaseTests.canForwardGetUserData [ OK ] InferRequestBaseTests.canForwardGetUserData (0 ms) [ RUN ] InferRequestBaseTests.canReportErrorInGetUserData [ OK ] InferRequestBaseTests.canReportErrorInGetUserData (0 ms) [ RUN ] InferRequestBaseTests.canCatchUnknownErrorInGetUserData [ OK ] InferRequestBaseTests.canCatchUnknownErrorInGetUserData (0 ms) [ RUN ] InferRequestBaseTests.canForwardSetUserData [ OK ] InferRequestBaseTests.canForwardSetUserData (0 ms) [ RUN ] InferRequestBaseTests.canReportErrorInSetUserData [ OK ] InferRequestBaseTests.canReportErrorInSetUserData (0 ms) [ RUN ] InferRequestBaseTests.canCatchUnknownErrorInSetUserData [ OK ] InferRequestBaseTests.canCatchUnknownErrorInSetUserData (0 ms) [ RUN ] InferRequestBaseTests.canForwardWait [ OK ] InferRequestBaseTests.canForwardWait (0 ms) [ RUN ] InferRequestBaseTests.canReportErrorInWait [ OK ] InferRequestBaseTests.canReportErrorInWait (0 ms) [ RUN ] InferRequestBaseTests.canCatchUnknownErrorInWait [ OK ] InferRequestBaseTests.canCatchUnknownErrorInWait (0 ms) [ RUN ] InferRequestBaseTests.canForwardInfer [ OK ] InferRequestBaseTests.canForwardInfer (0 ms) [ RUN ] InferRequestBaseTests.canReportErrorInInfer [ OK ] InferRequestBaseTests.canReportErrorInInfer (0 ms) [ RUN ] InferRequestBaseTests.canCatchUnknownErrorInInfer [ OK ] InferRequestBaseTests.canCatchUnknownErrorInInfer (0 ms) [ RUN ] InferRequestBaseTests.canForwardGetPerformanceCounts [ OK ] InferRequestBaseTests.canForwardGetPerformanceCounts (0 ms) [ RUN ] InferRequestBaseTests.canReportErrorInGetPerformanceCounts [ OK ] InferRequestBaseTests.canReportErrorInGetPerformanceCounts (0 ms) [ RUN ] InferRequestBaseTests.canCatchUnknownErrorInGetPerformanceCounts [ OK ] InferRequestBaseTests.canCatchUnknownErrorInGetPerformanceCounts (1 ms) [ RUN ] InferRequestBaseTests.canForwardGetBlob [ OK ] InferRequestBaseTests.canForwardGetBlob (0 ms) [ RUN ] InferRequestBaseTests.canReportErrorInGetBlob [ OK ] InferRequestBaseTests.canReportErrorInGetBlob (0 ms) [ RUN ] InferRequestBaseTests.canCatchUnknownErrorInGetBlob [ OK ] InferRequestBaseTests.canCatchUnknownErrorInGetBlob (0 ms) [ RUN ] InferRequestBaseTests.canForwardSetBlob [ OK ] InferRequestBaseTests.canForwardSetBlob (0 ms) [ RUN ] InferRequestBaseTests.canReportErrorInSetBlob [ OK ] InferRequestBaseTests.canReportErrorInSetBlob (0 ms) [ RUN ] InferRequestBaseTests.canCatchUnknownErrorInSetBlob [ OK ] InferRequestBaseTests.canCatchUnknownErrorInSetBlob (0 ms) [ RUN ] InferRequestBaseTests.canForwardSetCompletionCallback [ OK ] InferRequestBaseTests.canForwardSetCompletionCallback (0 ms) [ RUN ] InferRequestBaseTests.canReportErrorInSetCompletionCallback [ OK ] InferRequestBaseTests.canReportErrorInSetCompletionCallback (0 ms) [----------] 26 tests from InferRequestBaseTests (2 ms total) [----------] 12 tests from MemSolverTest [ RUN ] MemSolverTest.LinearAndEven [ OK ] MemSolverTest.LinearAndEven (0 ms) [ RUN ] MemSolverTest.LinearAndNotEven [ OK ] MemSolverTest.LinearAndNotEven (0 ms) [ RUN ] MemSolverTest.LinearWithEmptyExecIndexes [ OK ] MemSolverTest.LinearWithEmptyExecIndexes (0 ms) [ RUN ] MemSolverTest.OverlappingBoxes [ OK ] MemSolverTest.OverlappingBoxes (0 ms) [ RUN ] MemSolverTest.EndOnSeveralBegins [ OK ] MemSolverTest.EndOnSeveralBegins (0 ms) [ RUN ] MemSolverTest.ToEndBoxes [ OK ] MemSolverTest.ToEndBoxes (0 ms) [ RUN ] MemSolverTest.LastAndToEndBox [ OK ] MemSolverTest.LastAndToEndBox (0 ms) [ RUN ] MemSolverTest.OptimalAlexnet [ OK ] MemSolverTest.OptimalAlexnet (0 ms) [ RUN ] MemSolverTest.GetOffsets [ OK ] MemSolverTest.GetOffsets (0 ms) [ RUN ] MemSolverTest.GetOffsetThows [ OK ] MemSolverTest.GetOffsetThows (0 ms) [ RUN ] MemSolverTest.NoOverlapping [ OK ] MemSolverTest.NoOverlapping (0 ms) [ RUN ] MemSolverTest.BestSolution1 [ OK ] MemSolverTest.BestSolution1 (0 ms) [----------] 12 tests from MemSolverTest (1 ms total) [----------] 7 tests from CNNNetReaderImplTest [ RUN ] CNNNetReaderImplTest.validateIsCalled [ OK ] CNNNetReaderImplTest.validateIsCalled (0 ms) [ RUN ] CNNNetReaderImplTest.cycleIsDetectedInReader [ OK ] CNNNetReaderImplTest.cycleIsDetectedInReader (5 ms) [ RUN ] CNNNetReaderImplTest.canRead3DConvolution [ OK ] CNNNetReaderImplTest.canRead3DConvolution (0 ms) [ RUN ] CNNNetReaderImplTest.canRead3DPooling [ OK ] CNNNetReaderImplTest.canRead3DPooling (0 ms) [ RUN ] CNNNetReaderImplTest.canParseWithoutInput_1to2 [ OK ] CNNNetReaderImplTest.canParseWithoutInput_1to2 (1 ms) [ RUN ] CNNNetReaderImplTest.canParseWithoutInput_2to1 [ OK ] CNNNetReaderImplTest.canParseWithoutInput_2to1 (0 ms) [ RUN ] CNNNetReaderImplTest.canParseSimpleTI [ OK ] CNNNetReaderImplTest.canParseSimpleTI (0 ms) [----------] 7 tests from CNNNetReaderImplTest (6 ms total) [----------] 12 tests from CNNNetworkImplTest [ RUN ] CNNNetworkImplTest.throwOnWrongInputType [ OK ] CNNNetworkImplTest.throwOnWrongInputType (0 ms) [ RUN ] CNNNetworkImplTest.severalRightInputTypes [ OK ] CNNNetworkImplTest.severalRightInputTypes (0 ms) [ RUN ] CNNNetworkImplTest.noCreatorLayers [ OK ] CNNNetworkImplTest.noCreatorLayers (1 ms) [ RUN ] CNNNetworkImplTest.dataHasNoCreatorLayerButItIs [ OK ] CNNNetworkImplTest.dataHasNoCreatorLayerButItIs (0 ms) [ RUN ] CNNNetworkImplTest.layerNameIsNotUnique [ OK ] CNNNetworkImplTest.layerNameIsNotUnique (0 ms) [ RUN ] CNNNetworkImplTest.dataNameIsNotUnique [ OK ] CNNNetworkImplTest.dataNameIsNotUnique (0 ms) [ RUN ] CNNNetworkImplTest.layerDoesNotHaveInputData [ OK ] CNNNetworkImplTest.layerDoesNotHaveInputData (0 ms) [ RUN ] CNNNetworkImplTest.layerDataNotCoresspondEachOtherOneInput [ OK ] CNNNetworkImplTest.layerDataNotCoresspondEachOtherOneInput (1 ms) [ RUN ] CNNNetworkImplTest.layerDataNotCoresspondEachOtherTwoInputs [ OK ] CNNNetworkImplTest.layerDataNotCoresspondEachOtherTwoInputs (0 ms) [ RUN ] CNNNetworkImplTest.canGetName [ OK ] CNNNetworkImplTest.canGetName (0 ms) [ RUN ] CNNNetworkImplTest.canGetNameStr [ OK ] CNNNetworkImplTest.canGetNameStr (0 ms) [ RUN ] CNNNetworkImplTest.cycleIsDetectedInNetwork [ OK ] CNNNetworkImplTest.cycleIsDetectedInNetwork (0 ms) [----------] 12 tests from CNNNetworkImplTest (2 ms total) [----------] 4 tests from LayoutTest [ RUN ] LayoutTest.offsetNCHW [ OK ] LayoutTest.offsetNCHW (0 ms) [ RUN ] LayoutTest.offsetNCHW2 [ OK ] LayoutTest.offsetNCHW2 (0 ms) [ RUN ] LayoutTest.offsetNHWC [ OK ] LayoutTest.offsetNHWC (0 ms) [ RUN ] LayoutTest.convertNCHWtoNHWC [ OK ] LayoutTest.convertNCHWtoNHWC (0 ms) [----------] 4 tests from LayoutTest (0 ms total) [----------] 48 tests from V2FormatParserTest [ RUN ] V2FormatParserTest.invalidXml_ShouldThrow [ OK ] V2FormatParserTest.invalidXml_ShouldThrow (0 ms) [ RUN ] V2FormatParserTest.canParseDims [ OK ] V2FormatParserTest.canParseDims (1 ms) [ RUN ] V2FormatParserTest.failWhenNoDims [ OK ] V2FormatParserTest.failWhenNoDims (0 ms) [ RUN ] V2FormatParserTest.failOnZeroDim [ OK ] V2FormatParserTest.failOnZeroDim (0 ms) [ RUN ] V2FormatParserTest.canParseMeanImageValues [ OK ] V2FormatParserTest.canParseMeanImageValues (0 ms) [ RUN ] V2FormatParserTest.canParseScaleValuesOnly [ OK ] V2FormatParserTest.canParseScaleValuesOnly (1 ms) [ RUN ] V2FormatParserTest.failIfOneOfMeanImageIdsMissed [ OK ] V2FormatParserTest.failIfOneOfMeanImageIdsMissed (0 ms) [ RUN ] V2FormatParserTest.failIfValueAttributeIsNotValid [ OK ] V2FormatParserTest.failIfValueAttributeIsNotValid (0 ms) [ RUN ] V2FormatParserTest.failIfMeanValueIsNotSpecified [ OK ] V2FormatParserTest.failIfMeanValueIsNotSpecified (1 ms) [ RUN ] V2FormatParserTest.failIfMeanValueNotSpecifiedInPreProcessing [ OK ] V2FormatParserTest.failIfMeanValueNotSpecifiedInPreProcessing (0 ms) [ RUN ] V2FormatParserTest.failIfIdLessThanZero [ OK ] V2FormatParserTest.failIfIdLessThanZero (0 ms) [ RUN ] V2FormatParserTest.failIfIdMoreThanNumChannels [ OK ] V2FormatParserTest.failIfIdMoreThanNumChannels (1 ms) [ RUN ] V2FormatParserTest.failIfIdIsDuplicated [ OK ] V2FormatParserTest.failIfIdIsDuplicated (0 ms) [ RUN ] V2FormatParserTest.failParseMeanImageWithoutSpecifyingPrecision [ OK ] V2FormatParserTest.failParseMeanImageWithoutSpecifyingPrecision (0 ms) [ RUN ] V2FormatParserTest.failIfOneOfMeanImageIfMeanNotSpecified [ OK ] V2FormatParserTest.failIfOneOfMeanImageIfMeanNotSpecified (0 ms) [ RUN ] V2FormatParserTest.failIfOffsetValueMissing [ OK ] V2FormatParserTest.failIfOffsetValueMissing (1 ms) [ RUN ] V2FormatParserTest.failIfSizeValueMissing [ OK ] V2FormatParserTest.failIfSizeValueMissing (0 ms) [ RUN ] V2FormatParserTest.throwsIfSizeOfMeanElementsMismatchWithExpected [ OK ] V2FormatParserTest.throwsIfSizeOfMeanElementsMismatchWithExpected (1 ms) [ RUN ] V2FormatParserTest.canHandleQ78MeanValues [ OK ] V2FormatParserTest.canHandleQ78MeanValues (0 ms) [ RUN ] V2FormatParserTest.canParseBinFileWithMeanImageUINT8Values [ OK ] V2FormatParserTest.canParseBinFileWithMeanImageUINT8Values (0 ms) [ RUN ] V2FormatParserTest.canParseBinFileWithMeanImageI16Values [ OK ] V2FormatParserTest.canParseBinFileWithMeanImageI16Values (1 ms) [ RUN ] V2FormatParserTest.canParseBinFileWithMeanImageFloatValues [ OK ] V2FormatParserTest.canParseBinFileWithMeanImageFloatValues (0 ms) [ RUN ] V2FormatParserTest.throwIfSizeDoesNotMatchExpectedMeanSize [ OK ] V2FormatParserTest.throwIfSizeDoesNotMatchExpectedMeanSize (0 ms) [ RUN ] V2FormatParserTest.failIfSizeExceedBinaryFileSize [ OK ] V2FormatParserTest.failIfSizeExceedBinaryFileSize (1 ms) [ RUN ] V2FormatParserTest.failIfMixedAttributesAreSet [ OK ] V2FormatParserTest.failIfMixedAttributesAreSet (0 ms) [ RUN ] V2FormatParserTest.parseSucceedIfMixedButAllValuesSet [ OK ] V2FormatParserTest.parseSucceedIfMixedButAllValuesSet (0 ms) [ RUN ] V2FormatParserTest.parseTileLayer [ OK ] V2FormatParserTest.parseTileLayer (1 ms) [ RUN ] V2FormatParserTest.checkPreProcessWithRefName [ OK ] V2FormatParserTest.checkPreProcessWithRefName (0 ms) [ RUN ] V2FormatParserTest.failWhenPreProcessNameMissing [ OK ] V2FormatParserTest.failWhenPreProcessNameMissing (0 ms) [ RUN ] V2FormatParserTest.cannotParseUnknownEltwiseOperation [ OK ] V2FormatParserTest.cannotParseUnknownEltwiseOperation (0 ms) [ RUN ] V2FormatParserTest.asserOnUnknownEltwiseOperation [ OK ] V2FormatParserTest.asserOnUnknownEltwiseOperation (1 ms) [ RUN ] V2FormatParserTest.canParseEmptyElementwiseNodeAsSum [ OK ] V2FormatParserTest.canParseEmptyElementwiseNodeAsSum (0 ms) [ RUN ] V2FormatParserTest.canParseEmptyElementwiseNodeAsSumAmazonIR [ OK ] V2FormatParserTest.canParseEmptyElementwiseNodeAsSumAmazonIR (0 ms) [ RUN ] V2FormatParserTest.canParseMissedElementwiseOperationNodeAsSum [ OK ] V2FormatParserTest.canParseMissedElementwiseOperationNodeAsSum (0 ms) [ RUN ] V2FormatParserTest.canParseMissedElementwiseDataNodeAsSum [ OK ] V2FormatParserTest.canParseMissedElementwiseDataNodeAsSum (0 ms) [ RUN ] V2FormatParserTest.canParseProdInElementwiseNode [ OK ] V2FormatParserTest.canParseProdInElementwiseNode (1 ms) [ RUN ] V2FormatParserTest.canParseMulInElementwiseNode [ OK ] V2FormatParserTest.canParseMulInElementwiseNode (0 ms) [ RUN ] V2FormatParserTest.canParseSumInElementwiseNode [ OK ] V2FormatParserTest.canParseSumInElementwiseNode (0 ms) [ RUN ] V2FormatParserTest.parsesNumberOfLayersCorrectly [ OK ] V2FormatParserTest.parsesNumberOfLayersCorrectly (0 ms) [ RUN ] V2FormatParserTest.canThrowExceptionIfUnknownActivation [ OK ] V2FormatParserTest.canThrowExceptionIfUnknownActivation (1 ms) [ RUN ] V2FormatParserTest.canThrowExceptionIfNoType [ OK ] V2FormatParserTest.canThrowExceptionIfNoType (0 ms) [ RUN ] V2FormatParserTest.canThrowExceptionIfMultipleTypes [ OK ] V2FormatParserTest.canThrowExceptionIfMultipleTypes (0 ms) [ RUN ] V2FormatParserTest.canConvertActivationLayerAsTanH [ OK ] V2FormatParserTest.canConvertActivationLayerAsTanH (0 ms) [ RUN ] V2FormatParserTest.canConvertActivationLayerAsELU [ OK ] V2FormatParserTest.canConvertActivationLayerAsELU (0 ms) [ RUN ] V2FormatParserTest.canConvertActivationLayerAsRelu [ OK ] V2FormatParserTest.canConvertActivationLayerAsRelu (1 ms) [ RUN ] V2FormatParserTest.canConvertActivationLayerAsPRelu [ OK ] V2FormatParserTest.canConvertActivationLayerAsPRelu (0 ms) [ RUN ] V2FormatParserTest.canConvertActivationLayerAsSigmoid [ OK ] V2FormatParserTest.canConvertActivationLayerAsSigmoid (0 ms) [ RUN ] V2FormatParserTest.canConvertActivationLayerAsClamp [ OK ] V2FormatParserTest.canConvertActivationLayerAsClamp (0 ms) [----------] 48 tests from V2FormatParserTest (13 ms total) [----------] 7 tests from XMLFatherF [ RUN ] XMLFatherF.canCreateValidXmlNode [ OK ] XMLFatherF.canCreateValidXmlNode (0 ms) [ RUN ] XMLFatherF.canCreateValidNodeWithName [ OK ] XMLFatherF.canCreateValidNodeWithName (0 ms) [ RUN ] XMLFatherF.canCreateValidXmlNodeWithContent [ OK ] XMLFatherF.canCreateValidXmlNodeWithContent (0 ms) [ RUN ] XMLFatherF.canCreateValidXmlNodeWithAdvancedContent [ OK ] XMLFatherF.canCreateValidXmlNodeWithAdvancedContent (0 ms) [ RUN ] XMLFatherF.canCreateLevel2Hierarchy [ OK ] XMLFatherF.canCreateLevel2Hierarchy (0 ms) [ RUN ] XMLFatherF.canContinueAfterTrivialNode [ OK ] XMLFatherF.canContinueAfterTrivialNode (0 ms) [ RUN ] XMLFatherF.canContinueAfterNodeWithSubnodes [ OK ] XMLFatherF.canContinueAfterNodeWithSubnodes (0 ms) [----------] 7 tests from XMLFatherF (0 ms total) [----------] 7 tests from V3FormatParserTest [ RUN ] V3FormatParserTest.cannotParseUnknownEltwiseOperation [ OK ] V3FormatParserTest.cannotParseUnknownEltwiseOperation (1 ms) [ RUN ] V3FormatParserTest.canParseProdInElementwiseNode [ OK ] V3FormatParserTest.canParseProdInElementwiseNode (0 ms) [ RUN ] V3FormatParserTest.canParseMulInElementwiseNode [ OK ] V3FormatParserTest.canParseMulInElementwiseNode (0 ms) [ RUN ] V3FormatParserTest.canParse5Dinput [ OK ] V3FormatParserTest.canParse5Dinput (0 ms) [ RUN ] V3FormatParserTest.DISABLE_conv3DInvalidKernel [ OK ] V3FormatParserTest.DISABLE_conv3DInvalidKernel (0 ms) [ RUN ] V3FormatParserTest.LargeWeights [ OK ] V3FormatParserTest.LargeWeights (0 ms) [ RUN ] V3FormatParserTest.IncorrectWeights [ OK ] V3FormatParserTest.IncorrectWeights (0 ms) [----------] 7 tests from V3FormatParserTest (1 ms total) [----------] 15 tests from OutputControllerTest [ RUN ] OutputControllerTest.failedToCreateWithEmptyOutData [ OK ] OutputControllerTest.failedToCreateWithEmptyOutData (0 ms) [ RUN ] OutputControllerTest.failedToCreateWithNullOutData [ OK ] OutputControllerTest.failedToCreateWithNullOutData (0 ms) [ RUN ] OutputControllerTest.canCreateOutputController [ OK ] OutputControllerTest.canCreateOutputController (1 ms) [ RUN ] OutputControllerTest.canGetChanges [ OK ] OutputControllerTest.canGetChanges (0 ms) [ RUN ] OutputControllerTest.canSetShapes [ OK ] OutputControllerTest.canSetShapes (0 ms) [ RUN ] OutputControllerTest.noThrowOnGetWithExcessShapes [ OK ] OutputControllerTest.noThrowOnGetWithExcessShapes (0 ms) [ RUN ] OutputControllerTest.throwOnPropagateWithNotEnoughShapes [ OK ] OutputControllerTest.throwOnPropagateWithNotEnoughShapes (0 ms) [ RUN ] OutputControllerTest.throwOnPropagateWithExcessShapes [ OK ] OutputControllerTest.throwOnPropagateWithExcessShapes (0 ms) [ RUN ] OutputControllerTest.throwOnPropagateWithEmptyLaunchers [ OK ] OutputControllerTest.throwOnPropagateWithEmptyLaunchers (0 ms) [ RUN ] OutputControllerTest.throwOnPropagateWithoutProperLauncher [ OK ] OutputControllerTest.throwOnPropagateWithoutProperLauncher (0 ms) [ RUN ] OutputControllerTest.canPropagateShapes [ OK ] OutputControllerTest.canPropagateShapes (0 ms) [ RUN ] OutputControllerTest.throwOnApplyWithNotEnoughShapes [ OK ] OutputControllerTest.throwOnApplyWithNotEnoughShapes (0 ms) [ RUN ] OutputControllerTest.throwOnApplyWithExcessShapes [ OK ] OutputControllerTest.throwOnApplyWithExcessShapes (0 ms) [ RUN ] OutputControllerTest.canApplyChanges [ OK ] OutputControllerTest.canApplyChanges (0 ms) [ RUN ] OutputControllerTest.canResetShapes [ OK ] OutputControllerTest.canResetShapes (0 ms) [----------] 15 tests from OutputControllerTest (1 ms total) [----------] 2 tests from ShapeInferHolderTest [ RUN ] ShapeInferHolderTest.canCreateHolder [ OK ] ShapeInferHolderTest.canCreateHolder (0 ms) [ RUN ] ShapeInferHolderTest.returnNullForNotKnown [ OK ] ShapeInferHolderTest.returnNullForNotKnown (0 ms) [----------] 2 tests from ShapeInferHolderTest (0 ms total) [----------] 15 tests from InputReshapeLauncherTest [ RUN ] InputReshapeLauncherTest.failedToCreateWithNullLayer [ OK ] InputReshapeLauncherTest.failedToCreateWithNullLayer (0 ms) [ RUN ] InputReshapeLauncherTest.failedToCreateWithEmptyOutData [ OK ] InputReshapeLauncherTest.failedToCreateWithEmptyOutData (0 ms) [ RUN ] InputReshapeLauncherTest.failedToCreateWithNullOutData [ OK ] InputReshapeLauncherTest.failedToCreateWithNullOutData (0 ms) [ RUN ] InputReshapeLauncherTest.failedToCreateWithNotInputType [ OK ] InputReshapeLauncherTest.failedToCreateWithNotInputType (0 ms) [ RUN ] InputReshapeLauncherTest.canCreateReshapeLauncher [ OK ] InputReshapeLauncherTest.canCreateReshapeLauncher (0 ms) [ RUN ] InputReshapeLauncherTest.canPushShapes [ OK ] InputReshapeLauncherTest.canPushShapes (0 ms) [ RUN ] InputReshapeLauncherTest.canPropagateWithNotEnoughShapes [ OK ] InputReshapeLauncherTest.canPropagateWithNotEnoughShapes (0 ms) [ RUN ] InputReshapeLauncherTest.throwOnPropagateWithEmptyLaunchers [ OK ] InputReshapeLauncherTest.throwOnPropagateWithEmptyLaunchers (0 ms) [ RUN ] InputReshapeLauncherTest.throwOnPropagateWithoutProperLauncher [ OK ] InputReshapeLauncherTest.throwOnPropagateWithoutProperLauncher (0 ms) [ RUN ] InputReshapeLauncherTest.canPropagate [ OK ] InputReshapeLauncherTest.canPropagate (0 ms) [ RUN ] InputReshapeLauncherTest.canReset [ OK ] InputReshapeLauncherTest.canReset (0 ms) [ RUN ] InputReshapeLauncherTest.canApplyWithoutSettingShapes [ OK ] InputReshapeLauncherTest.canApplyWithoutSettingShapes (0 ms) [ RUN ] InputReshapeLauncherTest.canNotApplyForLayerWithAnotherName [ OK ] InputReshapeLauncherTest.canNotApplyForLayerWithAnotherName (0 ms) [ RUN ] InputReshapeLauncherTest.canApplyChanges [ OK ] InputReshapeLauncherTest.canApplyChanges (0 ms) [ RUN ] InputReshapeLauncherTest.canGetShapesFromLayer [ OK ] InputReshapeLauncherTest.canGetShapesFromLayer (1 ms) [----------] 15 tests from InputReshapeLauncherTest (1 ms total) [----------] 10 tests from InputControllerTest [ RUN ] InputControllerTest.failedToCreateWithEmptyInsData [ OK ] InputControllerTest.failedToCreateWithEmptyInsData (0 ms) [ RUN ] InputControllerTest.failedToCreateWithNullData [ OK ] InputControllerTest.failedToCreateWithNullData (0 ms) [ RUN ] InputControllerTest.canCreateInputController [ OK ] InputControllerTest.canCreateInputController (0 ms) [ RUN ] InputControllerTest.canPushShapes [ OK ] InputControllerTest.canPushShapes (0 ms) [ RUN ] InputControllerTest.throwOnGetWithNotEnoughShapes [ OK ] InputControllerTest.throwOnGetWithNotEnoughShapes (0 ms) [ RUN ] InputControllerTest.canGetWithNotEnoughShapes [ OK ] InputControllerTest.canGetWithNotEnoughShapes (0 ms) [ RUN ] InputControllerTest.canGetChanges [ OK ] InputControllerTest.canGetChanges (0 ms) [ RUN ] InputControllerTest.throwOnApplyWithNotEnoughShapes [ OK ] InputControllerTest.throwOnApplyWithNotEnoughShapes (0 ms) [ RUN ] InputControllerTest.canApplyChanges [ OK ] InputControllerTest.canApplyChanges (0 ms) [ RUN ] InputControllerTest.canResetShapes [ OK ] InputControllerTest.canResetShapes (0 ms) [----------] 10 tests from InputControllerTest (0 ms total) [----------] 16 tests from ReshapeLauncherTest [ RUN ] ReshapeLauncherTest.failedToCreateWithNullLayer [ OK ] ReshapeLauncherTest.failedToCreateWithNullLayer (0 ms) [ RUN ] ReshapeLauncherTest.failedToCreateWithNullInsData [ OK ] ReshapeLauncherTest.failedToCreateWithNullInsData (0 ms) [ RUN ] ReshapeLauncherTest.failedToCreateWithExpiredInsData [ OK ] ReshapeLauncherTest.failedToCreateWithExpiredInsData (0 ms) [ RUN ] ReshapeLauncherTest.failedToCreateWithEmptyOutData [ OK ] ReshapeLauncherTest.failedToCreateWithEmptyOutData (0 ms) [ RUN ] ReshapeLauncherTest.failedToCreateWithNullOutData [ OK ] ReshapeLauncherTest.failedToCreateWithNullOutData (0 ms) [ RUN ] ReshapeLauncherTest.failedToCreateWithEmptyImpl [ OK ] ReshapeLauncherTest.failedToCreateWithEmptyImpl (0 ms) [ RUN ] ReshapeLauncherTest.canCreateReshapeLauncher [ OK ] ReshapeLauncherTest.canCreateReshapeLauncher (0 ms) [ RUN ] ReshapeLauncherTest.throwOnReshapeWihtNotEnoughShapes [ OK ] ReshapeLauncherTest.throwOnReshapeWihtNotEnoughShapes (0 ms) [ RUN ] ReshapeLauncherTest.implIsCalledOnReshape [ OK ] ReshapeLauncherTest.implIsCalledOnReshape (0 ms) [ RUN ] ReshapeLauncherTest.canApplyChanges [ OK ] ReshapeLauncherTest.canApplyChanges (0 ms) [ RUN ] ReshapeLauncherTest.throwOnApplyingWithNotEnoughOutput [ OK ] ReshapeLauncherTest.throwOnApplyingWithNotEnoughOutput (0 ms) [ RUN ] ReshapeLauncherTest.throwOnApplyingWithNotEnoughShapes [ OK ] ReshapeLauncherTest.throwOnApplyingWithNotEnoughShapes (0 ms) [ RUN ] ReshapeLauncherTest.canNotApplyForLayerWithAnotherName [ OK ] ReshapeLauncherTest.canNotApplyForLayerWithAnotherName (0 ms) [ RUN ] ReshapeLauncherTest.canNotApplyForLayerWithEmptyInShapes [ OK ] ReshapeLauncherTest.canNotApplyForLayerWithEmptyInShapes (1 ms) [ RUN ] ReshapeLauncherTest.canNotApplyForLayerWithEmptyOutShapes [ OK ] ReshapeLauncherTest.canNotApplyForLayerWithEmptyOutShapes (0 ms) [ RUN ] ReshapeLauncherTest.canReset [ OK ] ReshapeLauncherTest.canReset (0 ms) [----------] 16 tests from ReshapeLauncherTest (1 ms total) [----------] 6 tests from ReshaperTest [ RUN ] ReshaperTest.canCreateReshaper [ OK ] ReshaperTest.canCreateReshaper (0 ms) [ RUN ] ReshaperTest.throwOnAddNullExtension [ OK ] ReshaperTest.throwOnAddNullExtension (0 ms) [ RUN ] ReshaperTest.canAddExtensionWithNotRegistered [ OK ] ReshaperTest.canAddExtensionWithNotRegistered (0 ms) [ RUN ] ReshaperTest.throwOnExtensionWithAlreadyRegisteredImpl [ OK ] ReshaperTest.throwOnExtensionWithAlreadyRegisteredImpl (1 ms) [ RUN ] ReshaperTest.canResetOnReshape [ OK ] ReshaperTest.canResetOnReshape (1 ms) [ RUN ] ReshaperTest.canUpdateFakeImpl [ OK ] ReshaperTest.canUpdateFakeImpl (0 ms) [----------] 6 tests from ReshaperTest (2 ms total) [----------] 12 tests from V2TopologyVerificationTests [ RUN ] V2TopologyVerificationTests.testNoThrow [ OK ] V2TopologyVerificationTests.testNoThrow (0 ms) [ RUN ] V2TopologyVerificationTests.testDefaultPrecisionsForFP16InputAndOutputLayers [ OK ] V2TopologyVerificationTests.testDefaultPrecisionsForFP16InputAndOutputLayers (0 ms) [ RUN ] V2TopologyVerificationTests.testDefaultPrecisionsFP32InputAndOutputLayers [ OK ] V2TopologyVerificationTests.testDefaultPrecisionsFP32InputAndOutputLayers (1 ms) [ RUN ] V2TopologyVerificationTests.testDefaultPrecisionsForQ78InputAndOutputLayers [ OK ] V2TopologyVerificationTests.testDefaultPrecisionsForQ78InputAndOutputLayers (0 ms) [ RUN ] V2TopologyVerificationTests.testCheckConvolutionInputDim_More [ OK ] V2TopologyVerificationTests.testCheckConvolutionInputDim_More (0 ms) [ RUN ] V2TopologyVerificationTests.testCheckConvolutionInputDim_Less [ OK ] V2TopologyVerificationTests.testCheckConvolutionInputDim_Less (0 ms) [ RUN ] V2TopologyVerificationTests.testCheckPoolingInputDim_Less [ OK ] V2TopologyVerificationTests.testCheckPoolingInputDim_Less (1 ms) [ RUN ] V2TopologyVerificationTests.testCheckPoolingInputDim_More [ OK ] V2TopologyVerificationTests.testCheckPoolingInputDim_More (0 ms) [ RUN ] V2TopologyVerificationTests.testLeayerPrecisionIsNotMIXED [ OK ] V2TopologyVerificationTests.testLeayerPrecisionIsNotMIXED (0 ms) [ RUN ] V2TopologyVerificationTests.testMixedPrecisionIfLayerAndNetworkPrecisionsDiffer [ OK ] V2TopologyVerificationTests.testMixedPrecisionIfLayerAndNetworkPrecisionsDiffer (1 ms) [ RUN ] V2TopologyVerificationTests.throwsIfCropDimIsTooBig [ OK ] V2TopologyVerificationTests.throwsIfCropDimIsTooBig (0 ms) [ RUN ] V2TopologyVerificationTests.testNoThrowWithProperCropParameters [ OK ] V2TopologyVerificationTests.testNoThrowWithProperCropParameters (0 ms) [----------] 12 tests from V2TopologyVerificationTests (3 ms total) [----------] 2 tests from GNAAllocatorTest [ RUN ] GNAAllocatorTest.canAllocateStdMemory [ OK ] GNAAllocatorTest.canAllocateStdMemory (0 ms) [ RUN ] GNAAllocatorTest.canAllocateGNAMemory [ OK ] GNAAllocatorTest.canAllocateGNAMemory (0 ms) [----------] 2 tests from GNAAllocatorTest (0 ms total) [----------] 3 tests from GNAAOTTests [ RUN ] GNAAOTTests.AffineWith2AffineOutputs_canbe_export_imported [ OK ] GNAAOTTests.AffineWith2AffineOutputs_canbe_export_imported (2 ms) [ RUN ] GNAAOTTests.AffineWith2AffineOutputs_canbe_imported_verify_structure [ OK ] GNAAOTTests.AffineWith2AffineOutputs_canbe_imported_verify_structure (2 ms) [ RUN ] GNAAOTTests.CanConvertFromAOTtoSueModel [ OK ] GNAAOTTests.CanConvertFromAOTtoSueModel (1 ms) [----------] 3 tests from GNAAOTTests (5 ms total) [----------] 5 tests from I8QuantisationTest [ RUN ] I8QuantisationTest.canQuantizeFCLayer [ OK ] I8QuantisationTest.canQuantizeFCLayer (0 ms) [ RUN ] I8QuantisationTest.canQuantizeActivation [ OK ] I8QuantisationTest.canQuantizeActivation (1 ms) [ RUN ] I8QuantisationTest.inputPrecisionIs16Bits [ OK ] I8QuantisationTest.inputPrecisionIs16Bits (0 ms) [ RUN ] I8QuantisationTest.failIfFCDimensionIs1 [ OK ] I8QuantisationTest.failIfFCDimensionIs1 (0 ms) [ RUN ] I8QuantisationTest.outputAffinePrecisionIs32Bits [ OK ] I8QuantisationTest.outputAffinePrecisionIs32Bits (0 ms) [----------] 5 tests from I8QuantisationTest (1 ms total) [----------] 16 tests from PWLAproximationTest [ RUN ] PWLAproximationTest.forTanhOnRecursiveAlgoWithPrecisionThresholdIsSuccess [ OK ] PWLAproximationTest.forTanhOnRecursiveAlgoWithPrecisionThresholdIsSuccess (4 ms) [ RUN ] PWLAproximationTest.forSigmoidOnRecursiveAlgoWithPrecisionThresholdIsSuccess [ OK ] PWLAproximationTest.forSigmoidOnRecursiveAlgoWithPrecisionThresholdIsSuccess (6 ms) [ RUN ] PWLAproximationTest.forReLUonRecursiveAlgoWithPrecisionThresholdIsSuccess [ OK ] PWLAproximationTest.forReLUonRecursiveAlgoWithPrecisionThresholdIsSuccess (0 ms) [ RUN ] PWLAproximationTest.forLeakyReLUonRecursiveAlgoWithPrecisionThresholdIsSuccess [ OK ] PWLAproximationTest.forLeakyReLUonRecursiveAlgoWithPrecisionThresholdIsSuccess (1 ms) [ RUN ] PWLAproximationTest.forClampOnRecursiveAlgoWithPrecisionThresholdIsSuccess [ OK ] PWLAproximationTest.forClampOnRecursiveAlgoWithPrecisionThresholdIsSuccess (3 ms) [ RUN ] PWLAproximationTest.forTanhOnUniformAlgoWithPrecisionThresholdIsSuccess [ OK ] PWLAproximationTest.forTanhOnUniformAlgoWithPrecisionThresholdIsSuccess (3 ms) [ RUN ] PWLAproximationTest.forSigmoidOnUniformAlgoWithPrecisionThresholdIsSuccess [ OK ] PWLAproximationTest.forSigmoidOnUniformAlgoWithPrecisionThresholdIsSuccess (3 ms) [ RUN ] PWLAproximationTest.forClampOnUniformAlgoWithPrecisionThresholdIsSuccess [ OK ] PWLAproximationTest.forClampOnUniformAlgoWithPrecisionThresholdIsSuccess (3 ms) [ RUN ] PWLAproximationTest.forSigmoidonRecursiveAlgoWithSegmentThresholdIsSuccess [ OK ] PWLAproximationTest.forSigmoidonRecursiveAlgoWithSegmentThresholdIsSuccess (5 ms) [ RUN ] PWLAproximationTest.forTanhonRecursiveAlgoWithSegmentThresholdIsSuccess [ OK ] PWLAproximationTest.forTanhonRecursiveAlgoWithSegmentThresholdIsSuccess (4 ms) [ RUN ] PWLAproximationTest.forReLUonRecursiveAlgoWithSegmentThresholdIsSuccess [ OK ] PWLAproximationTest.forReLUonRecursiveAlgoWithSegmentThresholdIsSuccess (1 ms) [ RUN ] PWLAproximationTest.forLeakyReLUonRecursiveAlgoWithSegmentThresholdIsSuccess [ OK ] PWLAproximationTest.forLeakyReLUonRecursiveAlgoWithSegmentThresholdIsSuccess (1 ms) [ RUN ] PWLAproximationTest.forClampOnRecursiveAlgoWithSegmentThresholdIsSuccess [ OK ] PWLAproximationTest.forClampOnRecursiveAlgoWithSegmentThresholdIsSuccess (3 ms) [ RUN ] PWLAproximationTest.forSigmoidonUniformAlgoWithSegmentThresholdIsSuccess [ OK ] PWLAproximationTest.forSigmoidonUniformAlgoWithSegmentThresholdIsSuccess (4 ms) [ RUN ] PWLAproximationTest.forTanhonUniformAlgoWithSegmentThresholdIsSuccess [ OK ] PWLAproximationTest.forTanhonUniformAlgoWithSegmentThresholdIsSuccess (2 ms) [ RUN ] PWLAproximationTest.forClampOnUniformAlgoWithSegmentThresholdIsSuccess [ OK ] PWLAproximationTest.forClampOnUniformAlgoWithSegmentThresholdIsSuccess (3 ms) [----------] 16 tests from PWLAproximationTest (47 ms total) [----------] 2 tests from QueryStateTest [ RUN ] QueryStateTest.returnEmptyCollectionOfStatesIfNoMemoryInIR [ OK ] QueryStateTest.returnEmptyCollectionOfStatesIfNoMemoryInIR (2 ms) [ RUN ] QueryStateTest.returnNonEmptyCollectionOfStatesForMemoryIR [ OK ] QueryStateTest.returnNonEmptyCollectionOfStatesForMemoryIR (1 ms) [----------] 2 tests from QueryStateTest (3 ms total) [----------] 4 tests from GNAHWPrecisionTest [ RUN ] GNAHWPrecisionTest.defaultPrecisionIsInt16 [ OK ] GNAHWPrecisionTest.defaultPrecisionIsInt16 (0 ms) [ RUN ] GNAHWPrecisionTest.canPassInt8Precision [ OK ] GNAHWPrecisionTest.canPassInt8Precision (0 ms) [ RUN ] GNAHWPrecisionTest.canPassInt16Precision [ OK ] GNAHWPrecisionTest.canPassInt16Precision (0 ms) [ RUN ] GNAHWPrecisionTest.failToCreatePluginWithUnsuportedPrecision [ OK ] GNAHWPrecisionTest.failToCreatePluginWithUnsuportedPrecision (0 ms) [----------] 4 tests from GNAHWPrecisionTest (1 ms total) [----------] 10 tests from GNAConfigTest [ RUN ] GNAConfigTest.reportAnErrorIfConfigNotFound [ OK ] GNAConfigTest.reportAnErrorIfConfigNotFound (0 ms) [ RUN ] GNAConfigTest.canFindConfiguration [ OK ] GNAConfigTest.canFindConfiguration (0 ms) [ RUN ] GNAConfigTest.canPassTroughNetworkAfterFindConfiguration [ OK ] GNAConfigTest.canPassTroughNetworkAfterFindConfiguration (0 ms) [ RUN ] GNAConfigTest.canNotMatchWithDefaultDevice [ OK ] GNAConfigTest.canNotMatchWithDefaultDevice (0 ms) [ RUN ] GNAConfigTest.canMatchWithDefaultDevice [ OK ] GNAConfigTest.canMatchWithDefaultDevice (0 ms) [ RUN ] GNAConfigTest.canMatchWith1AsyncThread [ OK ] GNAConfigTest.canMatchWith1AsyncThread (1 ms) [ RUN ] GNAConfigTest.canMatchWith4AsyncThreads [ OK ] GNAConfigTest.canMatchWith4AsyncThreads (0 ms) [ RUN ] GNAConfigTest.canNOTMatchWith0AsyncThreads [ OK ] GNAConfigTest.canNOTMatchWith0AsyncThreads (0 ms) [ RUN ] GNAConfigTest.canNOTMatchWith128AsyncThreads [ OK ] GNAConfigTest.canNOTMatchWith128AsyncThreads (0 ms) [ RUN ] GNAConfigTest.canMatchWithSingleMultipleOMPThreads [ OK ] GNAConfigTest.canMatchWithSingleMultipleOMPThreads (1 ms) [----------] 10 tests from GNAConfigTest (2 ms total) [----------] 20 tests from GNAMemoryTest [ RUN ] GNAMemoryTest.canStoreActualBlob [ OK ] GNAMemoryTest.canStoreActualBlob (0 ms) [ RUN ] GNAMemoryTest.canStore2Blobs [ OK ] GNAMemoryTest.canStore2Blobs (0 ms) [ RUN ] GNAMemoryTest.canStoreBlobsALIGNED [ OK ] GNAMemoryTest.canStoreBlobsALIGNED (0 ms) [ RUN ] GNAMemoryTest.canStore2BlobsALIGNED [ OK ] GNAMemoryTest.canStore2BlobsALIGNED (0 ms) [ RUN ] GNAMemoryTest.canReserveData [ OK ] GNAMemoryTest.canReserveData (0 ms) [ RUN ] GNAMemoryTest.canReserveDataByVoid [ OK ] GNAMemoryTest.canReserveDataByVoid (0 ms) [ RUN ] GNAMemoryTest.canReserveAndPushData [ OK ] GNAMemoryTest.canReserveAndPushData (0 ms) [ RUN ] GNAMemoryTest.canBindAndResolve [ OK ] GNAMemoryTest.canBindAndResolve (0 ms) [ RUN ] GNAMemoryTest.canBindTransitevlyAndResolve [ OK ] GNAMemoryTest.canBindTransitevlyAndResolve (0 ms) [ RUN ] GNAMemoryTest.canBindTransitevlyWithOffsetsAndResolve [ OK ] GNAMemoryTest.canBindTransitevlyWithOffsetsAndResolve (0 ms) [ RUN ] GNAMemoryTest.canBindWithOffsetAndResolve [ OK ] GNAMemoryTest.canBindWithOffsetAndResolve (0 ms) [ RUN ] GNAMemoryTest.canPushLocal [ OK ] GNAMemoryTest.canPushLocal (0 ms) [ RUN ] GNAMemoryTest.canPushValue [ OK ] GNAMemoryTest.canPushValue (0 ms) [ RUN ] GNAMemoryTest.canPushReadOnlyValue [ OK ] GNAMemoryTest.canPushReadOnlyValue (0 ms) [ RUN ] GNAMemoryTest.canCalculateReadWriteSectionSize [ OK ] GNAMemoryTest.canCalculateReadWriteSectionSize (0 ms) [ RUN ] GNAMemoryTest.canCalculateReadWriteSectionSizeWithAlignment [ OK ] GNAMemoryTest.canCalculateReadWriteSectionSizeWithAlignment (0 ms) [ RUN ] GNAMemoryTest.canSetUpReadWriteSectionPtr [ OK ] GNAMemoryTest.canSetUpReadWriteSectionPtr (0 ms) [ RUN ] GNAMemoryTest.canUpdateSizeOfPushRequestWithBindRequest [ OK ] GNAMemoryTest.canUpdateSizeOfPushRequestWithBindRequest (0 ms) [ RUN ] GNAMemoryTest.canUpdateSizeOfPushRequestWithBindRequestWhenPush [ OK ] GNAMemoryTest.canUpdateSizeOfPushRequestWithBindRequestWhenPush (0 ms) [ RUN ] GNAMemoryTest.canUpdateSizeOfPushRequestWithBindRequestWhenAlloc [ OK ] GNAMemoryTest.canUpdateSizeOfPushRequestWithBindRequestWhenAlloc (0 ms) [----------] 20 tests from GNAMemoryTest (0 ms total) [----------] 4 tests from GNAProcTypeTest [ RUN ] GNAProcTypeTest.defaultProcTypeIsSWEXACT [ OK ] GNAProcTypeTest.defaultProcTypeIsSWEXACT (1 ms) [ RUN ] GNAProcTypeTest.canPassHWProcTypeToGNA [ OK ] GNAProcTypeTest.canPassHWProcTypeToGNA (0 ms) [ RUN ] GNAProcTypeTest.canPassSWProcTypeToGNA [ OK ] GNAProcTypeTest.canPassSWProcTypeToGNA (0 ms) [ RUN ] GNAProcTypeTest.canPassSWEXACTProcTypeToGNA [ OK ] GNAProcTypeTest.canPassSWEXACTProcTypeToGNA (1 ms) [----------] 4 tests from GNAProcTypeTest (2 ms total) [----------] 32 tests from I16QuantisationTest [ RUN ] I16QuantisationTest.canQuantizeFCLayer [ OK ] I16QuantisationTest.canQuantizeFCLayer (0 ms) [ RUN ] I16QuantisationTest.canQuantizeActivation [ OK ] I16QuantisationTest.canQuantizeActivation (0 ms) [ RUN ] I16QuantisationTest.outputAffinePrecisionIs32Bits [ OK ] I16QuantisationTest.outputAffinePrecisionIs32Bits (0 ms) [ RUN ] I16QuantisationTest.canQuantizeLstmLikeTopology [ OK ] I16QuantisationTest.canQuantizeLstmLikeTopology (0 ms) [ RUN ] I16QuantisationTest.OnlyAffine_NoActivationInsertion [ OK ] I16QuantisationTest.OnlyAffine_NoActivationInsertion (1 ms) [ RUN ] I16QuantisationTest.OnlyAffine_NoActivationInsertion_ProfilingEnabled [ OK ] I16QuantisationTest.OnlyAffine_NoActivationInsertion_ProfilingEnabled (0 ms) [ RUN ] I16QuantisationTest.OnlyAffineWithNanScaleFactorFails [ OK ] I16QuantisationTest.OnlyAffineWithNanScaleFactorFails (0 ms) [ RUN ] I16QuantisationTest.OnlyAffineWithInfScaleFactorFails [ OK ] I16QuantisationTest.OnlyAffineWithInfScaleFactorFails (0 ms) [ RUN ] I16QuantisationTest.AffineToMemoryWillResultInActivationInsertion [ OK ] I16QuantisationTest.AffineToMemoryWillResultInActivationInsertion (1 ms) [ RUN ] I16QuantisationTest.EltwiseToMemoryWithNoOutputActivationInsertion [ OK ] I16QuantisationTest.EltwiseToMemoryWithNoOutputActivationInsertion (1 ms) [ RUN ] I16QuantisationTest.EltwiseToMemory_ActivationInsertion [ OK ] I16QuantisationTest.EltwiseToMemory_ActivationInsertion (0 ms) [ RUN ] I16QuantisationTest.SplitFollowedByActivation_DummyDiagonalAffineInsertion [ OK ] I16QuantisationTest.SplitFollowedByActivation_DummyDiagonalAffineInsertion (1 ms) [ RUN ] I16QuantisationTest.SplitFollowedByFCAndEltwiseOnCPU [ OK ] I16QuantisationTest.SplitFollowedByFCAndEltwiseOnCPU (1 ms) [ RUN ] I16QuantisationTest.SliceFollowedByFCAndEltwiseOnCPU [ OK ] I16QuantisationTest.SliceFollowedByFCAndEltwiseOnCPU (0 ms) [ RUN ] I16QuantisationTest.SliceFollowedByAlignedFCAndEltwiseOnCPU [ OK ] I16QuantisationTest.SliceFollowedByAlignedFCAndEltwiseOnCPU (0 ms) [ RUN ] I16QuantisationTest.SliceFollowedBy2FCsAnd2EltwisesOnCPU [ OK ] I16QuantisationTest.SliceFollowedBy2FCsAnd2EltwisesOnCPU (1 ms) [ RUN ] I16QuantisationTest.EltwiseSumm_onlyOneIdentityInsertion [ OK ] I16QuantisationTest.EltwiseSumm_onlyOneIdentityInsertion (1 ms) [ RUN ] I16QuantisationTest.canDetectLeakyRelu [ OK ] I16QuantisationTest.canDetectLeakyRelu (5 ms) [ RUN ] I16QuantisationTest.MaxPool_followedAfterActivation [ OK ] I16QuantisationTest.MaxPool_followedAfterActivation (9 ms) [ RUN ] I16QuantisationTest.EltwiseMull_willInsertTwoIdentities [ OK ] I16QuantisationTest.EltwiseMull_willInsertTwoIdentities (0 ms) [ RUN ] I16QuantisationTest.ConcatPropagateForwardWithSuccessOnCPU [ OK ] I16QuantisationTest.ConcatPropagateForwardWithSuccessOnCPU (1 ms) [ RUN ] I16QuantisationTest.DoubleConcatPropageteForwardWithSuccessOnCPU [ OK ] I16QuantisationTest.DoubleConcatPropageteForwardWithSuccessOnCPU (1 ms) [ RUN ] I16QuantisationTest.ScaleShift_Affine_WillResultInIdentityInsertion [ OK ] I16QuantisationTest.ScaleShift_Affine_WillResultInIdentityInsertion (0 ms) [ RUN ] I16QuantisationTest.ClampFollowedByTanh_ResultInDiagonalInsertion [ OK ] I16QuantisationTest.ClampFollowedByTanh_ResultInDiagonalInsertion (2 ms) [ RUN ] I16QuantisationTest.EltwiseWithMemoryAndActivationInput_ResultInDiagonalInsertion [ OK ] I16QuantisationTest.EltwiseWithMemoryAndActivationInput_ResultInDiagonalInsertion (2 ms) [ RUN ] I16QuantisationTest.AffineWith2AffineOutputs_ResultInOnlyOneIdentityInsertion [ OK ] I16QuantisationTest.AffineWith2AffineOutputs_ResultInOnlyOneIdentityInsertion (1 ms) [ RUN ] I16QuantisationTest.CropWithoutOffsetPropagateForwardWithSuccessOnCPU [ OK ] I16QuantisationTest.CropWithoutOffsetPropagateForwardWithSuccessOnCPU (1 ms) [ RUN ] I16QuantisationTest.CropWithAlignedOffsetPropagateForwardWithSuccessOnCPU [ OK ] I16QuantisationTest.CropWithAlignedOffsetPropagateForwardWithSuccessOnCPU (0 ms) [ RUN ] I16QuantisationTest.CropWithOffsetPropagateForwardWithSuccessOnCPU [ OK ] I16QuantisationTest.CropWithOffsetPropagateForwardWithSuccessOnCPU (0 ms) [ RUN ] I16QuantisationTest.CropWithMaxOffsetPropagateForwardWithSuccessOnCPU [ OK ] I16QuantisationTest.CropWithMaxOffsetPropagateForwardWithSuccessOnCPU (1 ms) [ RUN ] I16QuantisationTest.CropWithOffsetAfterFCPropagateForwardWithSuccessOnCPU [ OK ] I16QuantisationTest.CropWithOffsetAfterFCPropagateForwardWithSuccessOnCPU (0 ms) [ RUN ] I16QuantisationTest.CopySimpleCasePropagateForwardWithSuccessOnCPU [ OK ] I16QuantisationTest.CopySimpleCasePropagateForwardWithSuccessOnCPU (0 ms) [----------] 32 tests from I16QuantisationTest (31 ms total) [----------] 7 tests from MKLDNNDumpTests [ RUN ] MKLDNNDumpTests.UnallocatedBlob_NoDump [ OK ] MKLDNNDumpTests.UnallocatedBlob_NoDump (0 ms) [ RUN ] MKLDNNDumpTests.EmptyBlob_NoDump [ OK ] MKLDNNDumpTests.EmptyBlob_NoDump (0 ms) [ RUN ] MKLDNNDumpTests.Ser [ OK ] MKLDNNDumpTests.Ser (1 ms) [ RUN ] MKLDNNDumpTests.SerDeser [ OK ] MKLDNNDumpTests.SerDeser (0 ms) [ RUN ] MKLDNNDumpTests.SerDeserWithScales [ OK ] MKLDNNDumpTests.SerDeserWithScales (0 ms) [ RUN ] MKLDNNDumpTests.SerU8AsTxt [ OK ] MKLDNNDumpTests.SerU8AsTxt (0 ms) [ RUN ] MKLDNNDumpTests.SerAsTxt [ OK ] MKLDNNDumpTests.SerAsTxt (0 ms) [----------] 7 tests from MKLDNNDumpTests (1 ms total) [----------] 1 test from MKLDNNConstantPropagationTests [ RUN ] MKLDNNConstantPropagationTests.ConcatAfterConstLayers MEM_USAGE=221736KB [ OK ] MKLDNNConstantPropagationTests.ConcatAfterConstLayers (1 ms) [----------] 1 test from MKLDNNConstantPropagationTests (1 ms total) [----------] 2 tests from MKLDNNLayersTests [ RUN ] MKLDNNLayersTests.DumpSimpleGraph /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/dumper_test.cpp:76: Failure Expected: layers.size() Which is: 3 To be equal to: 4 [ FAILED ] MKLDNNLayersTests.DumpSimpleGraph (6 ms) [ RUN ] MKLDNNLayersTests.DumpSimpleGraphToDot strict digraph Network { layer_Input0 [shape="box", style="filled", fillcolor="#D9EAD3", fillcolor="#D9EAD3", label="Input0\ntype: Input\nimpl: unknown\nprecision: FP32"]; data_Input0_out0 [shape="ellipse", style="filled", fillcolor="#FCF6E3", label="Input0_out0\ndims: [16, 16, 3, 2]\nprecision: FP32"]; layer_Input0 -> data_Input0_out0; layer_Convolution1 [shape="box", style="filled", fillcolor="#D9EAD3", fillcolor="#D9EAD3", label="Convolution1\ntype: Conv_Activ\nimpl: jit_gemm_FP32\nprecision: FP32"]; data_Convolution1_out0 [shape="ellipse", style="filled", fillcolor="#FCF6E3", label="Convolution1_out0\ndims: [16, 16, 16, 2]\nprecision: FP32"]; layer_Convolution1 -> data_Convolution1_out0; data_Input0_out0 -> layer_Convolution1; layer_out_Relu2 [shape="box", style="filled", fillcolor="#D9EAD3", fillcolor="#D9EAD3", label="out_Relu2\ntype: Output\nimpl: unknown_FP32\nprecision: FP32"]; data_Convolution1_out0 -> layer_out_Relu2; } /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/dumper_test.cpp:96: Failure Expected: std::count(dot.begin(), dot.end(), '[') Which is: 7 To be equal to: 10 [ FAILED ] MKLDNNLayersTests.DumpSimpleGraphToDot (4 ms) [----------] 2 tests from MKLDNNLayersTests (10 ms total) [----------] 10 tests from MKLDNNGraphGenericTests [ RUN ] MKLDNNGraphGenericTests.canGetPrimitiveDescriptorsList MEM_USAGE=287272KB [ OK ] MKLDNNGraphGenericTests.canGetPrimitiveDescriptorsList (0 ms) [ RUN ] MKLDNNGraphGenericTests.DontCreateGPUGenericPrimitive MEM_USAGE=287272KB [ OK ] MKLDNNGraphGenericTests.DontCreateGPUGenericPrimitive (0 ms) [ RUN ] MKLDNNGraphGenericTests.ExecuteConstGenericPrimitive MEM_USAGE=287272KB [ OK ] MKLDNNGraphGenericTests.ExecuteConstGenericPrimitive (1 ms) [ RUN ] MKLDNNGraphGenericTests.ExecuteGenericPrimitive MEM_USAGE=287272KB [ OK ] MKLDNNGraphGenericTests.ExecuteGenericPrimitive (0 ms) [ RUN ] MKLDNNGraphGenericTests.ExecuteGenericPrimitiveWithTwoOutputs MEM_USAGE=287272KB [ OK ] MKLDNNGraphGenericTests.ExecuteGenericPrimitiveWithTwoOutputs (2 ms) [ RUN ] MKLDNNGraphGenericTests.ExecuteGenericInPlaceConcat MEM_USAGE=287272KB [ OK ] MKLDNNGraphGenericTests.ExecuteGenericInPlaceConcat (0 ms) [ RUN ] MKLDNNGraphGenericTests.ExecuteGenericInPlaceSplit MEM_USAGE=287272KB [ OK ] MKLDNNGraphGenericTests.ExecuteGenericInPlaceSplit (14 ms) [ RUN ] MKLDNNGraphGenericTests.ExecuteGenericPrimitiveWithDynamicBatch MEM_USAGE=287272KB [ OK ] MKLDNNGraphGenericTests.ExecuteGenericPrimitiveWithDynamicBatch (1 ms) [ RUN ] MKLDNNGraphGenericTests.ExecuteNotInLineGRN MEM_USAGE=287272KB [ OK ] MKLDNNGraphGenericTests.ExecuteNotInLineGRN (10 ms) [ RUN ] MKLDNNGraphGenericTests.ExecuteInLineGRN MEM_USAGE=296224KB [ OK ] MKLDNNGraphGenericTests.ExecuteInLineGRN (6 ms) [----------] 10 tests from MKLDNNGraphGenericTests (35 ms total) [----------] 1 test from MKLDNNGraphConstInputTests [ RUN ] MKLDNNGraphConstInputTests.TestsConstInput MEM_USAGE=296224KB 72 [ OK ] MKLDNNGraphConstInputTests.TestsConstInput (1 ms) [----------] 1 test from MKLDNNGraphConstInputTests (1 ms total) [----------] 3 tests from MKLDNNGraphReorderTests [ RUN ] MKLDNNGraphReorderTests.cannotCreatePrimitiveDescriprorsWithoutOtherLayers MEM_USAGE=296224KB [ OK ] MKLDNNGraphReorderTests.cannotCreatePrimitiveDescriprorsWithoutOtherLayers (0 ms) [ RUN ] MKLDNNGraphReorderTests.CreateReorder MEM_USAGE=296224KB [ OK ] MKLDNNGraphReorderTests.CreateReorder (14 ms) [ RUN ] MKLDNNGraphReorderTests.CreateInPlaceReorder MEM_USAGE=296224KB [ OK ] MKLDNNGraphReorderTests.CreateInPlaceReorder (2 ms) [----------] 3 tests from MKLDNNGraphReorderTests (18 ms total) [----------] 1 test from MKLDNNGraphLeaksTests [ RUN ] MKLDNNGraphLeaksTests.MKLDNN_not_release_outputs_fp32 [ OK ] MKLDNNGraphLeaksTests.MKLDNN_not_release_outputs_fp32 (302 ms) [----------] 1 test from MKLDNNGraphLeaksTests (302 ms total) [----------] 1 test from MKLDNNGraphTwoInputInConcatTests [ RUN ] MKLDNNGraphTwoInputInConcatTests.TestSecondInputToConcat MEM_USAGE=644400KB [ OK ] MKLDNNGraphTwoInputInConcatTests.TestSecondInputToConcat (2 ms) [----------] 1 test from MKLDNNGraphTwoInputInConcatTests (2 ms total) [----------] 30 tests from MKLDNNGraphStructureTests [ RUN ] MKLDNNGraphStructureTests.TestNoRedundantReorders MEM_USAGE=644400KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_structure_test.cpp:194: Failure Expected: reorders_num Which is: 0 To be equal to: 1 [ FAILED ] MKLDNNGraphStructureTests.TestNoRedundantReorders (145 ms) [ RUN ] MKLDNNGraphStructureTests.TestRedundantReorderBeforeConvWithC_3 MEM_USAGE=644400KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_structure_test.cpp:308: Failure Expected: reorders_num Which is: 0 To be equal to: 3 [ FAILED ] MKLDNNGraphStructureTests.TestRedundantReorderBeforeConvWithC_3 (79 ms) [ RUN ] MKLDNNGraphStructureTests.TestNoRedundantReordersBeforeConcat MEM_USAGE=656524KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_structure_test.cpp:471: Failure Expected: reorders_num Which is: 0 To be equal to: 2 [ FAILED ] MKLDNNGraphStructureTests.TestNoRedundantReordersBeforeConcat (20 ms) [ RUN ] MKLDNNGraphStructureTests.TestNoRedundantReordersBeforeDWConvolution MEM_USAGE=656524KB [ OK ] MKLDNNGraphStructureTests.TestNoRedundantReordersBeforeDWConvolution (10 ms) [ RUN ] MKLDNNGraphStructureTests.TestSeveralOutputToNextLayer MEM_USAGE=656524KB [ OK ] MKLDNNGraphStructureTests.TestSeveralOutputToNextLayer (1 ms) [ RUN ] MKLDNNGraphStructureTests.TestOutputAfterInplacePlusConcat MEM_USAGE=656524KB [ OK ] MKLDNNGraphStructureTests.TestOutputAfterInplacePlusConcat (22 ms) [ RUN ] MKLDNNGraphStructureTests.TestResnetPart MEM_USAGE=656524KB [ OK ] MKLDNNGraphStructureTests.TestResnetPart (3617 ms) [ RUN ] MKLDNNGraphStructureTests.TestConcatAfterConcat MEM_USAGE=656524KB [ OK ] MKLDNNGraphStructureTests.TestConcatAfterConcat (7 ms) [ RUN ] MKLDNNGraphStructureTests.Test2ConcatFromConcat MEM_USAGE=656524KB [ OK ] MKLDNNGraphStructureTests.Test2ConcatFromConcat (4 ms) [ RUN ] MKLDNNGraphStructureTests.TestResultsAfterGroupedConvWithStrides MEM_USAGE=656524KB [ OK ] MKLDNNGraphStructureTests.TestResultsAfterGroupedConvWithStrides (2312 ms) [ RUN ] MKLDNNGraphStructureTests.TestLoadTopologyWithConstLayer MEM_USAGE=656808KB [ OK ] MKLDNNGraphStructureTests.TestLoadTopologyWithConstLayer (5 ms) [ RUN ] MKLDNNGraphStructureTests.TestLoadTopologyWithEltwiseBeforeConcat MEM_USAGE=656808KB [ OK ] MKLDNNGraphStructureTests.TestLoadTopologyWithEltwiseBeforeConcat (11 ms) [ RUN ] MKLDNNGraphStructureTests.TestNoRedundantReordersRmnet_SSSSD MEM_USAGE=656808KB unknown file: Failure C++ exception with description "Supported primitive descriptors list is empty for node: bottleneck1_1/dim_red/conv" thrown in the test body. [ FAILED ] MKLDNNGraphStructureTests.TestNoRedundantReordersRmnet_SSSSD (7 ms) [ RUN ] MKLDNNGraphStructureTests.TestFailedPartDPN92 MEM_USAGE=656808KB [ OK ] MKLDNNGraphStructureTests.TestFailedPartDPN92 (627 ms) [ RUN ] MKLDNNGraphStructureTests.TestNoRedundantReordersForXceptionTopology MEM_USAGE=656808KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_structure_test.cpp:3821: Failure Expected: reorders_num Which is: 0 To be equal to: 1 [ FAILED ] MKLDNNGraphStructureTests.TestNoRedundantReordersForXceptionTopology (107 ms) [ RUN ] MKLDNNGraphStructureTests.TestNoRedundantReordersForGrayscaleInput MEM_USAGE=656808KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_structure_test.cpp:3889: Failure Expected: reorders_num Which is: 0 To be equal to: 1 [ FAILED ] MKLDNNGraphStructureTests.TestNoRedundantReordersForGrayscaleInput (4 ms) [ RUN ] MKLDNNGraphStructureTests.TestFailedPartPlateRecognitionBarrier0001 MEM_USAGE=656808KB [ OK ] MKLDNNGraphStructureTests.TestFailedPartPlateRecognitionBarrier0001 (379 ms) [ RUN ] MKLDNNGraphStructureTests.TestFailedVNect0001 MEM_USAGE=660376KB [ OK ] MKLDNNGraphStructureTests.TestFailedVNect0001 (53 ms) [ RUN ] MKLDNNGraphStructureTests.TestFailedVNect0002 MEM_USAGE=660376KB [ OK ] MKLDNNGraphStructureTests.TestFailedVNect0002 (21 ms) [ RUN ] MKLDNNGraphStructureTests.TestFailedVNect0003 MEM_USAGE=660376KB [ OK ] MKLDNNGraphStructureTests.TestFailedVNect0003 (4 ms) [ RUN ] MKLDNNGraphStructureTests.TestConvolutionDWConvolutionSumFusing MEM_USAGE=660376KB unknown file: Failure C++ exception with description "Supported primitive descriptors list is empty for node: conv0" thrown in the test body. [ FAILED ] MKLDNNGraphStructureTests.TestConvolutionDWConvolutionSumFusing (3 ms) [ RUN ] MKLDNNGraphStructureTests.TestConstantLayerAsOutput MEM_USAGE=660376KB [ OK ] MKLDNNGraphStructureTests.TestConstantLayerAsOutput (31 ms) [ RUN ] MKLDNNGraphStructureTests.TestGemmConvolutionWithConcat MEM_USAGE=660376KB [ OK ] MKLDNNGraphStructureTests.TestGemmConvolutionWithConcat (518 ms) [ RUN ] MKLDNNGraphStructureTests.TestRefPoolingWithConcat MEM_USAGE=660376KB performance counts: conv1 EXECUTED layerType: Convolution realTime: 15575 cpu: 15575 execType: jit_gemm_FP32 fire2/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 fire2/expand1x1 EXECUTED layerType: Convolution realTime: 2551 cpu: 2551 execType: jit_gemm_FP32 fire2/expand3x3 EXECUTED layerType: Pooling realTime: 1060 cpu: 1060 execType: ref_any_FP32 fire2/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire2/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire2/squeeze1x1 EXECUTED layerType: Convolution realTime: 1114 cpu: 1114 execType: jit_gemm_FP32 out_fire2/concat NOT_RUN layerType: Output realTime: 0 cpu: 0 execType: unknown_FP32 pool1 EXECUTED layerType: Pooling realTime: 37627 cpu: 37627 execType: ref_any_FP32 relu_conv1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef Total time: 57928 microseconds performance counts: conv1 EXECUTED layerType: Convolution realTime: 10724 cpu: 10724 execType: jit_gemm_FP32 fire2/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 fire2/expand1x1 EXECUTED layerType: Convolution realTime: 1078 cpu: 1078 execType: jit_gemm_FP32 fire2/expand3x3 EXECUTED layerType: Pooling realTime: 1080 cpu: 1080 execType: ref_any_FP32 fire2/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire2/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire2/squeeze1x1 EXECUTED layerType: Convolution realTime: 1151 cpu: 1151 execType: jit_gemm_FP32 out_fire2/concat EXECUTED layerType: Output realTime: 1 cpu: 1 execType: unknown_FP32 pool1 EXECUTED layerType: Pooling realTime: 12315 cpu: 12315 execType: ref_any_FP32 relu_conv1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef Total time: 26350 microseconds performance counts: conv1 EXECUTED layerType: Convolution realTime: 13257 cpu: 13257 execType: jit_gemm_FP32 fire2/concat EXECUTED layerType: Concat realTime: 1 cpu: 1 execType: unknown_FP32 fire2/expand1x1 EXECUTED layerType: Convolution realTime: 1126 cpu: 1126 execType: jit_gemm_FP32 fire2/expand3x3 EXECUTED layerType: Pooling realTime: 1061 cpu: 1061 execType: ref_any_FP32 fire2/relu_expand1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire2/relu_squeeze1x1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef fire2/squeeze1x1 EXECUTED layerType: Convolution realTime: 1093 cpu: 1093 execType: jit_gemm_FP32 out_fire2/concat EXECUTED layerType: Output realTime: 1 cpu: 1 execType: unknown_FP32 pool1 EXECUTED layerType: Pooling realTime: 11296 cpu: 11296 execType: ref_any_FP32 relu_conv1 NOT_RUN layerType: ReLU realTime: 0 cpu: 0 execType: undef Total time: 27835 microseconds [ OK ] MKLDNNGraphStructureTests.TestRefPoolingWithConcat (187 ms) [ RUN ] MKLDNNGraphStructureTests.TestConvolutionWith2DepthwiseOpFusing MEM_USAGE=660376KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_structure_test.cpp:5678: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] MKLDNNGraphStructureTests.TestConvolutionWith2DepthwiseOpFusing (65 ms) [ RUN ] MKLDNNGraphStructureTests.TestConvolutionWith2EltwiseOpFusing MEM_USAGE=660376KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_structure_test.cpp:5817: Failure Expected: nodes.size() Which is: 3 To be equal to: 4 [ FAILED ] MKLDNNGraphStructureTests.TestConvolutionWith2EltwiseOpFusing (63 ms) [ RUN ] MKLDNNGraphStructureTests.TestGemmConvolutionWith2DepthwiseOpFusing MEM_USAGE=660376KB [ OK ] MKLDNNGraphStructureTests.TestGemmConvolutionWith2DepthwiseOpFusing (121 ms) [ RUN ] MKLDNNGraphStructureTests.TestCreateGraphWithSplit MEM_USAGE=685376KB [ OK ] MKLDNNGraphStructureTests.TestCreateGraphWithSplit (1 ms) [ RUN ] MKLDNNGraphStructureTests.TestCreateGraphWithFakeOutput MEM_USAGE=685376KB [ OK ] MKLDNNGraphStructureTests.TestCreateGraphWithFakeOutput (5 ms) [ RUN ] MKLDNNGraphStructureTests.TestCreateGraphWithMultipleData MEM_USAGE=685376KB [ OK ] MKLDNNGraphStructureTests.TestCreateGraphWithMultipleData (10 ms) [----------] 30 tests from MKLDNNGraphStructureTests (8440 ms total) [----------] 3 tests from MKLDNNGraphOptimizationTests [ RUN ] MKLDNNGraphOptimizationTests.TestNoFuseConvSumWithOneInput MEM_USAGE=685376KB [ OK ] MKLDNNGraphOptimizationTests.TestNoFuseConvSumWithOneInput (5 ms) [ RUN ] MKLDNNGraphOptimizationTests.TestNoCrashForFuseConvSumAndInput MEM_USAGE=685376KB [ OK ] MKLDNNGraphOptimizationTests.TestNoCrashForFuseConvSumAndInput (23 ms) [ RUN ] MKLDNNGraphOptimizationTests.TestNoFuseCustomActivation MEM_USAGE=685376KB [ OK ] MKLDNNGraphOptimizationTests.TestNoFuseCustomActivation (32 ms) [----------] 3 tests from MKLDNNGraphOptimizationTests (61 ms total) [----------] 26 tests from Task/TaskCommonTests [ RUN ] Task/TaskCommonTests.canCreateTask/BASE_TASK [ OK ] Task/TaskCommonTests.canCreateTask/BASE_TASK (4 ms) [ RUN ] Task/TaskCommonTests.canCreateTask/STAGED_TASK [ OK ] Task/TaskCommonTests.canCreateTask/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canSetBusyStatus/BASE_TASK [ OK ] Task/TaskCommonTests.canSetBusyStatus/BASE_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canSetBusyStatus/STAGED_TASK [ OK ] Task/TaskCommonTests.canSetBusyStatus/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.firstOccupyReturnTrueSecondFalse/BASE_TASK [ OK ] Task/TaskCommonTests.firstOccupyReturnTrueSecondFalse/BASE_TASK (0 ms) [ RUN ] Task/TaskCommonTests.firstOccupyReturnTrueSecondFalse/STAGED_TASK [ OK ] Task/TaskCommonTests.firstOccupyReturnTrueSecondFalse/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canRunDefaultTask/BASE_TASK [ OK ] Task/TaskCommonTests.canRunDefaultTask/BASE_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canRunDefaultTask/STAGED_TASK [ OK ] Task/TaskCommonTests.canRunDefaultTask/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.throwIfFunctionNull/BASE_TASK [ OK ] Task/TaskCommonTests.throwIfFunctionNull/BASE_TASK (0 ms) [ RUN ] Task/TaskCommonTests.throwIfFunctionNull/STAGED_TASK [ OK ] Task/TaskCommonTests.throwIfFunctionNull/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canWaitWithoutRun/BASE_TASK [ OK ] Task/TaskCommonTests.canWaitWithoutRun/BASE_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canWaitWithoutRun/STAGED_TASK [ OK ] Task/TaskCommonTests.canWaitWithoutRun/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canRunTaskFromThread/BASE_TASK [ OK ] Task/TaskCommonTests.canRunTaskFromThread/BASE_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canRunTaskFromThread/STAGED_TASK [ OK ] Task/TaskCommonTests.canRunTaskFromThread/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canRunTaskFromThreadWithoutWait/BASE_TASK [ OK ] Task/TaskCommonTests.canRunTaskFromThreadWithoutWait/BASE_TASK (500 ms) [ RUN ] Task/TaskCommonTests.canRunTaskFromThreadWithoutWait/STAGED_TASK [ OK ] Task/TaskCommonTests.canRunTaskFromThreadWithoutWait/STAGED_TASK (501 ms) [ RUN ] Task/TaskCommonTests.waitReturnNotStartedIfTaskWasNotRun/BASE_TASK [ OK ] Task/TaskCommonTests.waitReturnNotStartedIfTaskWasNotRun/BASE_TASK (0 ms) [ RUN ] Task/TaskCommonTests.waitReturnNotStartedIfTaskWasNotRun/STAGED_TASK [ OK ] Task/TaskCommonTests.waitReturnNotStartedIfTaskWasNotRun/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canCatchIEException/BASE_TASK [ OK ] Task/TaskCommonTests.canCatchIEException/BASE_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canCatchIEException/STAGED_TASK [ OK ] Task/TaskCommonTests.canCatchIEException/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.waitReturnErrorIfException/BASE_TASK [ OK ] Task/TaskCommonTests.waitReturnErrorIfException/BASE_TASK (1 ms) [ RUN ] Task/TaskCommonTests.waitReturnErrorIfException/STAGED_TASK [ OK ] Task/TaskCommonTests.waitReturnErrorIfException/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canCatchStdException/BASE_TASK [ OK ] Task/TaskCommonTests.canCatchStdException/BASE_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canCatchStdException/STAGED_TASK [ OK ] Task/TaskCommonTests.canCatchStdException/STAGED_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canCleanExceptionPtr/BASE_TASK [ OK ] Task/TaskCommonTests.canCleanExceptionPtr/BASE_TASK (0 ms) [ RUN ] Task/TaskCommonTests.canCleanExceptionPtr/STAGED_TASK [ OK ] Task/TaskCommonTests.canCleanExceptionPtr/STAGED_TASK (0 ms) [----------] 26 tests from Task/TaskCommonTests (1010 ms total) [----------] 5 tests from BuiltInImplsFake2/BuiltInShapeInferImplFakeTest [ RUN ] BuiltInImplsFake2/BuiltInShapeInferImplFakeTest.reshaper/0 [ OK ] BuiltInImplsFake2/BuiltInShapeInferImplFakeTest.reshaper/0 (2 ms) [ RUN ] BuiltInImplsFake2/BuiltInShapeInferImplFakeTest.reshaper/1 [ OK ] BuiltInImplsFake2/BuiltInShapeInferImplFakeTest.reshaper/1 (1 ms) [ RUN ] BuiltInImplsFake2/BuiltInShapeInferImplFakeTest.reshaper/2 [ OK ] BuiltInImplsFake2/BuiltInShapeInferImplFakeTest.reshaper/2 (1 ms) [ RUN ] BuiltInImplsFake2/BuiltInShapeInferImplFakeTest.reshaper/3 [ OK ] BuiltInImplsFake2/BuiltInShapeInferImplFakeTest.reshaper/3 (1 ms) [ RUN ] BuiltInImplsFake2/BuiltInShapeInferImplFakeTest.reshaper/4 [ OK ] BuiltInImplsFake2/BuiltInShapeInferImplFakeTest.reshaper/4 (0 ms) [----------] 5 tests from BuiltInImplsFake2/BuiltInShapeInferImplFakeTest (5 ms total) [----------] 24 tests from BuiltInEqualImpls/BuiltInShapeInferImplTest [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/0 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/0 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/1 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/1 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/2 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/2 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/3 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/3 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/4 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/4 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/5 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/5 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/6 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/6 (1 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/7 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/7 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/8 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/8 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/9 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/9 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/10 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/10 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/11 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.impl/11 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/0 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/0 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/1 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/1 (1 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/2 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/2 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/3 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/3 (1 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/4 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/4 (1 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/5 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/5 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/6 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/6 (1 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/7 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/7 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/8 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/8 (1 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/9 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/9 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/10 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/10 (0 ms) [ RUN ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/11 [ OK ] BuiltInEqualImpls/BuiltInShapeInferImplTest.reshaper/11 (2 ms) [----------] 24 tests from BuiltInEqualImpls/BuiltInShapeInferImplTest (9 ms total) [----------] 100 tests from BuiltInGeneralImpls/BuiltInShapeInferImplTest [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/0 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/0 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/1 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/1 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/2 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/2 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/3 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/3 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/4 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/4 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/5 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/5 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/6 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/6 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/7 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/7 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/8 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/8 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/9 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/9 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/10 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/10 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/11 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/11 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/12 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/12 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/13 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/13 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/14 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/14 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/15 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/15 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/16 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/16 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/17 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/17 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/18 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/18 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/19 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/19 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/20 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/20 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/21 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/21 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/22 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/22 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/23 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/23 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/24 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/24 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/25 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/25 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/26 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/26 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/27 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/27 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/28 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/28 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/29 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/29 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/30 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/30 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/31 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/31 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/32 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/32 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/33 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/33 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/34 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/34 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/35 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/35 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/36 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/36 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/37 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/37 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/38 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/38 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/39 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/39 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/40 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/40 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/41 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/41 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/42 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/42 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/43 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/43 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/44 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/44 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/45 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/45 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/46 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/46 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/47 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/47 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/48 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/48 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/49 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.impl/49 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/0 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/0 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/1 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/1 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/2 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/2 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/3 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/3 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/4 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/4 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/5 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/5 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/6 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/6 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/7 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/7 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/8 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/8 (10 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/9 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/9 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/10 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/10 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/11 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/11 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/12 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/12 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/13 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/13 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/14 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/14 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/15 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/15 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/16 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/16 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/17 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/17 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/18 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/18 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/19 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/19 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/20 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/20 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/21 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/21 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/22 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/22 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/23 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/23 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/24 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/24 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/25 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/25 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/26 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/26 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/27 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/27 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/28 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/28 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/29 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/29 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/30 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/30 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/31 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/31 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/32 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/32 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/33 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/33 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/34 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/34 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/35 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/35 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/36 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/36 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/37 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/37 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/38 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/38 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/39 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/39 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/40 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/40 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/41 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/41 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/42 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/42 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/43 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/43 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/44 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/44 (0 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/45 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/45 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/46 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/46 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/47 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/47 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/48 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/48 (1 ms) [ RUN ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/49 [ OK ] BuiltInGeneralImpls/BuiltInShapeInferImplTest.reshaper/49 (0 ms) [----------] 100 tests from BuiltInGeneralImpls/BuiltInShapeInferImplTest (49 ms total) [----------] 16 tests from BuiltInGeneralImpls2/BuiltInShapeInferImplTest [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/0 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/0 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/1 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/1 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/2 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/2 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/3 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/3 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/4 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/4 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/5 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/5 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/6 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/6 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/7 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.impl/7 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/0 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/0 (1 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/1 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/1 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/2 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/2 (1 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/3 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/3 (1 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/4 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/4 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/5 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/5 (1 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/6 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/6 (0 ms) [ RUN ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/7 [ OK ] BuiltInGeneralImpls2/BuiltInShapeInferImplTest.reshaper/7 (1 ms) [----------] 16 tests from BuiltInGeneralImpls2/BuiltInShapeInferImplTest (5 ms total) [----------] 2 tests from Reshape/LayerValidatorNegativeTests [ RUN ] Reshape/LayerValidatorNegativeTests.reshaper/0 [ OK ] Reshape/LayerValidatorNegativeTests.reshaper/0 (0 ms) [ RUN ] Reshape/LayerValidatorNegativeTests.reshaper/1 [ OK ] Reshape/LayerValidatorNegativeTests.reshaper/1 (1 ms) [----------] 2 tests from Reshape/LayerValidatorNegativeTests (1 ms total) [----------] 2 tests from CPUExtGeneralImpls/CPUExtShapeInferTests [ RUN ] CPUExtGeneralImpls/CPUExtShapeInferTests.impl/0 [ OK ] CPUExtGeneralImpls/CPUExtShapeInferTests.impl/0 (0 ms) [ RUN ] CPUExtGeneralImpls/CPUExtShapeInferTests.reshaper/0 [ OK ] CPUExtGeneralImpls/CPUExtShapeInferTests.reshaper/0 (1 ms) [----------] 2 tests from CPUExtGeneralImpls/CPUExtShapeInferTests (1 ms total) [----------] 1 test from NotSupported/ShapeInferNotSupportedTest [ RUN ] NotSupported/ShapeInferNotSupportedTest.returnNotFoundOnNotSupported/0 [ OK ] NotSupported/ShapeInferNotSupportedTest.returnNotFoundOnNotSupported/0 (0 ms) [----------] 1 test from NotSupported/ShapeInferNotSupportedTest (0 ms total) [----------] 72 tests from BuiltInImplsConv/BuiltInShapeInferConvImplTest [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/0 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/0 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/1 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/1 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/2 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/2 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/3 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/3 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/4 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/4 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/5 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/5 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/6 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/6 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/7 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/7 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/8 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/8 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/9 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/9 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/10 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/10 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/11 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl/11 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/0 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/0 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/1 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/1 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/2 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/2 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/3 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/3 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/4 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/4 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/5 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/5 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/6 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/6 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/7 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/7 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/8 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/8 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/9 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/9 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/10 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/10 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/11 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch/11 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/0 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/0 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/1 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/1 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/2 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/2 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/3 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/3 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/4 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/4 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/5 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/5 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/6 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/6 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/7 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/7 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/8 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/8 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/9 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/9 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/10 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/10 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/11 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper/11 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/0 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/0 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/1 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/1 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/2 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/2 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/3 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/3 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/4 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/4 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/5 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/5 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/6 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/6 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/7 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/7 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/8 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/8 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/9 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/9 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/10 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/10 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/11 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.impl_IRv3/11 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/0 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/0 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/1 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/1 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/2 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/2 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/3 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/3 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/4 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/4 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/5 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/5 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/6 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/6 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/7 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/7 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/8 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/8 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/9 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/9 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/10 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/10 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/11 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.batch_IRv3/11 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/0 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/0 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/1 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/1 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/2 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/2 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/3 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/3 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/4 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/4 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/5 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/5 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/6 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/6 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/7 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/7 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/8 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/8 (1 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/9 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/9 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/10 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/10 (0 ms) [ RUN ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/11 [ OK ] BuiltInImplsConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/11 (1 ms) [----------] 72 tests from BuiltInImplsConv/BuiltInShapeInferConvImplTest (42 ms total) [----------] 72 tests from BuiltInImplsDeConv/BuiltInShapeInferConvImplTest [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/0 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/0 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/1 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/1 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/2 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/2 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/3 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/3 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/4 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/4 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/5 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/5 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/6 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/6 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/7 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/7 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/8 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/8 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/9 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/9 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/10 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/10 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/11 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl/11 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/0 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/0 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/1 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/1 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/2 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/2 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/3 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/3 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/4 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/4 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/5 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/5 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/6 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/6 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/7 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/7 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/8 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/8 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/9 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/9 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/10 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/10 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/11 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch/11 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/0 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/0 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/1 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/1 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/2 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/2 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/3 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/3 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/4 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/4 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/5 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/5 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/6 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/6 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/7 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/7 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/8 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/8 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/9 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/9 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/10 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/10 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/11 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper/11 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/0 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/0 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/1 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/1 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/2 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/2 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/3 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/3 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/4 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/4 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/5 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/5 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/6 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/6 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/7 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/7 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/8 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/8 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/9 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/9 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/10 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/10 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/11 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.impl_IRv3/11 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/0 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/0 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/1 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/1 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/2 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/2 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/3 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/3 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/4 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/4 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/5 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/5 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/6 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/6 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/7 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/7 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/8 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/8 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/9 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/9 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/10 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/10 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/11 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.batch_IRv3/11 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/0 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/0 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/1 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/1 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/2 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/2 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/3 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/3 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/4 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/4 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/5 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/5 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/6 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/6 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/7 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/7 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/8 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/8 (1 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/9 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/9 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/10 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/10 (0 ms) [ RUN ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/11 [ OK ] BuiltInImplsDeConv/BuiltInShapeInferConvImplTest.reshaper_IRv3/11 (1 ms) [----------] 72 tests from BuiltInImplsDeConv/BuiltInShapeInferConvImplTest (42 ms total) [----------] 48 tests from BuiltInImpls/BuiltInShapeInferPoolImplTest [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/0 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/0 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/1 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/1 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/2 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/2 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/3 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/3 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/4 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/4 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/5 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/5 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/6 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/6 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/7 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body/7 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/0 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/0 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/1 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/1 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/2 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/2 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/3 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/3 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/4 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/4 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/5 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/5 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/6 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/6 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/7 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper/7 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/0 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/0 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/1 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/1 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/2 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/2 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/3 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/3 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/4 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/4 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/5 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/5 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/6 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/6 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/7 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch/7 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/0 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/0 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/1 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/1 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/2 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/2 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/3 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/3 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/4 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/4 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/5 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/5 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/6 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/6 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/7 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.body_IRv3/7 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/0 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/0 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/1 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/1 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/2 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/2 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/3 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/3 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/4 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/4 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/5 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/5 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/6 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/6 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/7 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.reshaper_IRv3/7 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/0 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/0 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/1 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/1 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/2 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/2 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/3 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/3 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/4 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/4 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/5 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/5 (0 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/6 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/6 (1 ms) [ RUN ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/7 [ OK ] BuiltInImpls/BuiltInShapeInferPoolImplTest.batch_IRv3/7 (1 ms) [----------] 48 tests from BuiltInImpls/BuiltInShapeInferPoolImplTest (23 ms total) [----------] 12 tests from TestsConvertation/MKLDNN2TensorDescConvertTests [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/0 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/0 (0 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/1 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/1 (0 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/2 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/2 (0 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/3 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/3 (1 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/4 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/4 (2 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/5 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/5 (0 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/6 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/6 (2 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/7 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/7 (2 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/8 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/8 (0 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/9 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/9 (1 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/10 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/10 (2 ms) [ RUN ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/11 MEM_USAGE=685376KB [ OK ] TestsConvertation/MKLDNN2TensorDescConvertTests.TestsConvertation/11 (1 ms) [----------] 12 tests from TestsConvertation/MKLDNN2TensorDescConvertTests (11 ms total) [----------] 7 tests from TestsConvertation/TensorDesc2MKLDNNConvertTests [ RUN ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/0 MEM_USAGE=685376KB [ OK ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/0 (0 ms) [ RUN ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/1 MEM_USAGE=685376KB [ OK ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/1 (0 ms) [ RUN ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/2 MEM_USAGE=685376KB [ OK ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/2 (1 ms) [ RUN ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/3 MEM_USAGE=685376KB [ OK ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/3 (0 ms) [ RUN ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/4 MEM_USAGE=685376KB [ OK ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/4 (1 ms) [ RUN ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/5 MEM_USAGE=685376KB [ OK ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/5 (2 ms) [ RUN ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/6 MEM_USAGE=685376KB [ OK ] TestsConvertation/TensorDesc2MKLDNNConvertTests.TestsConvertation/6 (0 ms) [----------] 7 tests from TestsConvertation/TensorDesc2MKLDNNConvertTests (4 ms total) [----------] 2 tests from TestsInterp/MKLDNNCPUExtInterpTests [ RUN ] TestsInterp/MKLDNNCPUExtInterpTests.TestsInterp/0 MEM_USAGE=685376KB [ OK ] TestsInterp/MKLDNNCPUExtInterpTests.TestsInterp/0 (41 ms) [ RUN ] TestsInterp/MKLDNNCPUExtInterpTests.TestsInterp/1 MEM_USAGE=685376KB [ OK ] TestsInterp/MKLDNNCPUExtInterpTests.TestsInterp/1 (4 ms) [----------] 2 tests from TestsInterp/MKLDNNCPUExtInterpTests (46 ms total) [----------] 18 tests from TestsResample/MKLDNNCPUExtResampleTests [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/0 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/0 (12 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/1 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/1 (14 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/2 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/2 (50 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/3 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/3 (40 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/4 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/4 (48 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/5 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/5 (666 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/6 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/6 (5 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/7 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/7 (6 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/8 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/8 (17 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/9 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/9 (4 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/10 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/10 (5 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/11 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/11 (5 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/12 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/12 (5 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/13 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/13 (16 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/14 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/14 (34 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/15 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/15 (3 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/16 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/16 (11 ms) [ RUN ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/17 MEM_USAGE=685376KB [ OK ] TestsResample/MKLDNNCPUExtResampleTests.TestsResample/17 (4 ms) [----------] 18 tests from TestsResample/MKLDNNCPUExtResampleTests (946 ms total) [----------] 12 tests from TestsGather/MKLDNNCPUExtGatherTests [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/0 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/0 (4 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/1 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/1 (4 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/2 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/2 (4 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/3 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/3 (4 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/4 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/4 (4 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/5 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/5 (8 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/6 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/6 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/7 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/7 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/8 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/8 (20 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/9 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/9 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/10 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/10 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/11 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTests.TestsGather/11 (25 ms) [----------] 12 tests from TestsGather/MKLDNNCPUExtGatherTests (81 ms total) [----------] 10 tests from TestsGather/MKLDNNCPUExtGatherTFTests [ RUN ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/0 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/0 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/1 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/1 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/2 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/2 (10 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/3 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/3 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/4 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/4 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/5 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/5 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/6 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/6 (12 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/7 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/7 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/8 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/8 (2 ms) [ RUN ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/9 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherTFTests.TestsGather/9 (4 ms) [----------] 10 tests from TestsGather/MKLDNNCPUExtGatherTFTests (40 ms total) [----------] 1 test from TestsGather/MKLDNNCPUExtGatherHolesTests [ RUN ] TestsGather/MKLDNNCPUExtGatherHolesTests.TestsGather/0 MEM_USAGE=685376KB [ OK ] TestsGather/MKLDNNCPUExtGatherHolesTests.TestsGather/0 (3 ms) [----------] 1 test from TestsGather/MKLDNNCPUExtGatherHolesTests (3 ms total) [----------] 25 tests from TestsMVN/MKLDNNCPUExtMVNTests [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/0 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/0 (10 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/1 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/1 (18 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/2 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/2 (11 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/3 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/3 (6 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/4 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/4 (10 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/5 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/5 (17 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/6 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/6 (16 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/7 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/7 (7 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/8 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/8 (9 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/9 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/9 (17 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/10 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/10 (20 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/11 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/11 (9 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/12 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/12 (21 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/13 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/13 (9 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/14 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/14 (82 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/15 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/15 (17 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/16 MEM_USAGE=685376KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/16 (1532 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/17 MEM_USAGE=703328KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/17 (1350 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/18 MEM_USAGE=657248KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/18 (1368 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/19 MEM_USAGE=703328KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/19 (1360 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/20 MEM_USAGE=657248KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/20 (622 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/21 MEM_USAGE=703328KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/21 (752 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/22 MEM_USAGE=657248KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/22 (596 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/23 MEM_USAGE=703328KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/23 (636 ms) [ RUN ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/24 MEM_USAGE=657248KB [ OK ] TestsMVN/MKLDNNCPUExtMVNTests.TestsMVN/24 (570 ms) [----------] 25 tests from TestsMVN/MKLDNNCPUExtMVNTests (9081 ms total) [----------] 1 test from TestsTile/MKLDNNGraphTileTests [ RUN ] TestsTile/MKLDNNGraphTileTests.TestsTile/0 MEM_USAGE=698212KB [ OK ] TestsTile/MKLDNNGraphTileTests.TestsTile/0 (3 ms) [----------] 1 test from TestsTile/MKLDNNGraphTileTests (3 ms total) [----------] 1 test from TestsDynBatchTile/MKLDNNGraphDynBatchTileTests [ RUN ] TestsDynBatchTile/MKLDNNGraphDynBatchTileTests.TestsDynBatchTile/0 MEM_USAGE=698212KB [ OK ] TestsDynBatchTile/MKLDNNGraphDynBatchTileTests.TestsDynBatchTile/0 (7 ms) [----------] 1 test from TestsDynBatchTile/MKLDNNGraphDynBatchTileTests (7 ms total) [----------] 4 tests from TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests [ RUN ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/0 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_batchnorm_scaleshift_test.cpp:203: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/0, where GetParam() = 112-byte object <01-00 00-00 00-00 00-00 20-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 02-00 00-00 2F-75 6E-69 05-00 00-00 00-00 00-00 00-01 00-00 6C-64 6E-6E 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (32 ms) [ RUN ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/1 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_batchnorm_scaleshift_test.cpp:203: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/1, where GetParam() = 112-byte object <04-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 E3-00 00-00 00-00 00-00 E3-00 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 02-00 00-00 2F-75 6E-69 05-00 00-00 00-00 00-00 00-01 00-00 6C-64 6E-6E 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (12 ms) [ RUN ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/2 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_batchnorm_scaleshift_test.cpp:203: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/2, where GetParam() = 112-byte object <01-00 00-00 00-00 00-00 20-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 02-00 00-00 2F-75 6E-69 05-00 00-00 00-00 00-00 80-00 00-00 6C-64 6E-6E 00-B0 DC-A8 24-56 00-00 04-B0 DC-A8 24-56 00-00 04-B0 DC-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (22 ms) [ RUN ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/3 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_batchnorm_scaleshift_test.cpp:203: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/3, where GetParam() = 112-byte object <04-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 E3-00 00-00 00-00 00-00 E3-00 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 02-00 00-00 2F-75 6E-69 05-00 00-00 00-00 00-00 80-00 00-00 6C-64 6E-6E 00-B0 DC-A8 24-56 00-00 04-B0 DC-A8 24-56 00-00 04-B0 DC-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (15 ms) [----------] 4 tests from TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests (82 ms total) [----------] 4 tests from TestsDynBatchBatchNormWithScaleShift/MKLDNNGraphDynBatchBatchNormScaleShiftTests [ RUN ] TestsDynBatchBatchNormWithScaleShift/MKLDNNGraphDynBatchBatchNormScaleShiftTests.TestsDynBatchBatchNormWithScaleShift/0 MEM_USAGE=698212KB [ OK ] TestsDynBatchBatchNormWithScaleShift/MKLDNNGraphDynBatchBatchNormScaleShiftTests.TestsDynBatchBatchNormWithScaleShift/0 (3325 ms) [ RUN ] TestsDynBatchBatchNormWithScaleShift/MKLDNNGraphDynBatchBatchNormScaleShiftTests.TestsDynBatchBatchNormWithScaleShift/1 MEM_USAGE=698212KB [ OK ] TestsDynBatchBatchNormWithScaleShift/MKLDNNGraphDynBatchBatchNormScaleShiftTests.TestsDynBatchBatchNormWithScaleShift/1 (1006 ms) [ RUN ] TestsDynBatchBatchNormWithScaleShift/MKLDNNGraphDynBatchBatchNormScaleShiftTests.TestsDynBatchBatchNormWithScaleShift/2 MEM_USAGE=698212KB [ OK ] TestsDynBatchBatchNormWithScaleShift/MKLDNNGraphDynBatchBatchNormScaleShiftTests.TestsDynBatchBatchNormWithScaleShift/2 (3124 ms) [ RUN ] TestsDynBatchBatchNormWithScaleShift/MKLDNNGraphDynBatchBatchNormScaleShiftTests.TestsDynBatchBatchNormWithScaleShift/3 MEM_USAGE=698212KB [ OK ] TestsDynBatchBatchNormWithScaleShift/MKLDNNGraphDynBatchBatchNormScaleShiftTests.TestsDynBatchBatchNormWithScaleShift/3 (995 ms) [----------] 4 tests from TestsDynBatchBatchNormWithScaleShift/MKLDNNGraphDynBatchBatchNormScaleShiftTests (8451 ms total) [----------] 4 tests from TestCrop/MKLDNNGraphCropTests [ RUN ] TestCrop/MKLDNNGraphCropTests.TestCrop/0 MEM_USAGE=698212KB [ OK ] TestCrop/MKLDNNGraphCropTests.TestCrop/0 (17 ms) [ RUN ] TestCrop/MKLDNNGraphCropTests.TestCrop/1 MEM_USAGE=698212KB [ OK ] TestCrop/MKLDNNGraphCropTests.TestCrop/1 (5 ms) [ RUN ] TestCrop/MKLDNNGraphCropTests.TestCrop/2 MEM_USAGE=698212KB [ OK ] TestCrop/MKLDNNGraphCropTests.TestCrop/2 (18 ms) [ RUN ] TestCrop/MKLDNNGraphCropTests.TestCrop/3 MEM_USAGE=698212KB [ OK ] TestCrop/MKLDNNGraphCropTests.TestCrop/3 (8 ms) [----------] 4 tests from TestCrop/MKLDNNGraphCropTests (49 ms total) [----------] 3 tests from TestsDynBatchCrop/MKLDNNGraphDynBatchCropTests [ RUN ] TestsDynBatchCrop/MKLDNNGraphDynBatchCropTests.TestsDynBatchCrop/0 MEM_USAGE=698212KB [ OK ] TestsDynBatchCrop/MKLDNNGraphDynBatchCropTests.TestsDynBatchCrop/0 (18 ms) [ RUN ] TestsDynBatchCrop/MKLDNNGraphDynBatchCropTests.TestsDynBatchCrop/1 MEM_USAGE=698212KB [ OK ] TestsDynBatchCrop/MKLDNNGraphDynBatchCropTests.TestsDynBatchCrop/1 (19 ms) [ RUN ] TestsDynBatchCrop/MKLDNNGraphDynBatchCropTests.TestsDynBatchCrop/2 MEM_USAGE=698212KB [ OK ] TestsDynBatchCrop/MKLDNNGraphDynBatchCropTests.TestsDynBatchCrop/2 (23 ms) [----------] 3 tests from TestsDynBatchCrop/MKLDNNGraphDynBatchCropTests (60 ms total) [----------] 26 tests from TestsDepthwise/MKLDNNGraphDepthwiseTests [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/0 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/0, where GetParam() = 104-byte object <64-00 00-00 F9-7F 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (16 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/1 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/1, where GetParam() = 104-byte object <64-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (12 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/2 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/2, where GetParam() = 104-byte object <64-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (25 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/3 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/3, where GetParam() = 104-byte object <64-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (13 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/4 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/4, where GetParam() = 104-byte object <64-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 01-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (7 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/5 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/5, where GetParam() = 104-byte object <64-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 01-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (8 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/6 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/6, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (13 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/7 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/7, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (10 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/8 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/8, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (4 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/9 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/9, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (5 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/10 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/10, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 01-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (17 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/11 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_depthwise_test.cpp:247: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/11, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 01-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (9 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/12 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/12 (375 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/13 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/13 (195 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/14 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/14 (20 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/15 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/15 (4 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/16 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/16 (7 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/17 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/17 (300 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/18 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/18 (467 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/19 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/19 (284 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/20 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/20 (32 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/21 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/21 (6 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/22 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/22 (31 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/23 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/23 (314 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/24 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/24 (4 ms) [ RUN ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/25 MEM_USAGE=698212KB [ OK ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/25 (9 ms) [----------] 26 tests from TestsDepthwise/MKLDNNGraphDepthwiseTests (2190 ms total) [----------] 24 tests from TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/0 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/0 (3390 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/1 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/1 (1135 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/2 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/2 (7 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/3 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/3 (9 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/4 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/4 (13 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/5 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/5 (3418 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/6 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/6 (3174 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/7 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/7 (969 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/8 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/8 (5 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/9 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/9 (4 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/10 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/10 (12 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/11 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/11 (3208 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/12 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/12 (3516 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/13 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/13 (1026 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/14 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/14 (10 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/15 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/15 (12 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/16 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/16 (18 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/17 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/17 (3389 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/18 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/18 (3204 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/19 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/19 (1085 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/20 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/20 (4 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/21 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/21 (17 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/22 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/22 (33 ms) [ RUN ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/23 MEM_USAGE=698212KB [ OK ] TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests.TestsDynBatchDepthwise/23 (3309 ms) [----------] 24 tests from TestsDynBatchDepthwise/MKLDNNGraphDynBatchDepthwiseTests (30974 ms total) [----------] 2 tests from TestsRelu/MKLDNNGraphReluTests [ RUN ] TestsRelu/MKLDNNGraphReluTests.TestsRelu/0 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_relu_test.cpp:150: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 3 [ FAILED ] TestsRelu/MKLDNNGraphReluTests.TestsRelu/0, where GetParam() = 72-byte object <B0-36 DE-A8 24-56 00-00 D0-36 DE-A8 24-56 00-00 D0-36 DE-A8 24-56 00-00 00-00 00-00 24-56 00-00 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 50-CC DE-A8 24-56 00-00 90-CC DE-A8 24-56 00-00 90-CC DE-A8 24-56 00-00> (3 ms) [ RUN ] TestsRelu/MKLDNNGraphReluTests.TestsRelu/1 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_relu_test.cpp:247: Failure Expected: InferenceEngine::Layout::NCDHW Which is: 3 To be equal to: impl.getConfig().inConfs.at(0).desc.getLayout() Which is: BLOCKED [ FAILED ] TestsRelu/MKLDNNGraphReluTests.TestsRelu/1, where GetParam() = 72-byte object <B0-36 DE-A8 24-56 00-00 D8-36 DE-A8 24-56 00-00 D8-36 DE-A8 24-56 00-00 00-00 00-00 24-56 00-00 03-00 00-00 00-00 00-00 80-80 00-00 00-00 00-00 50-CC DE-A8 24-56 00-00 90-CC DE-A8 24-56 00-00 90-CC DE-A8 24-56 00-00> (257 ms) [----------] 2 tests from TestsRelu/MKLDNNGraphReluTests (260 ms total) [----------] 4 tests from TestsBatchNorm/MKLDNNGraphBatchNormTests [ RUN ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/0 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_batchnorm_test.cpp:172: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/0, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 20-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 05-00 00-00 00-00 00-00 00-01 00-00 65-73 74-73 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (11 ms) [ RUN ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/1 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_batchnorm_test.cpp:172: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/1, where GetParam() = 104-byte object <03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 05-00 00-00 00-00 00-00 00-01 00-00 65-73 74-73 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (7 ms) [ RUN ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/2 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_batchnorm_test.cpp:172: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/2, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 20-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 05-00 00-00 00-00 00-00 80-00 00-00 65-73 74-73 00-5B DD-A8 24-56 00-00 04-5B DD-A8 24-56 00-00 04-5B DD-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (18 ms) [ RUN ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/3 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_batchnorm_test.cpp:172: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/3, where GetParam() = 104-byte object <03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 05-00 00-00 00-00 00-00 80-00 00-00 65-73 74-73 00-5B DD-A8 24-56 00-00 04-5B DD-A8 24-56 00-00 04-5B DD-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (15 ms) [----------] 4 tests from TestsBatchNorm/MKLDNNGraphBatchNormTests (52 ms total) [----------] 4 tests from TestsDynBatchBatchNorm/MKLDNNGraphDynBatchBatchNormTests [ RUN ] TestsDynBatchBatchNorm/MKLDNNGraphDynBatchBatchNormTests.TestsDynBatchBatchNorm/0 MEM_USAGE=698212KB [ OK ] TestsDynBatchBatchNorm/MKLDNNGraphDynBatchBatchNormTests.TestsDynBatchBatchNorm/0 (3251 ms) [ RUN ] TestsDynBatchBatchNorm/MKLDNNGraphDynBatchBatchNormTests.TestsDynBatchBatchNorm/1 MEM_USAGE=698212KB [ OK ] TestsDynBatchBatchNorm/MKLDNNGraphDynBatchBatchNormTests.TestsDynBatchBatchNorm/1 (517 ms) [ RUN ] TestsDynBatchBatchNorm/MKLDNNGraphDynBatchBatchNormTests.TestsDynBatchBatchNorm/2 MEM_USAGE=698212KB [ OK ] TestsDynBatchBatchNorm/MKLDNNGraphDynBatchBatchNormTests.TestsDynBatchBatchNorm/2 (3312 ms) [ RUN ] TestsDynBatchBatchNorm/MKLDNNGraphDynBatchBatchNormTests.TestsDynBatchBatchNorm/3 MEM_USAGE=698212KB [ OK ] TestsDynBatchBatchNorm/MKLDNNGraphDynBatchBatchNormTests.TestsDynBatchBatchNorm/3 (574 ms) [----------] 4 tests from TestsDynBatchBatchNorm/MKLDNNGraphDynBatchBatchNormTests (7656 ms total) [----------] 16 tests from TestConvolution/MKLDNNGraphConvolutionTests [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/0 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:271: Failure Expected: (p.num_prim_desc) <= (node->getSupportedPrimitiveDescriptors().size()), actual: 6 vs 4 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/0, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 A0-C7 DD-A8 24-56 00-00 B0-C7 DD-A8 24-56 00-00 ... 06-00 00-00 00-00 00-00 00-01 01-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (37 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/1 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:271: Failure Expected: (p.num_prim_desc) <= (node->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/1, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (50 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/2 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:271: Failure Expected: (p.num_prim_desc) <= (node->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/2, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (31 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/3 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:271: Failure Expected: (p.num_prim_desc) <= (node->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/3, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (26 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/4 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:271: Failure Expected: (p.num_prim_desc) <= (node->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/4, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (22 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/5 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:271: Failure Expected: (p.num_prim_desc) <= (node->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/5, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (15 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/6 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:271: Failure Expected: (p.num_prim_desc) <= (node->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 4 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/6, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 80-80 00-00 00-00 00-00 20-64 DE-A8 24-56 00-00 24-64 DE-A8 24-56 00-00 24-64 DE-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (24 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/7 MEM_USAGE=698212KB jit_gemm ref_any ref_any ref_any [ OK ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/7 (1688 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/8 MEM_USAGE=698212KB jit_gemm ref_any ref_any ref_any [ OK ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/8 (526 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/9 MEM_USAGE=698212KB jit_gemm ref_any ref_any ref_any [ OK ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/9 (3801 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/10 MEM_USAGE=698212KB jit_gemm ref_any ref_any ref_any [ OK ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/10 (4950 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/11 MEM_USAGE=698212KB jit_gemm ref_any ref_any ref_any /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:291: Failure Expected: p.selectedType Which is: 256 To be equal to: node->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/11, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 88-D8 DD-A8 24-56 00-00 ... 02-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (14 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/12 MEM_USAGE=698212KB jit_gemm ref_any ref_any ref_any /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:291: Failure Expected: p.selectedType Which is: 256 To be equal to: node->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/12, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 88-D8 DD-A8 24-56 00-00 ... 02-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (44 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/13 MEM_USAGE=698212KB jit_gemm ref_any ref_any ref_any /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:291: Failure Expected: p.selectedType Which is: 256 To be equal to: node->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/13, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 88-D8 DD-A8 24-56 00-00 ... 02-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (52 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/14 MEM_USAGE=698212KB jit_gemm ref_any ref_any ref_any /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_conv_test.cpp:291: Failure Expected: p.selectedType Which is: 256 To be equal to: node->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/14, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 88-D8 DD-A8 24-56 00-00 ... 02-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (44 ms) [ RUN ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/15 MEM_USAGE=698212KB jit_gemm ref_any ref_any ref_any [ OK ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/15 (34262 ms) [----------] 16 tests from TestConvolution/MKLDNNGraphConvolutionTests (45586 ms total) [----------] 8 tests from TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests [ RUN ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/0 MEM_USAGE=698212KB [ OK ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/0 (88 ms) [ RUN ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/1 MEM_USAGE=698212KB [ OK ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/1 (289 ms) [ RUN ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/2 MEM_USAGE=698212KB [ OK ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/2 (180 ms) [ RUN ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/3 MEM_USAGE=698212KB [ OK ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/3 (220 ms) [ RUN ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/4 MEM_USAGE=698212KB [ OK ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/4 (105 ms) [ RUN ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/5 MEM_USAGE=698212KB [ OK ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/5 (63 ms) [ RUN ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/6 MEM_USAGE=698212KB [ OK ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/6 (83 ms) [ RUN ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/7 MEM_USAGE=698212KB [ OK ] TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests.TestsDynBatchConvolution/7 (304 ms) [----------] 8 tests from TestDynBatchConvolution/MKLDNNGraphDynBatchConvolutionTests (1339 ms total) [----------] 1 test from TestsInput/MKLDNNGraphInputTests [ RUN ] TestsInput/MKLDNNGraphInputTests.TestsInput/0 MEM_USAGE=698212KB [ OK ] TestsInput/MKLDNNGraphInputTests.TestsInput/0 (3 ms) [----------] 1 test from TestsInput/MKLDNNGraphInputTests (3 ms total) [----------] 23 tests from TestsPermute/MKLDNNGraphPermuteTests [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/0 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/0 (4 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/1 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/1 (26 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/2 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/2 (4 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/3 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/3 (22 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/4 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/4 (3 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/5 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/5 (13 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/6 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/6 (14 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/7 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/7 (2 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/8 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/8 (5 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/9 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/9 (3 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/10 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/10 (2 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/11 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/11 (20 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/12 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/12 (2 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/13 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/13 (8 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/14 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/14 (7 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/15 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/15 (4 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/16 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/16 (13 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/17 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/17 (3 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/18 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/18 (4 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/19 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/19 (31 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/20 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/20 (1 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/21 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/21 (4 ms) [ RUN ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/22 MEM_USAGE=698212KB [ OK ] TestsPermute/MKLDNNGraphPermuteTests.TestsPermute/22 (15 ms) [----------] 23 tests from TestsPermute/MKLDNNGraphPermuteTests (216 ms total) [----------] 14 tests from TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/0 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/0 (9 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/1 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/1 (2 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/2 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/2 (7 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/3 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/3 (29 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/4 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/4 (3 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/5 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/5 (2 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/6 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/6 (19 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/7 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/7 (8 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/8 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/8 (7 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/9 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/9 (31 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/10 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/10 (4 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/11 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/11 (21 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/12 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/12 (3 ms) [ RUN ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/13 MEM_USAGE=698212KB [ OK ] TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests.TestsDynBatchPermute/13 (19 ms) [----------] 14 tests from TestsDynBatchPermute/MKLDNNGraphDynBatchPermuteTests (166 ms total) [----------] 1 test from TestsRoiPooling/MKLDNNGraphRoiPoolingTests [ RUN ] TestsRoiPooling/MKLDNNGraphRoiPoolingTests.TestsRoiPooling/0 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_roi_pooling_test.cpp:243: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 5 vs 3 [ FAILED ] TestsRoiPooling/MKLDNNGraphRoiPoolingTests.TestsRoiPooling/0, where GetParam() = 112-byte object <01-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 27-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 96-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 06-00 00-00 00-00 00-00 06-00 00-00 00-00 00-00 00-00 80-3D 70-68 2F-6C 05-00 00-00 00-00 00-00 00-01 00-00 61-6C 2F-67 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (23 ms) [----------] 1 test from TestsRoiPooling/MKLDNNGraphRoiPoolingTests (23 ms total) [----------] 16 tests from TestsReshape/MKLDNNGraphReshapeTests [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/0 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/0 (47 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/1 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/1 (2 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/2 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/2 (1 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/3 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/3 (1 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/4 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/4 (1 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/5 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/5 (2 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/6 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/6 (2 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/7 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/7 (2 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/8 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/8 (2 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/9 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/9 (1 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/10 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/10 (2 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/11 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/11 (3 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/12 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/12 (4 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/13 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/13 (2 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/14 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/14 (2 ms) [ RUN ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/15 MEM_USAGE=698212KB [ OK ] TestsReshape/MKLDNNGraphReshapeTests.TestsReshape/15 (3 ms) [----------] 16 tests from TestsReshape/MKLDNNGraphReshapeTests (82 ms total) [----------] 29 tests from TestsActivation/MKLDNNGraphActivationTests [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/0 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/0, where GetParam() = 104-byte object <08-00 00-00 00-00 00-00 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (15 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/1 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/1, where GetParam() = 104-byte object <08-00 00-00 00-00 00-00 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (6 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/2 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/2, where GetParam() = 104-byte object <08-00 00-00 00-00 00-3F 00-00 00-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (7 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/3 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/3, where GetParam() = 104-byte object <08-00 00-00 00-00 00-3F 00-00 00-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (6 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/4 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/4, where GetParam() = 104-byte object <0A-00 00-00 00-00 00-3F 00-00 00-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (10 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/5 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/5, where GetParam() = 104-byte object <0A-00 00-00 00-00 00-3F 00-00 00-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (8 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/6 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/6, where GetParam() = 104-byte object <0A-00 00-00 00-00 80-3F 00-00 80-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (6 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/7 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/7, where GetParam() = 104-byte object <0A-00 00-00 00-00 80-3F 00-00 80-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (6 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/8 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/8, where GetParam() = 104-byte object <11-00 00-00 00-00 00-00 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (6 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/9 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/9, where GetParam() = 104-byte object <11-00 00-00 00-00 00-00 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (5 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/10 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/10, where GetParam() = 104-byte object <0F-00 00-00 00-00 C0-40 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (8 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/11 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/11, where GetParam() = 104-byte object <0F-00 00-00 00-00 C0-40 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (11 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/12 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/12, where GetParam() = 104-byte object <0F-00 00-00 CD-CC CC-3D 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (6 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/13 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_activation_test.cpp:222: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/13, where GetParam() = 104-byte object <0F-00 00-00 CD-CC CC-3D 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (5 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/14 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/14 (139 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/15 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/15 (120 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/16 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/16 (170 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/17 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/17 (108 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/18 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/18 (261 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/19 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/19 (140 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/20 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/20 (285 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/21 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/21 (163 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/22 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/22 (293 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/23 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/23 (203 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/24 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/24 (182 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/25 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/25 (123 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/26 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/26 (251 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/27 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/27 (111 ms) [ RUN ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/28 MEM_USAGE=698212KB [ OK ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/28 (126 ms) [----------] 29 tests from TestsActivation/MKLDNNGraphActivationTests (2785 ms total) [----------] 28 tests from TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/0 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/0 (2770 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/1 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/1 (829 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/2 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/2 (2767 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/3 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/3 (854 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/4 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/4 (2839 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/5 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/5 (852 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/6 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/6 (2736 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/7 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/7 (953 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/8 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/8 (2866 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/9 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/9 (865 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/10 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/10 (2696 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/11 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/11 (836 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/12 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/12 (2738 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/13 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/13 (839 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/14 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/14 (2693 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/15 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/15 (848 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/16 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/16 (2691 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/17 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/17 (849 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/18 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/18 (2717 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/19 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/19 (852 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/20 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/20 (2740 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/21 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/21 (851 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/22 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/22 (3017 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/23 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/23 (1042 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/24 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/24 (2891 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/25 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/25 (890 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/26 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/26 (2709 ms) [ RUN ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/27 MEM_USAGE=698212KB [ OK ] TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests.TestsDynBatchActivation/27 (858 ms) [----------] 28 tests from TestsDynBatchActivation/MKLDNNGraphDynBatchActivationTests (51093 ms total) [----------] 26 tests from TestsPooling/MKLDNNGraphPoolingTests [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/0 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_pooling_test.cpp:296: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 6 vs 4 [ FAILED ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/0, where GetParam() = 192-byte object <00-4F E0-A8 24-56 00-00 20-4F E0-A8 24-56 00-00 20-4F E0-A8 24-56 00-00 40-80 E0-A8 24-56 00-00 50-80 E0-A8 24-56 00-00 50-80 E0-A8 24-56 00-00 10-2F E1-A8 24-56 00-00 20-2F E1-A8 24-56 00-00 ... 06-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (5 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/1 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/1 (30 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/2 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/2 (38 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/3 MEM_USAGE=698212KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_pooling_test.cpp:296: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 6 vs 4 [ FAILED ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/3, where GetParam() = 192-byte object <00-4F E0-A8 24-56 00-00 20-4F E0-A8 24-56 00-00 20-4F E0-A8 24-56 00-00 40-80 E0-A8 24-56 00-00 50-80 E0-A8 24-56 00-00 50-80 E0-A8 24-56 00-00 10-2F E1-A8 24-56 00-00 20-2F E1-A8 24-56 00-00 ... 06-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 20-FC E0-A8 24-56 00-00 24-FC E0-A8 24-56 00-00 24-FC E0-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (5 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/4 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/4 (28 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/5 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/5 (35 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/6 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/6 (30 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/7 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/7 (15 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/8 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/8 (14 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/9 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/9 (31 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/10 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/10 (15 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/11 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/11 (13 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/12 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/12 (16 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/13 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/13 (45 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/14 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/14 (38 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/15 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/15 (50 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/16 MEM_USAGE=698212KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/16 (1318 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/17 MEM_USAGE=657248KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/17 (23 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/18 MEM_USAGE=657248KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/18 (957 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/19 MEM_USAGE=661344KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/19 (1036 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/20 MEM_USAGE=661344KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/20 (982 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/21 MEM_USAGE=661344KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/21 (960 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/22 MEM_USAGE=661344KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/22 (975 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/23 MEM_USAGE=661536KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/23 (979 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/24 MEM_USAGE=661740KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/24 (1057 ms) [ RUN ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/25 MEM_USAGE=661740KB [ OK ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/25 (983 ms) [----------] 26 tests from TestsPooling/MKLDNNGraphPoolingTests (9702 ms total) [----------] 4 tests from TestsDynBatchPooling/MKLDNNGraphDynBatchPoolingTests [ RUN ] TestsDynBatchPooling/MKLDNNGraphDynBatchPoolingTests.TestsDynBatchPooling/0 MEM_USAGE=661740KB [ OK ] TestsDynBatchPooling/MKLDNNGraphDynBatchPoolingTests.TestsDynBatchPooling/0 (359 ms) [ RUN ] TestsDynBatchPooling/MKLDNNGraphDynBatchPoolingTests.TestsDynBatchPooling/1 MEM_USAGE=661740KB [ OK ] TestsDynBatchPooling/MKLDNNGraphDynBatchPoolingTests.TestsDynBatchPooling/1 (451 ms) [ RUN ] TestsDynBatchPooling/MKLDNNGraphDynBatchPoolingTests.TestsDynBatchPooling/2 MEM_USAGE=661740KB [ OK ] TestsDynBatchPooling/MKLDNNGraphDynBatchPoolingTests.TestsDynBatchPooling/2 (334 ms) [ RUN ] TestsDynBatchPooling/MKLDNNGraphDynBatchPoolingTests.TestsDynBatchPooling/3 MEM_USAGE=661740KB [ OK ] TestsDynBatchPooling/MKLDNNGraphDynBatchPoolingTests.TestsDynBatchPooling/3 (412 ms) [----------] 4 tests from TestsDynBatchPooling/MKLDNNGraphDynBatchPoolingTests (1558 ms total) [----------] 3 tests from TestsPower/MKLDNNGraphPowerTests [ RUN ] TestsPower/MKLDNNGraphPowerTests.TestsPower/0 MEM_USAGE=661740KB [ OK ] TestsPower/MKLDNNGraphPowerTests.TestsPower/0 (3 ms) [ RUN ] TestsPower/MKLDNNGraphPowerTests.TestsPower/1 MEM_USAGE=661740KB [ OK ] TestsPower/MKLDNNGraphPowerTests.TestsPower/1 (6 ms) [ RUN ] TestsPower/MKLDNNGraphPowerTests.TestsPower/2 MEM_USAGE=661740KB [ OK ] TestsPower/MKLDNNGraphPowerTests.TestsPower/2 (18 ms) [----------] 3 tests from TestsPower/MKLDNNGraphPowerTests (27 ms total) [----------] 3 tests from TestsDynBatchPower/MKLDNNGraphDynBatchPowerTests [ RUN ] TestsDynBatchPower/MKLDNNGraphDynBatchPowerTests.TestsDynBatchPower/0 MEM_USAGE=661740KB [ OK ] TestsDynBatchPower/MKLDNNGraphDynBatchPowerTests.TestsDynBatchPower/0 (4 ms) [ RUN ] TestsDynBatchPower/MKLDNNGraphDynBatchPowerTests.TestsDynBatchPower/1 MEM_USAGE=661740KB [ OK ] TestsDynBatchPower/MKLDNNGraphDynBatchPowerTests.TestsDynBatchPower/1 (8 ms) [ RUN ] TestsDynBatchPower/MKLDNNGraphDynBatchPowerTests.TestsDynBatchPower/2 MEM_USAGE=661740KB [ OK ] TestsDynBatchPower/MKLDNNGraphDynBatchPowerTests.TestsDynBatchPower/2 (24 ms) [----------] 3 tests from TestsDynBatchPower/MKLDNNGraphDynBatchPowerTests (36 ms total) [----------] 6 tests from TestsEltwise/MKLDNNGraphEltwiseTests [ RUN ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/0 MEM_USAGE=661740KB [ OK ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/0 (3 ms) [ RUN ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/1 MEM_USAGE=661740KB [ OK ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/1 (4 ms) [ RUN ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/2 MEM_USAGE=661740KB [ OK ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/2 (8 ms) [ RUN ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/3 MEM_USAGE=661740KB [ OK ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/3 (7 ms) [ RUN ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/4 MEM_USAGE=661740KB [ OK ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/4 (10 ms) [ RUN ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/5 MEM_USAGE=661740KB [ OK ] TestsEltwise/MKLDNNGraphEltwiseTests.TestsEltwise/5 (74 ms) [----------] 6 tests from TestsEltwise/MKLDNNGraphEltwiseTests (108 ms total) [----------] 5 tests from TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests [ RUN ] TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests.TestsDynBatchEltwise/0 MEM_USAGE=661740KB [ OK ] TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests.TestsDynBatchEltwise/0 (26 ms) [ RUN ] TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests.TestsDynBatchEltwise/1 MEM_USAGE=661740KB [ OK ] TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests.TestsDynBatchEltwise/1 (26 ms) [ RUN ] TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests.TestsDynBatchEltwise/2 MEM_USAGE=661740KB [ OK ] TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests.TestsDynBatchEltwise/2 (3 ms) [ RUN ] TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests.TestsDynBatchEltwise/3 MEM_USAGE=661740KB [ OK ] TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests.TestsDynBatchEltwise/3 (24 ms) [ RUN ] TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests.TestsDynBatchEltwise/4 MEM_USAGE=661740KB [ OK ] TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests.TestsDynBatchEltwise/4 (6 ms) [----------] 5 tests from TestsDynBatchEltwise/MKLDNNGraphDynBatchEltwiseTests (88 ms total) [----------] 4 tests from TestsEltwise2Precisions/MKLDNNGraphEltwise2PrecisionsTests [ RUN ] TestsEltwise2Precisions/MKLDNNGraphEltwise2PrecisionsTests.TestsEltwise2Precisions/0 MEM_USAGE=661740KB [ OK ] TestsEltwise2Precisions/MKLDNNGraphEltwise2PrecisionsTests.TestsEltwise2Precisions/0 (1 ms) [ RUN ] TestsEltwise2Precisions/MKLDNNGraphEltwise2PrecisionsTests.TestsEltwise2Precisions/1 MEM_USAGE=661740KB [ OK ] TestsEltwise2Precisions/MKLDNNGraphEltwise2PrecisionsTests.TestsEltwise2Precisions/1 (2 ms) [ RUN ] TestsEltwise2Precisions/MKLDNNGraphEltwise2PrecisionsTests.TestsEltwise2Precisions/2 MEM_USAGE=661740KB [ OK ] TestsEltwise2Precisions/MKLDNNGraphEltwise2PrecisionsTests.TestsEltwise2Precisions/2 (1 ms) [ RUN ] TestsEltwise2Precisions/MKLDNNGraphEltwise2PrecisionsTests.TestsEltwise2Precisions/3 MEM_USAGE=661740KB [ OK ] TestsEltwise2Precisions/MKLDNNGraphEltwise2PrecisionsTests.TestsEltwise2Precisions/3 (1 ms) [----------] 4 tests from TestsEltwise2Precisions/MKLDNNGraphEltwise2PrecisionsTests (6 ms total) [----------] 2 tests from TestsLrn/MKLDNNGraphLrnTests [ RUN ] TestsLrn/MKLDNNGraphLrnTests.TestsLrn/0 MEM_USAGE=661740KB [ OK ] TestsLrn/MKLDNNGraphLrnTests.TestsLrn/0 (148 ms) [ RUN ] TestsLrn/MKLDNNGraphLrnTests.TestsLrn/1 MEM_USAGE=661740KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_lrn_test.cpp:160: Failure Expected: p.selectedType Which is: 256 To be equal to: nodes->getSelectedPrimitiveDescriptor()->getImplementationType() & p.selectedType Which is: 0 [ FAILED ] TestsLrn/MKLDNNGraphLrnTests.TestsLrn/1, where GetParam() = 96-byte object <01-00 00-00 00-00 00-00 10-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 17-B7 D1-38 00-00 40-3F 01-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (27 ms) [----------] 2 tests from TestsLrn/MKLDNNGraphLrnTests (175 ms total) [----------] 2 tests from TestsDynBatchLrn/MKLDNNGraphDynBatchLrnTests [ RUN ] TestsDynBatchLrn/MKLDNNGraphDynBatchLrnTests.TestsDynBatchLrn/0 MEM_USAGE=663748KB [ OK ] TestsDynBatchLrn/MKLDNNGraphDynBatchLrnTests.TestsDynBatchLrn/0 (536 ms) [ RUN ] TestsDynBatchLrn/MKLDNNGraphDynBatchLrnTests.TestsDynBatchLrn/1 MEM_USAGE=663748KB [ OK ] TestsDynBatchLrn/MKLDNNGraphDynBatchLrnTests.TestsDynBatchLrn/1 (2458 ms) [----------] 2 tests from TestsDynBatchLrn/MKLDNNGraphDynBatchLrnTests (2994 ms total) [----------] 12 tests from TestsSoftMax/MKLDNNGraphSoftMaxTests [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/0 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_softmax_test.cpp:200: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 2 vs 1 [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/0, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (3 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/1 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_softmax_test.cpp:200: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 2 vs 1 [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/1, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 80-00 00-00 24-56 00-00 90-43 E0-A8 24-56 00-00 94-43 E0-A8 24-56 00-00 94-43 E0-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (3 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/2 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_softmax_test.cpp:200: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 2 vs 1 [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/2, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 64-00 00-00 00-00 00-00 06-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (2 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/3 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_softmax_test.cpp:200: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 2 vs 1 [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/3, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 64-00 00-00 00-00 00-00 06-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 80-00 00-00 24-56 00-00 60-86 E1-A8 24-56 00-00 64-86 E1-A8 24-56 00-00 64-86 E1-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (3 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/4 MEM_USAGE=683244KB [ OK ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/4 (4 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/5 MEM_USAGE=683244KB [ OK ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/5 (5 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/6 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_softmax_test.cpp:200: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 2 vs 1 [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/6, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 13-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (3 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/7 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_softmax_test.cpp:200: Failure Expected: (p.num_prim_desc) <= (nodes->getSupportedPrimitiveDescriptors().size()), actual: 2 vs 1 [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/7, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 13-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 80-00 00-00 24-56 00-00 00-71 E0-A8 24-56 00-00 04-71 E0-A8 24-56 00-00 04-71 E0-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (3 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/8 MEM_USAGE=683244KB [ OK ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/8 (9 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/9 MEM_USAGE=683244KB [ OK ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/9 (5 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/10 MEM_USAGE=683244KB [ OK ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/10 (2 ms) [ RUN ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/11 MEM_USAGE=683244KB [ OK ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/11 (6 ms) [----------] 12 tests from TestsSoftMax/MKLDNNGraphSoftMaxTests (49 ms total) [----------] 12 tests from TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/0 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/0 (728 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/1 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/1 (724 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/2 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/2 (5 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/3 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/3 (5 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/4 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/4 (6 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/5 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/5 (14 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/6 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/6 (1479 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/7 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/7 (1470 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/8 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/8 (91 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/9 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/9 (3 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/10 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/10 (3 ms) [ RUN ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/11 MEM_USAGE=683244KB [ OK ] TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests.TestsDynBatchSoftMax/11 (17 ms) [----------] 12 tests from TestsDynBatchSoftMax/MKLDNNGraphDynBatchSoftMaxTests (4546 ms total) [----------] 24 tests from TestDeconvolution/MKLDNNGraphDeconvolutionalTests [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/0 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/0, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 90-43 E0-A8 24-56 00-00 A0-43 E0-A8 24-56 00-00 A0-43 E0-A8 24-56 00-00 00-79 E1-A8 24-56 00-00 10-79 E1-A8 24-56 00-00 ... 54-0D E2-A8 24-56 00-00 54-0D E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (9 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/1 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/1, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (17 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/2 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/2, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (8 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/3 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/3, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (9 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/4 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/4, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (19 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/5 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/5, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (13 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/6 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/6, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (9 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/7 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/7, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (14 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/8 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/8, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (11 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/9 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/9, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (18 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/10 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/10, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (18 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/11 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/11, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (16 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/12 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/12, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (10 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/13 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/13, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (11 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/14 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/14, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (14 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/15 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/15, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (14 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/16 MEM_USAGE=683244KB [ OK ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/16 (23 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/17 MEM_USAGE=683244KB [ OK ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/17 (11 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/18 MEM_USAGE=683244KB [ OK ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/18 (18 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/19 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:296: Failure Expected: (p.num_prim_desc) <= (node->getSupportedPrimitiveDescriptors().size()), actual: 4 vs 3 [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/19, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (11 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/20 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/20, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (18 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/21 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:296: Failure Expected: (p.num_prim_desc) <= (node->getSupportedPrimitiveDescriptors().size()), actual: 4 vs 3 [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/21, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (18 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/22 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/layers/internal/graph_deconv_test.cpp:305: Failure Value of: good_prim Actual: false Expected: true [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/22, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> (19 ms) [ RUN ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/23 MEM_USAGE=683244KB [ OK ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/23 (44 ms) [----------] 24 tests from TestDeconvolution/MKLDNNGraphDeconvolutionalTests (373 ms total) [----------] 9 tests from TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests [ RUN ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/0 MEM_USAGE=683244KB [ OK ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/0 (23 ms) [ RUN ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/1 MEM_USAGE=683244KB [ OK ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/1 (41 ms) [ RUN ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/2 MEM_USAGE=683244KB [ OK ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/2 (9 ms) [ RUN ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/3 MEM_USAGE=683244KB [ OK ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/3 (36 ms) [ RUN ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/4 MEM_USAGE=683244KB [ OK ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/4 (35 ms) [ RUN ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/5 MEM_USAGE=683244KB [ OK ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/5 (36 ms) [ RUN ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/6 MEM_USAGE=683244KB [ OK ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/6 (18 ms) [ RUN ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/7 MEM_USAGE=683244KB [ OK ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/7 (48 ms) [ RUN ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/8 MEM_USAGE=683244KB [ OK ] TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests.TestsDynBatchDeconvolutional/8 (24 ms) [----------] 9 tests from TestsDynBatchDeconvolutional/MKLDNNGraphDynBatchDeconvolutionalTests (270 ms total) [----------] 8 tests from TestsFullyConnected/MKLDNNGraphFullyConnectedTests [ RUN ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/0 MEM_USAGE=683244KB [ OK ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/0 (4990 ms) [ RUN ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/1 MEM_USAGE=683244KB [ OK ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/1 (548 ms) [ RUN ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/2 MEM_USAGE=683244KB [ OK ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/2 (770 ms) [ RUN ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/3 MEM_USAGE=683244KB [ OK ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/3 (6619 ms) [ RUN ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/4 MEM_USAGE=683244KB [ OK ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/4 (849 ms) [ RUN ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/5 MEM_USAGE=683244KB [ OK ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/5 (1176 ms) [ RUN ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/6 MEM_USAGE=683244KB [ OK ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/6 (556 ms) [ RUN ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/7 MEM_USAGE=683244KB [ OK ] TestsFullyConnected/MKLDNNGraphFullyConnectedTests.TestsFullyConnected/7 (4649 ms) [----------] 8 tests from TestsFullyConnected/MKLDNNGraphFullyConnectedTests (20158 ms total) [----------] 6 tests from TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests [ RUN ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/0 MEM_USAGE=683244KB [ OK ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/0 (5301 ms) [ RUN ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/1 MEM_USAGE=683244KB [ OK ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/1 (1028 ms) [ RUN ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/2 MEM_USAGE=683244KB [ OK ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/2 (1166 ms) [ RUN ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/3 MEM_USAGE=683244KB [ OK ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/3 (9821 ms) [ RUN ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/4 MEM_USAGE=683244KB [ OK ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/4 (1515 ms) [ RUN ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/5 MEM_USAGE=683244KB [ OK ] TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests.TestsDynBatchFullyConnected/5 (1793 ms) [----------] 6 tests from TestsDynBatchFullyConnected/MKLDNNGraphDynBatchFullyConnectedTests (20625 ms total) [----------] 26 tests from TestsGemm/MKLDNNGraphGemmTests [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/0 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/0 (10 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/1 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/1 (10 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/2 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/2 (23 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/3 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/3 (7 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/4 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/4 (6 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/5 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/5 (21 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/6 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/6 (6 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/7 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/7 (27 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/8 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/8 (6 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/9 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/9 (8 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/10 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/10 (14 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/11 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/11 (6 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/12 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/12 (13 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/13 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/13 (8 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/14 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/14 (23 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/15 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/15 (27 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/16 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/16 (12 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/17 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/17 (13 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/18 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/18 (9 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/19 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/19 (6 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/20 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/20 (28 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/21 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/21 (8 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/22 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/22 (24 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/23 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/23 (8 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/24 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/24 (15 ms) [ RUN ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/25 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphGemmTests.TestsGemm/25 (16 ms) [----------] 26 tests from TestsGemm/MKLDNNGraphGemmTests (359 ms total) [----------] 2 tests from TestsDynBatchGemm/MKLDNNGraphDynBatchGemmTests [ RUN ] TestsDynBatchGemm/MKLDNNGraphDynBatchGemmTests.TestsDynBatchGemm/0 MEM_USAGE=683244KB [ OK ] TestsDynBatchGemm/MKLDNNGraphDynBatchGemmTests.TestsDynBatchGemm/0 (28 ms) [ RUN ] TestsDynBatchGemm/MKLDNNGraphDynBatchGemmTests.TestsDynBatchGemm/1 MEM_USAGE=683244KB [ OK ] TestsDynBatchGemm/MKLDNNGraphDynBatchGemmTests.TestsDynBatchGemm/1 (9 ms) [----------] 2 tests from TestsDynBatchGemm/MKLDNNGraphDynBatchGemmTests (38 ms total) [----------] 12 tests from TestsGemm/MKLDNNGraphSingleBatchDimGemmTests [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/0 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/0 (10 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/1 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/1 (5 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/2 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/2 (8 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/3 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/3 (4 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/4 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/4 (3 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/5 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/5 (17 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/6 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/6 (4 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/7 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/7 (9 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/8 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/8 (5 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/9 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/9 (12 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/10 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/10 (4 ms) [ RUN ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/11 MEM_USAGE=683244KB [ OK ] TestsGemm/MKLDNNGraphSingleBatchDimGemmTests.TestsGemm/11 (3 ms) [----------] 12 tests from TestsGemm/MKLDNNGraphSingleBatchDimGemmTests (84 ms total) [----------] 19 tests from TestsSplit/MKLDNNGraphSplitTests [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/0 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/0 (3 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/1 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/1 (6 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/2 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/2 (4 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/3 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/3 (7 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/4 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/4 (3 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/5 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/5 (4 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/6 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/6 (4 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/7 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/7 (7 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/8 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/8 (5 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/9 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/9 (9 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/10 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/10 (6 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/11 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/11 (5 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/12 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/12 (9 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/13 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/13 (12 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/14 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/14 (9 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/15 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/15 (8 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/16 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/16 (8 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/17 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/17 (268 ms) [ RUN ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/18 [ OK ] TestsSplit/MKLDNNGraphSplitTests.TestsSplit/18 (54 ms) [----------] 19 tests from TestsSplit/MKLDNNGraphSplitTests (435 ms total) [----------] 14 tests from TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/0 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/0 (5 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/1 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/1 (4 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/2 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/2 (27 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/3 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/3 (4 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/4 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/4 (5 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/5 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/5 (10 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/6 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/6 (7 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/7 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/7 (4 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/8 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/8 (5 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/9 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/9 (6 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/10 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/10 (6 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/11 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/11 (17 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/12 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/12 (12 ms) [ RUN ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/13 [ OK ] TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests.TestsDynBatchSplit/13 (14 ms) [----------] 14 tests from TestsDynBatchSplit/MKLDNNGraphDynBatchSplitTests (129 ms total) [----------] 5 tests from TestsConcat/MKLDNNGraphConcatTests [ RUN ] TestsConcat/MKLDNNGraphConcatTests.TestsConcat/0 MEM_USAGE=683244KB [ OK ] TestsConcat/MKLDNNGraphConcatTests.TestsConcat/0 (7 ms) [ RUN ] TestsConcat/MKLDNNGraphConcatTests.TestsConcat/1 MEM_USAGE=683244KB [ OK ] TestsConcat/MKLDNNGraphConcatTests.TestsConcat/1 (3 ms) [ RUN ] TestsConcat/MKLDNNGraphConcatTests.TestsConcat/2 MEM_USAGE=683244KB [ OK ] TestsConcat/MKLDNNGraphConcatTests.TestsConcat/2 (3 ms) [ RUN ] TestsConcat/MKLDNNGraphConcatTests.TestsConcat/3 MEM_USAGE=683244KB [ OK ] TestsConcat/MKLDNNGraphConcatTests.TestsConcat/3 (6 ms) [ RUN ] TestsConcat/MKLDNNGraphConcatTests.TestsConcat/4 MEM_USAGE=683244KB [ OK ] TestsConcat/MKLDNNGraphConcatTests.TestsConcat/4 (258 ms) [----------] 5 tests from TestsConcat/MKLDNNGraphConcatTests (277 ms total) [----------] 7 tests from TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests [ RUN ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/0 MEM_USAGE=683244KB [ OK ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/0 (2 ms) [ RUN ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/1 MEM_USAGE=683244KB [ OK ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/1 (4 ms) [ RUN ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/2 MEM_USAGE=683244KB [ OK ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/2 (18 ms) [ RUN ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/3 MEM_USAGE=683244KB [ OK ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/3 (13 ms) [ RUN ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/4 MEM_USAGE=683244KB [ OK ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/4 (18 ms) [ RUN ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/5 MEM_USAGE=683244KB [ OK ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/5 (4 ms) [ RUN ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/6 MEM_USAGE=683244KB [ OK ] TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests.TestsDynBatchConcat/6 (9 ms) [----------] 7 tests from TestsDynBatchConcat/MKLDNNGraphDynBatchConcatTests (68 ms total) [----------] 6 tests from TestsTwoConcat/MKLDNNGraphTwoConcatTests [ RUN ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/0 MEM_USAGE=683244KB [ OK ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/0 (20 ms) [ RUN ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/1 MEM_USAGE=683244KB [ OK ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/1 (22 ms) [ RUN ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/2 MEM_USAGE=683244KB [ OK ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/2 (23 ms) [ RUN ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/3 MEM_USAGE=683244KB [ OK ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/3 (22 ms) [ RUN ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/4 MEM_USAGE=683244KB [ OK ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/4 (22 ms) [ RUN ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/5 MEM_USAGE=683244KB [ OK ] TestsTwoConcat/MKLDNNGraphTwoConcatTests.TestsTwoConcat/5 (20 ms) [----------] 6 tests from TestsTwoConcat/MKLDNNGraphTwoConcatTests (131 ms total) [----------] 2 tests from TestsIncorrectConcat/MKLDNNGraphIncorrectConcatTests [ RUN ] TestsIncorrectConcat/MKLDNNGraphIncorrectConcatTests.TestsIncorrectConcat/0 MEM_USAGE=683244KB [ OK ] TestsIncorrectConcat/MKLDNNGraphIncorrectConcatTests.TestsIncorrectConcat/0 (2 ms) [ RUN ] TestsIncorrectConcat/MKLDNNGraphIncorrectConcatTests.TestsIncorrectConcat/1 MEM_USAGE=683244KB [ OK ] TestsIncorrectConcat/MKLDNNGraphIncorrectConcatTests.TestsIncorrectConcat/1 (2 ms) [----------] 2 tests from TestsIncorrectConcat/MKLDNNGraphIncorrectConcatTests (4 ms total) [----------] 1 test from TestsDwConvFusing/MKLDNNGraphDWConvFusingTests [ RUN ] TestsDwConvFusing/MKLDNNGraphDWConvFusingTests.TestsDwConvFusing/0 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_dw_conv_fusing_test.cpp:326: Failure Failed Supported primitive descriptors list is empty for node: conv1 [ FAILED ] TestsDwConvFusing/MKLDNNGraphDWConvFusingTests.TestsDwConvFusing/0, where GetParam() = 160-byte object <01-00 00-00 00-00 00-00 20-00 00-00 00-00 00-00 A0-00 00-00 00-00 00-00 40-01 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 ... 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 18-00 00-00 00-00 00-00 18-00 00-00 00-00 00-00> (16 ms) [----------] 1 test from TestsDwConvFusing/MKLDNNGraphDWConvFusingTests (16 ms total) [----------] 16 tests from TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/0 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/0, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 64-00 00-00 00-56 00-00> (13 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/1 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/1, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 65-00 00-00 00-56 00-00> (19 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/2 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/2, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 64-00 00-00 01-00 00-00> (14 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/3 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/3, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 65-00 00-00 01-56 00-00> (21 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/4 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/4, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 64-00 00-00 00-56 00-00> (26 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/5 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/5, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 65-00 00-00 00-56 00-00> (25 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/6 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/6, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 64-00 00-00 01-7F 00-00> (34 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/7 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/7, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 65-00 00-00 01-7F 00-00> (27 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/8 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/8, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 64-00 00-00 00-56 00-00> (21 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/9 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/9, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 65-00 00-00 00-56 00-00> (18 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/10 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/10, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 64-00 00-00 01-00 00-00> (36 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/11 MEM_USAGE=683244KB /home/matt/intel/dldt/inference-engine/tests/unit/engines/mkldnn/graph/structure/graph_conv_depthwise_fusing_test.cpp:265: Failure Expected: nodes.size() Which is: 3 To be equal to: 5 [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/11, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 65-00 00-00 01-7F 00-00> (30 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/12 MEM_USAGE=683244KB [ OK ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/12 (50 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/13 MEM_USAGE=683244KB [ OK ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/13 (41 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/14 MEM_USAGE=683244KB [ OK ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/14 (20 ms) [ RUN ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/15 MEM_USAGE=683244KB [ OK ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/15 (24 ms) [----------] 16 tests from TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests (425 ms total) [----------] Global test environment tear-down [==========] 1662 tests from 145 test cases ran. (238222 ms total) [ PASSED ] 1561 tests. [ FAILED ] 101 tests, listed below: [ FAILED ] MKLDNNLayersTests.DumpSimpleGraph [ FAILED ] MKLDNNLayersTests.DumpSimpleGraphToDot [ FAILED ] MKLDNNGraphStructureTests.TestNoRedundantReorders [ FAILED ] MKLDNNGraphStructureTests.TestRedundantReorderBeforeConvWithC_3 [ FAILED ] MKLDNNGraphStructureTests.TestNoRedundantReordersBeforeConcat [ FAILED ] MKLDNNGraphStructureTests.TestNoRedundantReordersRmnet_SSSSD [ FAILED ] MKLDNNGraphStructureTests.TestNoRedundantReordersForXceptionTopology [ FAILED ] MKLDNNGraphStructureTests.TestNoRedundantReordersForGrayscaleInput [ FAILED ] MKLDNNGraphStructureTests.TestConvolutionDWConvolutionSumFusing [ FAILED ] MKLDNNGraphStructureTests.TestConvolutionWith2DepthwiseOpFusing [ FAILED ] MKLDNNGraphStructureTests.TestConvolutionWith2EltwiseOpFusing [ FAILED ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/0, where GetParam() = 112-byte object <01-00 00-00 00-00 00-00 20-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 02-00 00-00 2F-75 6E-69 05-00 00-00 00-00 00-00 00-01 00-00 6C-64 6E-6E 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/1, where GetParam() = 112-byte object <04-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 E3-00 00-00 00-00 00-00 E3-00 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 02-00 00-00 2F-75 6E-69 05-00 00-00 00-00 00-00 00-01 00-00 6C-64 6E-6E 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/2, where GetParam() = 112-byte object <01-00 00-00 00-00 00-00 20-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 02-00 00-00 2F-75 6E-69 05-00 00-00 00-00 00-00 80-00 00-00 6C-64 6E-6E 00-B0 DC-A8 24-56 00-00 04-B0 DC-A8 24-56 00-00 04-B0 DC-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsBatchNormWithScaleShift/MKLDNNGraphBatchNormScaleShiftTests.TestsBatchNormWithScaleShift/3, where GetParam() = 112-byte object <04-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 E3-00 00-00 00-00 00-00 E3-00 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 02-00 00-00 2F-75 6E-69 05-00 00-00 00-00 00-00 80-00 00-00 6C-64 6E-6E 00-B0 DC-A8 24-56 00-00 04-B0 DC-A8 24-56 00-00 04-B0 DC-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/0, where GetParam() = 104-byte object <64-00 00-00 F9-7F 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/1, where GetParam() = 104-byte object <64-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/2, where GetParam() = 104-byte object <64-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/3, where GetParam() = 104-byte object <64-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/4, where GetParam() = 104-byte object <64-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 01-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/5, where GetParam() = 104-byte object <64-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 01-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/6, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/7, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/8, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/9, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 00-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/10, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 01-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDepthwise/MKLDNNGraphDepthwiseTests.TestsDepthwise/11, where GetParam() = 104-byte object <65-00 00-00 00-00 00-00 A0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 C0-6E DD-A8 24-56 00-00 01-69 66-74 2F-4D 4B-4C 03-00 00-00 00-00 00-00 00-01 00-00 61-74 63-68 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsRelu/MKLDNNGraphReluTests.TestsRelu/0, where GetParam() = 72-byte object <B0-36 DE-A8 24-56 00-00 D0-36 DE-A8 24-56 00-00 D0-36 DE-A8 24-56 00-00 00-00 00-00 24-56 00-00 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 50-CC DE-A8 24-56 00-00 90-CC DE-A8 24-56 00-00 90-CC DE-A8 24-56 00-00> [ FAILED ] TestsRelu/MKLDNNGraphReluTests.TestsRelu/1, where GetParam() = 72-byte object <B0-36 DE-A8 24-56 00-00 D8-36 DE-A8 24-56 00-00 D8-36 DE-A8 24-56 00-00 00-00 00-00 24-56 00-00 03-00 00-00 00-00 00-00 80-80 00-00 00-00 00-00 50-CC DE-A8 24-56 00-00 90-CC DE-A8 24-56 00-00 90-CC DE-A8 24-56 00-00> [ FAILED ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/0, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 20-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 05-00 00-00 00-00 00-00 00-01 00-00 65-73 74-73 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/1, where GetParam() = 104-byte object <03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 05-00 00-00 00-00 00-00 00-01 00-00 65-73 74-73 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/2, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 20-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 05-00 00-00 00-00 00-00 80-00 00-00 65-73 74-73 00-5B DD-A8 24-56 00-00 04-5B DD-A8 24-56 00-00 04-5B DD-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsBatchNorm/MKLDNNGraphBatchNormTests.TestsBatchNorm/3, where GetParam() = 104-byte object <03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 8D-ED B5-A0 F7-C6 B0-3E 05-00 00-00 00-00 00-00 80-00 00-00 65-73 74-73 00-5B DD-A8 24-56 00-00 04-5B DD-A8 24-56 00-00 04-5B DD-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/0, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 A0-C7 DD-A8 24-56 00-00 B0-C7 DD-A8 24-56 00-00 ... 06-00 00-00 00-00 00-00 00-01 01-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/1, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/2, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/3, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/4, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/5, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/6, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 60-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 30-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 80-D8 DD-A8 24-56 00-00 ... 05-00 00-00 00-00 00-00 80-80 00-00 00-00 00-00 20-64 DE-A8 24-56 00-00 24-64 DE-A8 24-56 00-00 24-64 DE-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/11, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 88-D8 DD-A8 24-56 00-00 ... 02-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/12, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 88-D8 DD-A8 24-56 00-00 ... 02-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/13, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 88-D8 DD-A8 24-56 00-00 ... 02-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestConvolution/MKLDNNGraphConvolutionTests.TestsConvolution/14, where GetParam() = 232-byte object <40-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 68-10 DE-A8 24-56 00-00 20-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 38-CD DE-A8 24-56 00-00 70-D8 DD-A8 24-56 00-00 88-D8 DD-A8 24-56 00-00 ... 02-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsRoiPooling/MKLDNNGraphRoiPoolingTests.TestsRoiPooling/0, where GetParam() = 112-byte object <01-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 27-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 96-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 06-00 00-00 00-00 00-00 06-00 00-00 00-00 00-00 00-00 80-3D 70-68 2F-6C 05-00 00-00 00-00 00-00 00-01 00-00 61-6C 2F-67 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/0, where GetParam() = 104-byte object <08-00 00-00 00-00 00-00 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/1, where GetParam() = 104-byte object <08-00 00-00 00-00 00-00 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/2, where GetParam() = 104-byte object <08-00 00-00 00-00 00-3F 00-00 00-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/3, where GetParam() = 104-byte object <08-00 00-00 00-00 00-3F 00-00 00-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/4, where GetParam() = 104-byte object <0A-00 00-00 00-00 00-3F 00-00 00-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/5, where GetParam() = 104-byte object <0A-00 00-00 00-00 00-3F 00-00 00-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/6, where GetParam() = 104-byte object <0A-00 00-00 00-00 80-3F 00-00 80-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/7, where GetParam() = 104-byte object <0A-00 00-00 00-00 80-3F 00-00 80-3F F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/8, where GetParam() = 104-byte object <11-00 00-00 00-00 00-00 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/9, where GetParam() = 104-byte object <11-00 00-00 00-00 00-00 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/10, where GetParam() = 104-byte object <0F-00 00-00 00-00 C0-40 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/11, where GetParam() = 104-byte object <0F-00 00-00 00-00 C0-40 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/12, where GetParam() = 104-byte object <0F-00 00-00 CD-CC CC-3D 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsActivation/MKLDNNGraphActivationTests.TestsActivation/13, where GetParam() = 104-byte object <0F-00 00-00 CD-CC CC-3D 00-00 00-00 F9-7F 00-00 60-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 80-7A E0-A8 24-56 00-00 03-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/0, where GetParam() = 192-byte object <00-4F E0-A8 24-56 00-00 20-4F E0-A8 24-56 00-00 20-4F E0-A8 24-56 00-00 40-80 E0-A8 24-56 00-00 50-80 E0-A8 24-56 00-00 50-80 E0-A8 24-56 00-00 10-2F E1-A8 24-56 00-00 20-2F E1-A8 24-56 00-00 ... 06-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsPooling/MKLDNNGraphPoolingTests.TestsPooling/3, where GetParam() = 192-byte object <00-4F E0-A8 24-56 00-00 20-4F E0-A8 24-56 00-00 20-4F E0-A8 24-56 00-00 40-80 E0-A8 24-56 00-00 50-80 E0-A8 24-56 00-00 50-80 E0-A8 24-56 00-00 10-2F E1-A8 24-56 00-00 20-2F E1-A8 24-56 00-00 ... 06-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 20-FC E0-A8 24-56 00-00 24-FC E0-A8 24-56 00-00 24-FC E0-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsLrn/MKLDNNGraphLrnTests.TestsLrn/1, where GetParam() = 96-byte object <01-00 00-00 00-00 00-00 10-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 17-B7 D1-38 00-00 40-3F 01-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 00-01 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/0, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/1, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 E4-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 80-00 00-00 24-56 00-00 90-43 E0-A8 24-56 00-00 94-43 E0-A8 24-56 00-00 94-43 E0-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/2, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 64-00 00-00 00-00 00-00 06-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/3, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 64-00 00-00 00-00 00-00 06-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 80-00 00-00 24-56 00-00 60-86 E1-A8 24-56 00-00 64-86 E1-A8 24-56 00-00 64-86 E1-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/6, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 13-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 00-01 00-00 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsSoftMax/MKLDNNGraphSoftMaxTests.TestsSoftMax/7, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 13-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 80-00 00-00 00-00 00-00 01-00 00-00 30-30 2D-30 02-00 00-00 00-00 00-00 80-00 00-00 24-56 00-00 00-71 E0-A8 24-56 00-00 04-71 E0-A8 24-56 00-00 04-71 E0-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/0, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 90-43 E0-A8 24-56 00-00 A0-43 E0-A8 24-56 00-00 A0-43 E0-A8 24-56 00-00 00-79 E1-A8 24-56 00-00 10-79 E1-A8 24-56 00-00 ... 54-0D E2-A8 24-56 00-00 54-0D E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/1, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/2, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/3, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/4, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/5, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/6, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/7, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/8, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/9, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/10, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/11, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/12, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 58-42 E2-A8 24-56 00-00 58-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/13, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/14, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/15, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/19, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/20, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/21, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestDeconvolution/MKLDNNGraphDeconvolutionalTests.TestsDeconvolution/22, where GetParam() = 256-byte object <20-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 40-94 E2-A8 24-56 00-00 30-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 40-3C E2-A8 24-56 00-00 70-F6 E1-A8 24-56 00-00 80-F6 E1-A8 24-56 00-00 ... 54-42 E2-A8 24-56 00-00 54-42 E2-A8 24-56 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00> [ FAILED ] TestsDwConvFusing/MKLDNNGraphDWConvFusingTests.TestsDwConvFusing/0, where GetParam() = 160-byte object <01-00 00-00 00-00 00-00 20-00 00-00 00-00 00-00 A0-00 00-00 00-00 00-00 40-01 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 ... 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 18-00 00-00 00-00 00-00 18-00 00-00 00-00 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/0, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 64-00 00-00 00-56 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/1, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 65-00 00-00 00-56 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/2, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 64-00 00-00 01-00 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/3, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 05-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 65-00 00-00 01-56 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/4, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 64-00 00-00 00-56 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/5, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 65-00 00-00 00-56 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/6, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 64-00 00-00 01-7F 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/7, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 09-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 40-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 65-00 00-00 01-7F 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/8, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 64-00 00-00 00-56 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/9, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 65-00 00-00 00-56 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/10, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 64-00 00-00 01-00 00-00> [ FAILED ] TestsConvDepthwiseFusing/MKLDNNGraphConvDepthwiseFusingTests.TestsConvDepthwiseFusing/11, where GetParam() = 104-byte object <01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 0B-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 03-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 01-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 30-00 00-00 00-00 00-00 65-00 00-00 01-7F 00-00> 101 FAILED TESTS YOU HAVE 20 DISABLED TESTS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Matt,
> Here's the result of the tests:
I think your unit test results explain why SSD fails on the CPU that has no SSSE3, SSE4.x or AVX. Again this is not a supported or recommended OpenVino environment. How would you like to proceed? I can see a few options (we are lucky to have the source) but is it worth pursuing this further? Even if it works it will be slow and you may be better off running on MYRIAD or other SSE/AVX CPU or Intel GPU system. (Similar issue to what we investigated with clDNN on an older Intel GPU that had no support for some new OpenCL extensions; eventually we decided it was not worth it trying to run on unsupported hardware - ref: https://software.intel.com/comment/1931449).
Cheers,
nikos

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page