Skip to content

Commit f0c62fa

Browse files
author
singla0009
committed
fix(linux): use our own patched parakeet.cpp repo
1 parent f1ab6fc commit f0c62fa

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/linux-build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,8 @@ jobs:
2222
2323
- name: Compile C++ Backend (Parakeet patched for AI4Bharat)
2424
run: |
25-
git clone --recursive https://github.com/mudler/parakeet.cpp.git
25+
git clone --recursive https://github.com/AnshSinglaDev/parakeet.cpp.git
2626
cd parakeet.cpp
27-
# Apply the architectural patch for Indic models (reshapes [KW, KH, C, 1] -> [KW, KH, 1, C])
28-
sed -i '/clone_weight(ctx, ml, s.dw_w);/a \ if (dww->ne[2] > 1 && dww->ne[3] == 1) { dww = ggml_reshape_4d(ctx, dww, dww->ne[0], dww->ne[1], 1, dww->ne[2]); }' src/subsampling.cpp
2927
mkdir -p build && cd build
3028
cmake .. -DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS
3129
make -j$(nproc)

0 commit comments

Comments
 (0)