mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-08-12 13:18:00 +02:00
Compare commits
1 Commits
gg/cuda-fi
...
gg/ci-cuda
Author | SHA1 | Date | |
---|---|---|---|
059bcd3009 |
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -459,7 +459,7 @@ jobs:
|
|||||||
path: build/bin/${{ matrix.build }}
|
path: build/bin/${{ matrix.build }}
|
||||||
|
|
||||||
windows-cublas:
|
windows-cublas:
|
||||||
runs-on: windows-latest
|
runs-on: windows-2019
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -75,7 +75,7 @@ static __global__ void mul_mat_vec_q(
|
|||||||
tmp[j][i] = warp_reduce_sum(tmp[j][i]);
|
tmp[j][i] = warp_reduce_sum(tmp[j][i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (threadIdx.x < rows_per_cuda_block && (rows_per_cuda_block == 1 || row0 + threadIdx.x < nrows_dst)) {
|
if (threadIdx.x < rows_per_cuda_block) {
|
||||||
dst[j*nrows_dst + row0 + threadIdx.x] = tmp[j][threadIdx.x];
|
dst[j*nrows_dst + row0 + threadIdx.x] = tmp[j][threadIdx.x];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user