From 4e0ee1b5165cb3cbe6f6bbf4282e7644d54b412c Mon Sep 17 00:00:00 2001 From: Leyuan Wang Date: Wed, 31 Jul 2019 13:45:58 -0700 Subject: [PATCH] [DOC] Update ssd doc to avoid confusion. (#3677) * intel graphics conv2d bugs fixed for inception_v3 * intel conv2d api updated, nn input size 4 condition added * review addressed * move conv_tags to attributes * ssd doc updated * address comment --- tutorials/frontend/deploy_ssd_gluoncv.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tutorials/frontend/deploy_ssd_gluoncv.py b/tutorials/frontend/deploy_ssd_gluoncv.py index ad7c27c1b272..db93ab462b02 100644 --- a/tutorials/frontend/deploy_ssd_gluoncv.py +++ b/tutorials/frontend/deploy_ssd_gluoncv.py @@ -45,8 +45,17 @@ # follow the :ref:`tune_relay_x86` to tune x86 CPU and # :ref:`tune_relay_arm` for arm CPU. # -# To get best performance fo SSD on Intel graphics, -# change target argument to 'opencl -device=intel_graphics' +# To get best inference performance on Intel graphics, +# change target argument to :code:`opencl -device=intel_graphics`. +# But when using Intel graphics on Mac, target needs to +# be set to `opencl` only for the reason that Intel subgroup +# extension is not supported on Mac. +# +# To get best inference performance on CUDA-based GPUs, +# change the target argument to :code:`cuda`; and for +# OPENCL-based GPUs, change target argument to +# :code:`opencl` followed by device argument according +# to your device. supported_model = [ 'ssd_512_resnet50_v1_voc',