Temporarily exclude vgg19 test from Python backend test

1. temporarily exclude vgg19 test which comsumes too much memory, run out of memory on Upsquared device. Single test pass for vgg19, need furture investigation (#2588)
2. Update docker file to decrease the docker image size
This commit is contained in:
Hector Li 2019-12-09 12:25:46 -08:00 committed by GitHub
parent 36eb1771ba
commit 0ab54521f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -148,6 +148,9 @@ def create_backend_test(testname=None):
if c2.supports_device('OPENVINO_GPU_FP32') or c2.supports_device('OPENVINO_GPU_FP16'):
current_failing_tests.append('^test_div_cpu*')
# temporarily exclude vgg19 test which comsumes too much memory, run out of memory on Upsquared device.
# single test pass for vgg19, need furture investigation
current_failing_tests.append('^test_vgg19_cpu*')
if c2.supports_device('OPENVINO_CPU_FP32'):
current_failing_tests += ['^test_scan9_sum_cpu',#sum_out output node not defined, temporarily disabling test

View file

@ -7,7 +7,7 @@ ARG OPENVINO_VERSION=2019_R3.1
ADD scripts /tmp/scripts
ENV PATH="/opt/cmake/bin:${PATH}"
RUN /tmp/scripts/install_ubuntu.sh -p $PYTHON_VERSION -d EdgeDevice && \
/tmp/scripts/install_deps.sh -p $PYTHON_VERSION
/tmp/scripts/install_deps.sh -p $PYTHON_VERSION -d EdgeDevice
RUN apt update && apt install -y libnuma1 ocl-icd-libopencl1 && \
rm -rf /var/lib/apt/lists/*