repo for tvm

Clone this repo:

Branches

  1. 18871b3 enable rust doc by tqchen · 2 days ago main
  2. 5ded871 add missing package `requests` by Junru Shao · 4 weeks ago
  3. 4315ed2 Update TVM-FFI site build instructions by Junru Shao · 4 weeks ago
  4. 5cfbcad Update docs build script by tqchen · 4 weeks ago
  5. 765e317 Update ffi docs by tqchen · 5 weeks ago

TVM Project Homepage

Dependencies

  1. Install Ruby

    # for Ubuntu 18.04+
    sudo apt install -y ruby-full build-essential
    
  2. Install Jekyll and Bundler gems

    gem install bundler jekyll
    
  3. Install project dependencies

    git clone https://github.com/apache/tvm-site.git
    cd tvm-site
    
    # If this runs into resolution errors, you may need to run:
    # bundle config set --local path 'vendor/cache'
    bundle install
    

Serve Locally

./serve_local.sh

# If you are developing on a remote machine, you can set up an SSH tunnel to view
# the site locally:
ssh -L 4000:localhost:4000 <the remote>

Then visit http://localhost:4000 in your browser.

Deployment

We use the script scripts/task_deploy_asf_site.sh to generate and deploy content to the asf-site branch.

The docs folder is not part of the source, they are built separately from the tvm's docs and updated via scripts/task_docs_update.sh