Browse Source

Added option to append define codes with an underscore.

Fixed the code array not getting reset on subsequent AllCombinations
calls.
tags/v0.2.15^2
Hank Anderson 10 years ago
parent
commit
cfaf1c678f
2 changed files with 10 additions and 4 deletions
  1. +9
    -3
      cmake/utils.cmake
  2. +1
    -1
      driver/level3/CMakeLists.txt

+ 9
- 3
cmake/utils.cmake View File

@@ -23,6 +23,7 @@ function(AllCombinations list_in)
# subtract 1 since we will iterate from 0 to num_combos
math(EXPR num_combos "(${num_combos} << ${list_count}) - 1")
set(LIST_OUT "")
set(CODES_OUT "")
foreach (c RANGE 0 ${num_combos})

set(current_combo "")
@@ -119,8 +120,8 @@ endfunction ()
# @param sources_in the source files to build from
# @param defines_in the preprocessor definitions that will be combined to create the object files
# @param float_type_in the float type to define for this build (e.g. SINGLE/DOUBLE/etc)
# @param replace_k Replace the "k" in the filename with the define combo letters (else it appends). E.g. symm_k with TRANS and UNIT defined will be symm_TU.
# @param all_defines_in (optional) preprocessor definitions that will be applied to all objects
# @param replace_k If 1, replace the "k" in the filename with the define combo letters. E.g. symm_k with TRANS and UNIT defined will be symm_TU. If 0, appends, or if 2 appends with an underscore.
function(GenerateCombinationObjects sources_in defines_in float_type_in all_defines_in replace_k)

AllCombinations("${defines_in}")
@@ -151,10 +152,14 @@ function(GenerateCombinationObjects sources_in defines_in float_type_in all_defi

set(replace_k_name "")
set(append_name "")
if (replace_k)
if (replace_k EQUAL 1)
set(replace_k_name ${define_code})
else ()
set(append_name ${define_code})
if (replace_k EQUAL 2)
set(append_name "_${define_code}")
else ()
set(append_name ${define_code})
endif ()
endif ()

GenerateNamedObjects("${source_file}" "${float_type_in}" "${cur_defines}" "" 0 "${replace_k_name}" "${append_name}")
@@ -164,3 +169,4 @@ function(GenerateCombinationObjects sources_in defines_in float_type_in all_defi

set(COMBO_OBJ_LIST_OUT ${COMBO_OBJ_LIST_OUT} PARENT_SCOPE)
endfunction ()


+ 1
- 1
driver/level3/CMakeLists.txt View File

@@ -50,7 +50,7 @@ GenerateCombinationObjects("symm_k.c" "LOWER;RSIDE" "DOUBLE" "NN" 1)
list(APPEND DBLAS_OBJS ${OBJ_LIST_OUT})
GenerateCombinationObjects("syrk_k.c;syr2k_k.c" "LOWER;TRANS" "DOUBLE" "" 1)
list(APPEND DBLAS_OBJS ${OBJ_LIST_OUT})
GenerateCombinationObjects("syrk_kernel.c;syr2k_kernel.c" "LOWER" "DOUBLE" "" 1)
GenerateCombinationObjects("syrk_kernel.c;syr2k_kernel.c" "LOWER" "DOUBLE" "" 2)
list(APPEND DBLAS_OBJS ${OBJ_LIST_OUT})

#if (SMP)


Loading…
Cancel
Save