From e6c83f4ec058c65b3ded7605a1c85910caf7a0b0 Mon Sep 17 00:00:00 2001 From: luotao1 Date: Wed, 9 Nov 2016 14:59:02 +0800 Subject: [PATCH] some tiny fixs (#406) * some tiny fixs * use VLOG(3) --- paddle/cuda/src/hl_dso_loader.cc | 2 +- python/paddle/trainer_config_helpers/tests/configs/.gitignore | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/paddle/cuda/src/hl_dso_loader.cc b/paddle/cuda/src/hl_dso_loader.cc index c0b5d6e357..b564b96903 100644 --- a/paddle/cuda/src/hl_dso_loader.cc +++ b/paddle/cuda/src/hl_dso_loader.cc @@ -48,7 +48,7 @@ static inline std::string join(const std::string& part1, const std::string& part static inline void GetDsoHandleFromDefaultPath( std::string& dso_path, void** dso_handle, int dynload_flags) { - LOG(INFO) << "Try to find cuda library: " << dso_path + VLOG(3) << "Try to find cuda 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); diff --git a/python/paddle/trainer_config_helpers/tests/configs/.gitignore b/python/paddle/trainer_config_helpers/tests/configs/.gitignore index 52378fe7a4..eb646b4a71 100644 --- a/python/paddle/trainer_config_helpers/tests/configs/.gitignore +++ b/python/paddle/trainer_config_helpers/tests/configs/.gitignore @@ -1 +1 @@ -*protostr +protostr/*.unitest -- GitLab