File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 4444 -D CMAKE_CXX_COMPILER_LAUNCHER=ccache
4545
4646 - name : Build
47- run : cmake --build ${{ github.workspace }}/build --preset ${{ matrix.preset }} --config ${{ matrix.build_type }}
47+ run : cmake --build ${{ github.workspace }}/build --preset ${{ matrix.preset }} --config ${{ matrix.build_type }} -j 4
4848
4949 - name : Archive production artifacts
5050 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ static HWY_NOINLINE HWY_MAYBE_UNUSED void GeluMulToBF16(
241241
242242 size_t i = 0 ;
243243 if (size >= 2 * NF) {
244- for (; i < size - 2 * NF; i += 2 * NF) {
244+ for (; i <= size - 2 * NF; i += 2 * NF) {
245245 const VF mul0 = hn::LoadU (df, mul + i);
246246 const VF mul1 = hn::LoadU (df, mul + i + NF);
247247 const VF g0 = hn::Mul (mul0, Gelu (df, hn::LoadU (df, gelu_in + i)));
You can’t perform that action at this time.
0 commit comments