Skip to content

Commit

Permalink
ggml : when using BLAS start only 1 CPU thread
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Jan 7, 2023
1 parent 6394c90 commit d347a59
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -7257,6 +7257,7 @@ void ggml_graph_compute(struct ggml_context * ctx, struct ggml_cgraph * cgraph)
node->src1->type == GGML_TYPE_F32) {
#if defined(GGML_USE_ACCELERATE) || defined(GGML_USE_OPENBLAS)
if (ggml_compute_forward_mul_mat_use_blas(node->src0, node->src1, node)) {
node->n_tasks = 1;
cur = sizeof(float)*(node->src0->ne[0]*node->src0->ne[1]);
} else {
cur = sizeof(ggml_fp16_t)*ggml_nelements(node->src1);
Expand Down

0 comments on commit d347a59

Please sign in to comment.