Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
files: |
tests/**
python/**
sha: 'main'

- name: Check for changes in examples
id: changed-examples
Expand All @@ -38,6 +39,7 @@ jobs:
files: |
python/**
examples/**
sha: 'main'

- name: Check for changes in docs
id: changed-docs
Expand All @@ -46,6 +48,7 @@ jobs:
files: |
python/**
docs/**
sha: 'main'

tests:
needs: check-changes
Expand Down Expand Up @@ -75,7 +78,10 @@ jobs:
docs:
needs: check-changes
if: github.repository == 'NVIDIA/tilus' && needs.check-changes.outputs.should_run_docs == 'true'
runs-on: ubuntu-latest
runs-on: linux-amd64-gpu-l4-latest-1
container:
image: nvidia/cuda:12.6.2-devel-ubuntu22.04
options: --gpus all
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand All @@ -94,7 +100,10 @@ jobs:
examples:
needs: check-changes
if: github.repository == 'NVIDIA/tilus' && needs.check-changes.outputs.should_run_examples == 'true'
runs-on: ubuntu-latest
runs-on: linux-amd64-gpu-l4-latest-1
container:
image: nvidia/cuda:12.6.2-devel-ubuntu22.04
options: --gpus all
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'tilus'
copyright = '2025, hidet.org'
author = 'hidet.org'
copyright = '2025, NVIDIA'
author = 'NVIDIA'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
14 changes: 7 additions & 7 deletions docs/source/programming-guides/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ Dive Deeper
We also have detailed sections on different aspects of the Tilus programming model. To learn more about Tilus, you can
explore the following sections:

- :doc:`tilus-script`: learn about the Tilus script syntax and how to write Tilus scripts.
- :doc:`type-system/__init__`:
- :doc:`instructions`:
- :doc:`control-flow`:
- :doc:`cache`:
- :doc:`autotuning`:
- :doc:`low-precision-support`:
- :doc:`tilus-script`
- :doc:`type-system/__init__`
- :doc:`instructions`
- :doc:`control-flow`
- :doc:`cache`
- :doc:`autotuning`
- :doc:`low-precision-support`
Loading