Reverting changes dunnington and reference configs

Now they are unchanged from the main branch of BLIS
This commit is contained in:
Tyler Smith
2014-05-19 20:38:55 -07:00
parent 8a0ef0e0db
commit 21fb089387
4 changed files with 9 additions and 9 deletions

View File

@@ -69,7 +69,7 @@
// -- MULTITHREADING -----------------------------------------------------------
// The maximum number of BLIS threads that will run concurrently.
#define BLIS_MAX_NUM_THREADS 24
#define BLIS_MAX_NUM_THREADS 1
@@ -80,7 +80,7 @@
// The number of MC x KC, KC x NC, and MC x NC blocks to reserve in the
// contiguous memory pools.
#define BLIS_NUM_MC_X_KC_BLOCKS BLIS_MAX_NUM_THREADS
#define BLIS_NUM_KC_X_NC_BLOCKS 4
#define BLIS_NUM_KC_X_NC_BLOCKS 1
#define BLIS_NUM_MC_X_NC_BLOCKS 0
// The maximum preload byte offset is used to pad the end of the contiguous

View File

@@ -80,7 +80,7 @@ CC := gcc
# Enable IEEE Standard 1003.1-2004 (POSIX.1d).
# NOTE: This is needed to enable posix_memalign().
CPPROCFLAGS := -D_POSIX_C_SOURCE=200112L
CMISCFLAGS := -std=c99 -fopenmp #-pg
CMISCFLAGS := -std=c99 # -fopenmp -pg
CDBGFLAGS := #-g
CWARNFLAGS := -Wall
COPTFLAGS := -O2 -mfpmath=sse -fomit-frame-pointer
@@ -100,7 +100,7 @@ ARFLAGS := cru
# --- Determine the linker and related flags ---
LINKER := $(CC)
LDFLAGS := -lm -fopenmp
LDFLAGS := -lm

View File

@@ -69,7 +69,7 @@
// -- MULTITHREADING -----------------------------------------------------------
// The maximum number of BLIS threads that will run concurrently.
#define BLIS_MAX_NUM_THREADS 2
#define BLIS_MAX_NUM_THREADS 1

View File

@@ -76,14 +76,14 @@ GIT_LOG := $(GIT) log --decorate
#
# --- Determine the C compiler and related flags ---
CC := gcc-4.8
CC := gcc
# Enable IEEE Standard 1003.1-2004 (POSIX.1d).
# NOTE: This is needed to enable posix_memalign().
CPPROCFLAGS := -D_POSIX_C_SOURCE=200112L
CMISCFLAGS := -std=c99 -fopenmp # -pg
CMISCFLAGS := -std=c99 # -fopenmp -pg
CDBGFLAGS := -g
CWARNFLAGS := -Wall
COPTFLAGS := -O0 -g
COPTFLAGS := -O2
CKOPTFLAGS := $(COPTFLAGS)
CVECFLAGS := #-msse3 -march=native # -mfpmath=sse
@@ -100,7 +100,7 @@ ARFLAGS := cru
# --- Determine the linker and related flags ---
LINKER := $(CC)
LDFLAGS := -fopenmp -lm
LDFLAGS := -lm