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',