We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 202b1e7 commit fc35559Copy full SHA for fc35559
.github/workflows/build.yml
@@ -1078,7 +1078,7 @@ jobs:
1078
cmake --build build -j ${env:NUMBER_OF_PROCESSORS}
1079
1080
windows-latest-cmake-hip-release:
1081
- if: ${{ env.CREATE_RELEASE }}
+ if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' || contains(github.event.head_commit.message, '[pack]') }}
1082
runs-on: windows-latest
1083
1084
strategy:
src/llama.cpp
@@ -10064,3 +10064,4 @@ void llama_perf_context_reset(struct llama_context * ctx) {
10064
ctx->t_eval_us = ctx->n_eval = 0;
10065
ctx->t_p_eval_us = ctx->n_p_eval = 0;
10066
}
10067
+
0 commit comments