test [pack]

This commit is contained in:
slaren 2025-01-24 22:07:27 +01:00
parent df0edbb0be
commit de9d2c6f09
2 changed files with 1 additions and 2 deletions

View File

@ -31,7 +31,7 @@ env:
LLAMA_LOG_COLORS: 1
LLAMA_LOG_PREFIX: 1
LLAMA_LOG_TIMESTAMPS: 1
CREATE_ARTIFACTS: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' || contains(github.event.head_commit.message, '[pack]') }}
CREATE_ARTIFACTS: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' || contains(github.event.pull_request.labels.*.name, 'artifacts') }}
jobs:
macOS-latest-cmake-arm64:

View File

@ -10064,4 +10064,3 @@ void llama_perf_context_reset(struct llama_context * ctx) {
ctx->t_eval_us = ctx->n_eval = 0;
ctx->t_p_eval_us = ctx->n_p_eval = 0;
}