Skip to content

Commit abdd97e

Browse files
unamedkrclaude
andcommitted
Fix CI: remove unused variable warning, add shallow clone
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c47c7ad commit abdd97e

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ jobs:
2525
steps:
2626
- name: Checkout
2727
uses: actions/checkout@v4
28+
with:
29+
fetch-depth: 1
30+
31+
- name: Install dependencies (Ubuntu)
32+
if: runner.os == 'Linux'
33+
run: sudo apt-get update && sudo apt-get install -y cmake
2834

2935
- name: Configure CMake
3036
run: >

src/engine/tq_ops.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,6 @@ static int g_q8_cap = 0;
724724
void tq_matmul_q4(float* out, const float* x, const uint8_t* w_qs, const float* w_scales,
725725
int n, int d) {
726726
/* Quantize activation x to Q8 (amortized across all rows) */
727-
int n_blocks = d / 32;
728727
if (d > g_q8_cap) {
729728
free(g_q8_buf); free(g_q8_scales);
730729
g_q8_buf = (int8_t*)malloc((size_t)d * sizeof(int8_t));

0 commit comments

Comments
 (0)