Skip to content

Commit

Permalink
Minor reordering of bl2_config.h definitions.
Browse files Browse the repository at this point in the history
  • Loading branch information
fgvanzee committed Dec 17, 2012
1 parent 4a83f67 commit 5d8bdb2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
11 changes: 6 additions & 5 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ INSTALL
INTRODUCTION

This file contains an abbreviated description of how to configure, compile,
and install a BLIS library on your local system. Note that this file is
mainly for those of us who are impatient! If you have time, PLEASE check the
BLIS homepage for a wiki page that describes the build process in much more
detail. The BLIS homepage is located at:
and install a BLIS library on your local system.

NOTE: This file is mainly for those of us who are impatient! It is probably
out-of-date. If you have time, PLEASE check the BLIS homepage for a wiki
page that describes the build process. The BLIS homepage is located at:

http://code.google.com/p/blis/

Expand Down Expand Up @@ -42,7 +43,7 @@ configuration as a template:
> ls config/x86-64opt
bl2_config.h bl2_kernel.h make_defs.mk

Then you would edit each of these four files. Here are some special notes
Then you would edit each of these three files. Here are some special notes
about each file:

o bl2_config.h
Expand Down
6 changes: 3 additions & 3 deletions config/clarksville/bl2_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@

// -- MEMORY ALLOCATOR ---------------------------------------------------------

// Static memory pool size.
#define BLIS_STATIC_MEM_POOL_SIZE (256 * 5000 * sizeof(double))

// Enable memory alignment?
#define BLIS_ENABLE_MEMORY_ALIGNMENT 1

Expand All @@ -63,6 +60,9 @@
#define BLIS_MEMORY_ALIGNMENT_BOUNDARY 16
#endif

// Static memory pool size.
#define BLIS_STATIC_MEM_POOL_SIZE (256 * 5000 * sizeof(double))

// The page size is used by the memory allocator so that static memory
// can be allocated with alignment to the beginning of a page boundary.
#define BLIS_PAGE_SIZE 4096
Expand Down
6 changes: 3 additions & 3 deletions config/reference/bl2_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@

// -- MEMORY ALLOCATOR ---------------------------------------------------------

// Static memory pool size.
#define BLIS_STATIC_MEM_POOL_SIZE (256 * 5000 * sizeof(double))

// Enable memory alignment?
#define BLIS_ENABLE_MEMORY_ALIGNMENT 1

Expand All @@ -63,6 +60,9 @@
#define BLIS_MEMORY_ALIGNMENT_BOUNDARY 16
#endif

// Static memory pool size.
#define BLIS_STATIC_MEM_POOL_SIZE (256 * 5000 * sizeof(double))

// The page size is used by the memory allocator so that static memory
// can be allocated with alignment to the beginning of a page boundary.
#define BLIS_PAGE_SIZE 4096
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1-3
0.0.1-4

0 comments on commit 5d8bdb2

Please sign in to comment.