Skip to content

Commit

Permalink
add low bound for number of buffers
Browse files Browse the repository at this point in the history
  • Loading branch information
brada4 committed Nov 6, 2018
1 parent a931afe commit 3fd4131
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ extern "C" {

#define ALLOCA_ALIGN 63UL

#define NUM_BUFFERS (MAX_CPU_NUMBER * 2 * MAX_PARALLEL_NUMBER)
#define NUM_BUFFERS MAX(64,(MAX_CPU_NUMBER * 2 * MAX_PARALLEL_NUMBER))

#ifdef NEEDBUNDERSCORE
#define BLASFUNC(FUNC) FUNC##_
Expand Down

0 comments on commit 3fd4131

Please sign in to comment.