remove residual pthread references, but restore in build for gtest

gtest depends on pthread in Ubuntu 14.04
This commit is contained in:
Evan Shelhamer 2014-08-30 21:37:12 -07:00
Родитель 45a80fa588
Коммит 4dcb96e42d
8 изменённых файлов: 4 добавлений и 14 удалений

Просмотреть файл

@ -158,7 +158,7 @@ ifneq ($(CPU_ONLY), 1)
LIBRARY_DIRS += $(CUDA_LIB_DIR)
LIBRARIES := cudart cublas curand
endif
LIBRARIES += \
LIBRARIES += pthread \
glog gflags protobuf leveldb snappy \
lmdb \
boost_system \
@ -277,7 +277,7 @@ LIBRARY_DIRS += $(BLAS_LIB)
# Complete build flags.
COMMON_FLAGS += $(foreach includedir,$(INCLUDE_DIRS),-I$(includedir))
CXXFLAGS += -fPIC $(COMMON_FLAGS) $(WARNINGS)
CXXFLAGS += -pthread -fPIC $(COMMON_FLAGS) $(WARNINGS)
NVCCFLAGS := -ccbin=$(CXX) -Xcompiler -fPIC $(COMMON_FLAGS)
# mex may invoke an older gcc that is too liberal with -Wuninitalized
MATLAB_CXXFLAGS := $(CXXFLAGS) -Wno-uninitialized

Просмотреть файл

@ -8,7 +8,6 @@
#include "boost/scoped_ptr.hpp"
#include "hdf5.h"
#include "leveldb/db.h"
#include "pthread.h"
#include "caffe/blob.hpp"
#include "caffe/common.hpp"

Просмотреть файл

@ -7,7 +7,6 @@
#include "boost/scoped_ptr.hpp"
#include "hdf5.h"
#include "pthread.h"
#include "caffe/blob.hpp"
#include "caffe/common.hpp"

Просмотреть файл

@ -13,7 +13,7 @@
namespace caffe {
// This function is used to create a pthread that prefetches the data.
// This function is used to create a thread that prefetches the data.
template <typename Dtype>
void DataLayer<Dtype>::InternalThreadEntry() {
Datum datum;

Просмотреть файл

@ -2,7 +2,6 @@
#include <vector>
#include "leveldb/db.h"
#include "pthread.h"
#include "stdint.h"
#include "caffe/layer.hpp"

Просмотреть файл

@ -12,7 +12,7 @@
namespace caffe {
// This function is used to create a pthread that prefetches the data.
// This function is used to create a thread that prefetches the data.
template <typename Dtype>
void ImageDataLayer<Dtype>::InternalThreadEntry() {
Datum datum;

Просмотреть файл

@ -1,6 +1,3 @@
//
// Based on data_layer.cpp by Yangqing Jia.
#include <stdint.h>
#include <algorithm>

Просмотреть файл

@ -1,7 +1,3 @@
//
// Based on data_layer.cpp by Yangqing Jia.
#include <pthread.h>
#include <stdint.h>
#include <string>