From a0c3465b6e8a91da1865971ff97ecf44360fd290 Mon Sep 17 00:00:00 2001 From: yangyaming Date: Wed, 3 May 2017 18:36:51 +0800 Subject: [PATCH 1/2] Set filter theshold as a paramter for function build_dict of dataset imikolov --- python/paddle/v2/dataset/imikolov.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/python/paddle/v2/dataset/imikolov.py b/python/paddle/v2/dataset/imikolov.py index 41ca27e236..bf88fe1557 100644 --- a/python/paddle/v2/dataset/imikolov.py +++ b/python/paddle/v2/dataset/imikolov.py @@ -41,7 +41,7 @@ def word_count(f, word_freq=None): return word_freq -def build_dict(): +def build_dict(typo_freq=50): """ Build a word dictionary from the corpus, Keys of the dictionary are words, and values are zero-based IDs of these words. @@ -59,8 +59,7 @@ def build_dict(): # remove for now, since we will set it as last index del word_freq[''] - TYPO_FREQ = 50 - word_freq = filter(lambda x: x[1] > TYPO_FREQ, word_freq.items()) + word_freq = filter(lambda x: x[1] > typo_freq, word_freq.items()) word_freq_sorted = sorted(word_freq, key=lambda x: (-x[1], x[0])) words, _ = list(zip(*word_freq_sorted)) From b2f14e496faaea09e20ccfeae6bf2b6d51c81bf8 Mon Sep 17 00:00:00 2001 From: xuwei06 Date: Wed, 3 May 2017 16:05:52 -0700 Subject: [PATCH 2/2] Fix dynamic loading of Lapack caused by #1958 This only fixes the issue for ATLAS MKL is still another fix. --- paddle/math/MathFunctions.cpp | 11 +++++++++-- paddle/math/tests/test_matrixCompare.cpp | 9 +-------- paddle/utils/DynamicLoader.cpp | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/paddle/math/MathFunctions.cpp b/paddle/math/MathFunctions.cpp index 178fce5b0a..802a56a0d1 100644 --- a/paddle/math/MathFunctions.cpp +++ b/paddle/math/MathFunctions.cpp @@ -29,13 +29,20 @@ void* lapack_dso_handle = nullptr; * * note: default dynamic linked libs */ + +// The argument for stringizing operator is not macro-expanded first. +// We have to use two levels of macro to do the expansion. +// See https://gcc.gnu.org/onlinedocs/cpp/Stringizing.html +#define STR(x) #x #define DYNAMIC_LOAD_LAPACK_WRAP(__name) \ struct DynLoad__##__name { \ template \ auto operator()(Args... args) -> decltype(__name(args...)) { \ using lapack_func = decltype(__name(args...)) (*)(Args...); \ std::call_once(lapack_dso_flag, GetLapackDsoHandle, &lapack_dso_handle); \ - void* p_##__name = dlsym(lapack_dso_handle, #__name); \ + void* p_##__name = dlsym(lapack_dso_handle, STR(__name)); \ + CHECK(p_##__name) << "Cannot find symbol " << STR(__name) \ + << " in liblapack.so"; \ return reinterpret_cast(p_##__name)(args...); \ } \ } __name; // struct DynLoad__##__name @@ -51,7 +58,7 @@ void* lapack_dso_handle = nullptr; #define PADDLE_DGETRF LAPACKE_dgetrf #define PADDLE_SGETRI LAPACKE_sgetri #define PADDLE_DGETRI LAPACKE_dgetri -#endif +#endif #define LAPACK_ROUTINE_EACH(__macro) \ __macro(PADDLE_SGETRF) \ diff --git a/paddle/math/tests/test_matrixCompare.cpp b/paddle/math/tests/test_matrixCompare.cpp index 3b1b0065af..782a9613d8 100644 --- a/paddle/math/tests/test_matrixCompare.cpp +++ b/paddle/math/tests/test_matrixCompare.cpp @@ -237,14 +237,7 @@ TEST(Matrix, unary) { testMatrixRotate(height, width); } // inverse matrix - void** dso_handler = nullptr; - GetLapackDsoHandle(dso_handler); - if (nullptr == *dso_handler) { - LOG(WARNING) << "Failed to find liblapack.so, please specify its path " - "using LD_LIBRARY_PATH."; - } else { - testMatrixInverse(height); - } + testMatrixInverse(height); } } diff --git a/paddle/utils/DynamicLoader.cpp b/paddle/utils/DynamicLoader.cpp index 368c35e151..87c36eae6f 100644 --- a/paddle/utils/DynamicLoader.cpp +++ b/paddle/utils/DynamicLoader.cpp @@ -52,7 +52,7 @@ static inline std::string join(const std::string& part1, static inline void GetDsoHandleFromDefaultPath(std::string& dso_path, void** dso_handle, int dynload_flags) { - VLOG(3) << "Try to find cuda library: " << dso_path + VLOG(3) << "Try to find library: " << dso_path << " from default system path."; // default search from LD_LIBRARY_PATH/DYLD_LIBRARY_PATH *dso_handle = dlopen(dso_path.c_str(), dynload_flags);