Skip to content

Commit 2164034

Browse files
authored
Version 0.0.3 (#26)
* Crash fixes (for example, for LLaMA model loading) * Performance improvements (LLaMA inference now uses all threads if necessary).' * Windows build fixes, though not CUDA support yet. An official build is not yet available but it does build and run in software on Arm64 Windows 11. * Force directed node layout.
1 parent 421dcee commit 2164034

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+3009
-1414
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 294 deletions
This file was deleted.

.github/workflows/test.yaml

Lines changed: 4 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
pull_request:
77
branches:
88
- main
9+
push:
10+
branches:
11+
- dev
12+
- main
913

1014
jobs:
1115
mac-test:
@@ -20,10 +24,6 @@ jobs:
2024
components: rustfmt, clippy
2125
- name: Install Ninja
2226
run: brew install ninja
23-
- name: Run cargo check
24-
uses: actions-rs/cargo@v1
25-
with:
26-
command: check
2727
- name: Install LLVM tools
2828
run: brew install llvm
2929
- name: Install cargo-llvm-cov
@@ -46,10 +46,6 @@ jobs:
4646
components: rustfmt, clippy
4747
- name: Install Ninja
4848
run: sudo apt-get install ninja-build
49-
- name: Run cargo check
50-
uses: actions-rs/cargo@v1
51-
with:
52-
command: check
5349
- name: Install LLVM tools
5450
run: sudo apt-get install llvm
5551
- name: Install cargo-llvm-cov
@@ -62,30 +58,3 @@ jobs:
6258
uses: codecov/codecov-action@v4.0.1
6359
with:
6460
token: ${{ secrets.CODECOV_TOKEN }}
65-
# Windows is expected to fail for the moment
66-
windows-test:
67-
runs-on: windows-latest
68-
steps:
69-
- name: Checkout repository
70-
uses: actions/checkout@v4
71-
- name: Install Rust toolchain
72-
uses: actions-rs/toolchain@v1
73-
with:
74-
toolchain: stable
75-
components: rustfmt, clippy
76-
- name: Install Ninja
77-
run: choco install ninja
78-
- name: Run cargo check
79-
uses: actions-rs/cargo@v1
80-
with:
81-
command: check
82-
- name: Install LLVM tools
83-
run: choco install llvm
84-
- name: Install cargo-llvm-cov
85-
run: cargo install cargo-llvm-cov
86-
- name: Run tests with coverage
87-
run: cargo llvm-cov --workspace --lcov --output-path ./target/lcov.info
88-
- name: Upload coverage reports to Codecov
89-
uses: codecov/codecov-action@v4.0.1
90-
with:
91-
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)