Skip to content

Commit

Permalink
[DOC] Update ssd doc to avoid confusion. (apache#3677)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Laurawly authored and wweic committed Sep 6, 2019
1 parent fc4d38b commit 4e0ee1b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions tutorials/frontend/deploy_ssd_gluoncv.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 4e0ee1b

Please sign in to comment.