Skip to content
Snippets Groups Projects
Commit bd5639d3 authored by Yifan Zhao's avatar Yifan Zhao
Browse files

Moved installation under getting-started

parent 8de93bc0
No related branches found
No related tags found
No related merge requests found
Install Building HPVM
=============== ===============
Dependencies Dependencies
......
Getting Started Getting Started
=============== ===============
This tutorial covers the basic usage of all components in HPVM This tutorial explains how to build and use HPVM.
(components listed :doc:`here </components/index>`).
We will generate a DNN model, VGG16 (for CIFAR10 dataset), into HPVM code, compile it with HPVM, * Before you proceed, check out the :doc:`build instruction for HPVM <build-hpvm>`.
To demonstrate the workflow,
we will generate a DNN model, VGG16 (for CIFAR10 dataset), into HPVM code, compile it with HPVM,
perform autotuning on the compiled binary to find approximation choices (configurations), perform autotuning on the compiled binary to find approximation choices (configurations),
and profile the selected configurations to get real performance on device. and profile the selected configurations to get real performance on device.
The result will be a figure showing the accuracy-performance tradeoff of VGG16 over the The result will be a figure showing the accuracy-performance tradeoff of VGG16 over the
(pre-defined) approximations and the configurations in a few formats. (pre-defined) approximations and the configurations in a few formats.
Please check ``test/dnn_benchmarks/model_params/`` exists and contains * Please check ``test/dnn_benchmarks/model_params/`` exists and contains
``vgg16_cifar10/`` and ``pytorch/vgg16_cifar10.pth.tar``, ``vgg16_cifar10/`` and ``pytorch/vgg16_cifar10.pth.tar``,
which may not be the case if you opted out of model parameter download in the installer. which may not be the case if you opted out of model parameter download in the installer.
In that case, you may run the installer again to download the parameter. In that case, you may run the installer again to download the parameter.
It will not rebuild everything from scratch. It will not rebuild everything from scratch.
Generating and Compiling a DNN Model Generating and Compiling a DNN Model
------------------------------------ ------------------------------------
......
...@@ -45,11 +45,13 @@ and experiment with new custom approximation techniques. ...@@ -45,11 +45,13 @@ and experiment with new custom approximation techniques.
Documentation Documentation
------------- -------------
Please refer to :doc:`getting-started` for how to build and use HPVM.
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
install
getting-started getting-started
build-hpvm
FAQs<faqs> FAQs<faqs>
components/index components/index
specifications/index specifications/index
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment