From 5dc605e0210f95e8ba9fc5dbc024400ccc5545f3 Mon Sep 17 00:00:00 2001 From: moebiusband73 Date: Wed, 13 Mar 2019 14:54:05 +0100 Subject: [PATCH] Update README.md --- README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3b27e1e..4bfb8e7 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,19 @@ TAG = GCC # Supported GCC, CLANG, ICC OPENMP = -fopenmp ``` -3. Build with: +3. Adjust options set in config.mk: +``` +OPTIONS = -DSIZE=40000000ull +OPTIONS += -DNTIMES=10 +OPTIONS += -DARRAY_ALIGNMENT=64 +#OPTIONS += -DVERBOSE_AFFINITY +#OPTIONS += -DVERBOSE_DATASIZE +#OPTIONS += -DVERBOSE_TIMER +``` + +The verbosity options enable detailed output about affinity settings, allocation sizes and timer resolution. + +4. Build with: ``` make ``` @@ -39,7 +51,7 @@ To output the executed commands use: make Q= ``` -4. Clean up with: +5. Clean up with: ``` make clean ``` @@ -50,7 +62,7 @@ make distclean ``` to clean intermediate build results and binary. -5. (Optional) Generate assembler: +6. (Optional) Generate assembler: ``` make asm ```