diff --git a/hpvm/docs/components/index.rst b/hpvm/docs/components/index.rst index e911b8473cf804bac5afd0ad6adc152fd8235f84..96fb35bea6304b6fb1930b99439e1501fabbc90a 100644 --- a/hpvm/docs/components/index.rst +++ b/hpvm/docs/components/index.rst @@ -33,7 +33,7 @@ which explains their role, usage, and other details. keras-support keras-benchmarks torch2hpvm - predtuner + Predictive Tuner<https://predtuner.readthedocs.io/en/latest/index.html> hpvm-profiler diff --git a/hpvm/docs/components/predtuner.rst b/hpvm/docs/components/predtuner.rst deleted file mode 120000 index cdda0ab7b31c03473ad9d5646b36dd4bade13b2c..0000000000000000000000000000000000000000 --- a/hpvm/docs/components/predtuner.rst +++ /dev/null @@ -1 +0,0 @@ -../../projects/predtuner/README.rst \ No newline at end of file diff --git a/hpvm/docs/getting-started.rst b/hpvm/docs/getting-started.rst index a3cd05da837d730e06ff74aca6f8846697919448..3fd229086dbb1cdb006b11530a5a68155ba28fd1 100644 --- a/hpvm/docs/getting-started.rst +++ b/hpvm/docs/getting-started.rst @@ -188,7 +188,7 @@ After the tuning finishes, the tuner will * save the HPVM config format (write-only) at ``./hpvm_confs.txt``. It is also possible to save the configuration in other formats -(see the :doc:`predtuner documentation </components/predtuner>`). +(see the `predtuner documentation <https://predtuner.readthedocs.io/en/latest/index.html>`_). Profiling the Configurations ---------------------------- diff --git a/hpvm/projects/predtuner b/hpvm/projects/predtuner index 7159825f27ee7b3c5731ee1b9418c6eafda6622a..d051790317d29a59ca15541d20c1a61318e56932 160000 --- a/hpvm/projects/predtuner +++ b/hpvm/projects/predtuner @@ -1 +1 @@ -Subproject commit 7159825f27ee7b3c5731ee1b9418c6eafda6622a +Subproject commit d051790317d29a59ca15541d20c1a61318e56932 diff --git a/hpvm/test/dnn_benchmarks/pytorch/test_tuning/test_tuning.py b/hpvm/test/dnn_benchmarks/pytorch/test_tuning/test_tuning.py index 9f969a42616804e4b26eb90b3d379a2b5dd08436..d7b693b15b8befcd960c37509ba3a6318c12d537 100755 --- a/hpvm/test/dnn_benchmarks/pytorch/test_tuning/test_tuning.py +++ b/hpvm/test/dnn_benchmarks/pytorch/test_tuning/test_tuning.py @@ -24,14 +24,14 @@ def main(): binary_file, exporter = dnn.export_example_dnn(netname, codegen_dir, True) metadata_file = codegen_dir / exporter.metadata_file_name # Tuning - app = PipedBinaryApp("test", binary_file, metadata_file, tuning_device="cpu") + app = PipedBinaryApp("test", binary_file, metadata_file, target_device="cpu") tuner = app.get_tuner() tuner.tune( 5, 3.0, is_threshold_relative=True, cost_model="cost_linear", - qos_model="qos_p1" if is_pred else "none", + qos_model="qos_p1" if is_pred else None, ) tuner.dump_configs("configs.json") fig = tuner.plot_configs(show_qos_loss=True)