Skip to content

Commit

Permalink
Merge branch 'apache:main' into feat/auto-tensorize-mapping-proposer
Browse files Browse the repository at this point in the history
  • Loading branch information
vinx13 authored Jun 17, 2022
2 parents da0d9a9 + 333994d commit 26703b8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion apps/microtvm/reference-vm/arduino/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ microTVM platforms that are supported by [Arduino](https://www.arduino.cc/).
Arduino VM is published under [tlcpack](https://app.vagrantup.com/tlcpack).
Here is a list of different release versions and their tools.

(none currently)
We use semantic versioning as it is recommended by [Vagrant](https://www.vagrantup.com/docs/boxes/versioning). We use `X.Y.Z` version where we maintain the same major version `X` it has minor changes and newer version is still compatible with older versions and we increase minor version `Y`. However, We increase the major version `X` when new RVM is not compatible with older onces. Changing any Arduino board SDKs is considered a major change and requires increasing `X`.

## Supported Arduino Boards
This RVM has been tested and is known to work with these boards:
Expand Down
3 changes: 2 additions & 1 deletion apps/microtvm/reference-vm/arduino/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
# under the License.

Vagrant.configure("2") do |config|
config.vm.box = "tlcpack/microtvm-arduino-0.18.3"
config.vm.box = "tlcpack/microtvm-arduino"
config.vm.box_version = "1.0.0"

if ENV.has_key?("TVM_RVM_NUM_CORES")
num_cores = ENV["TVM_RVM_NUM_CORES"]
Expand Down
13 changes: 3 additions & 10 deletions apps/microtvm/reference-vm/zephyr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,7 @@ that are supported by [Zephyr Project](https://zephyrproject.org/).
Zephyr VM is published under [tlcpack](https://app.vagrantup.com/tlcpack).
Here is a list of different release versions and their tools.

### [microtvm-zephyr-2.5](https://app.vagrantup.com/tlcpack/boxes/microtvm-zephyr-2.5/versions/0.0.1)
**Note**: We will release all microTVM RVM boxes under [microtvm-zephyr](https://app.vagrantup.com/tlcpack/boxes/microtvm-zephyr) and use box versioning in Vagrant file. Previous versions like `microtvm-zephyr-2.5`, `microtvm-zephyr-2.4` are not continued and will be removed in future.

- Zephyr [version 2.5.0]
- Zephyr SDK [version 0.12.3]
- nRFjProg [version 10.12.1]

### [microtvm-zephyr-2.4](https://app.vagrantup.com/tlcpack/boxes/microtvm-zephyr/versions/0.0.4)

- Zephyr [version 2.4.0]
- Zephyr SDK [version 0.11.3]
- nRFjProg [version 10.9.0]
## Versioning
We use semantic versioning as it is recommended by [Vagrant](https://www.vagrantup.com/docs/boxes/versioning). We use `X.Y.Z` version where we maintain the same major version `X` it has minor changes and newer version is still compatible with older versions and we increase minor version `Y`. However, We increase the major version `X` when new RVM is not compatible with older onces. Updating Zephyr SDK is considered a major change and it requires incrementing major version `X`.
3 changes: 2 additions & 1 deletion apps/microtvm/reference-vm/zephyr/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
# under the License.

Vagrant.configure("2") do |config|
config.vm.box = "tlcpack/microtvm-zephyr-2.7"
config.vm.box = "tlcpack/microtvm-zephyr"
config.vm.box_version = "1.0.0"

if ENV.has_key?("TVM_RVM_NUM_CORES")
num_cores = ENV["TVM_RVM_NUM_CORES"]
Expand Down
2 changes: 1 addition & 1 deletion docker/install/ubuntu_install_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ apt-install-and-clear -y python-pip python-dev python3.6 python3.6-dev
rm -f /usr/bin/python3 && ln -s /usr/bin/python3.6 /usr/bin/python3

# python 3.7
apt-get install -y python3.7
apt-install-and-clear -y python3.7

# Install pip
wget -q https://bootstrap.pypa.io/get-pip.py && python3.7 get-pip.py
Expand Down

0 comments on commit 26703b8

Please sign in to comment.