Commit eb022ec9 authored by Neelay Shah's avatar Neelay Shah Committed by GitHub
Browse files

refactor: moving tio to launch dir

parent e0e9f4a2
...@@ -30,7 +30,7 @@ on: ...@@ -30,7 +30,7 @@ on:
- 'lib/runtime/**' - 'lib/runtime/**'
- 'lib/llm/**' - 'lib/llm/**'
- 'lib/bindings/**' - 'lib/bindings/**'
- 'applications/llm/**' - 'launch/**'
- 'examples/rust/**' - 'examples/rust/**'
- '**.rs' - '**.rs'
- 'Cargo.toml' - 'Cargo.toml'
...@@ -40,7 +40,7 @@ jobs: ...@@ -40,7 +40,7 @@ jobs:
pre-merge-rust: pre-merge-rust:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: { dir: ['lib/runtime', 'lib/llm', 'lib/bindings/c', 'lib/bindings/python', 'applications/llm/tio', 'applications/llm/count', 'examples/rust'] } matrix: { dir: ['lib/runtime', 'lib/llm', 'lib/bindings/c', 'lib/bindings/python', 'launch/tio', 'applications/llm/count', 'examples/rust'] }
permissions: permissions:
contents: read contents: read
steps: steps:
...@@ -85,7 +85,7 @@ jobs: ...@@ -85,7 +85,7 @@ jobs:
if: | if: |
matrix.dir != 'examples/rust' && matrix.dir != 'examples/rust' &&
matrix.dir != 'applications/llm/count' && matrix.dir != 'applications/llm/count' &&
matrix.dir != 'applications/llm/tio' && matrix.dir != 'launch/tio' &&
matrix.dir != 'lib/llm' && matrix.dir != 'lib/llm' &&
matrix.dir != 'lib/bindings/c' && matrix.dir != 'lib/bindings/c' &&
matrix.dir != 'lib/bindings/python' matrix.dir != 'lib/bindings/python'
......
...@@ -42,5 +42,5 @@ tokio = { version = "1", features = ["full"] } ...@@ -42,5 +42,5 @@ tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec", "net"] } tokio-util = { version = "0.7", features = ["codec", "net"] }
tracing = { version = "0.1" } tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter", "local-time", "json"] } tracing-subscriber = { version = "0.3", features = ["env-filter", "local-time", "json"] }
triton-distributed-runtime = { path = "../../../lib/runtime" } triton-distributed-runtime = { path = "../../lib/runtime" }
triton-distributed-llm = { path = "../../../lib/llm" } triton-distributed-llm = { path = "../../lib/llm" }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment