提交 b6eaed0e 编写于 作者: X xzl

Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into improve_pruning

...@@ -10,7 +10,7 @@ if(WITH_RDMA) ...@@ -10,7 +10,7 @@ if(WITH_RDMA)
function(generate_rdma_links) function(generate_rdma_links)
#redirect to current DIR to isolate the pollution from system runtime environment #redirect to current DIR to isolate the pollution from system runtime environment
#it can benifits unified control for different gcc environment. #it can benifits unified control for different gcc environment.
#e.g, by default gcc48 did not refer /usr/lib64 which could contain low version #e.g, by default gcc48 did not refer /usr/lib64 which could contain low version
#runtime libraries that will crash process while loading it. That redirect trick #runtime libraries that will crash process while loading it. That redirect trick
#can fix it. #can fix it.
...@@ -19,7 +19,9 @@ if(WITH_RDMA) ...@@ -19,7 +19,9 @@ if(WITH_RDMA)
COMMAND ln -s -f /usr/lib64/libibverbs.so.1.0.0 librdma/libibverbs.so.1 COMMAND ln -s -f /usr/lib64/libibverbs.so.1.0.0 librdma/libibverbs.so.1
COMMAND ln -s -f /usr/lib64/libibverbs.so.1.0.0 librdma/libibverbs.so COMMAND ln -s -f /usr/lib64/libibverbs.so.1.0.0 librdma/libibverbs.so
COMMAND ln -s -f /usr/lib64/librdmacm.so.1.0.0 librdma/librdmacm.so.1 COMMAND ln -s -f /usr/lib64/librdmacm.so.1.0.0 librdma/librdmacm.so.1
COMMAND ln -s -f /usr/lib64/librdmacm.so.1.0.0 librdma/librdmacm.so COMMAND ln -s -f /usr/lib64/librdmacm.so.1.0.0 librdma/librdmacm.so
COMMAND ln -s -f /lib64/libnl.so.1.1.4 librdma/libnl.so.1
COMMAND ln -s -f /lib64/libnl.so.1.1.4 librdma/libnl.so
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
) )
endfunction(generate_rdma_links) endfunction(generate_rdma_links)
...@@ -44,7 +46,7 @@ if(WITH_RDMA) ...@@ -44,7 +46,7 @@ if(WITH_RDMA)
RDMA_INC_XIO AND RDMA_INC_XIO AND
RDMA_INC_EVENT AND RDMA_INC_EVENT AND
RDMA_INC_NUMA AND RDMA_INC_NUMA AND
RDMA_LIB_SXISOCK AND RDMA_LIB_SXISOCK AND
RDMA_LIB_XIO AND RDMA_LIB_XIO AND
RDMA_LIB_EVENT AND RDMA_LIB_EVENT AND
RDMA_LIB_EVENT_CORE AND RDMA_LIB_EVENT_CORE AND
...@@ -53,19 +55,19 @@ if(WITH_RDMA) ...@@ -53,19 +55,19 @@ if(WITH_RDMA)
RDMA_LIB_NUMA RDMA_LIB_NUMA
) )
set(RDMA_INC_DIR set(RDMA_INC_DIR
${RDMA_INC_SXISOCK} ${RDMA_INC_SXISOCK}
${RDMA_INC_XIO} ${RDMA_INC_XIO}
${RDMA_INC_EVENT} ${RDMA_INC_EVENT}
${RDMA_INC_NUMA}) ${RDMA_INC_NUMA})
set(RDMA_LIBS set(RDMA_LIBS
${RDMA_LIB_SXISOCK} ${RDMA_LIB_SXISOCK}
${RDMA_LIB_XIO} ${RDMA_LIB_XIO}
${RDMA_LIB_EVENT} ${RDMA_LIB_EVENT}
${RDMA_LIB_EVENT_CORE} ${RDMA_LIB_EVENT_CORE}
${RDMA_LIB_EVENT_EXTRA} ${RDMA_LIB_EVENT_EXTRA}
${RDMA_LIB_EVENT_PTHREADS} ${RDMA_LIB_EVENT_PTHREADS}
${RDMA_LIB_NUMA} ${RDMA_LIB_NUMA}
) )
set(RDMA_LD_FLAGS "-L./librdma -libverbs -lrdmacm -Xlinker -rpath ./librdma") set(RDMA_LD_FLAGS "-L./librdma -libverbs -lrdmacm -Xlinker -rpath ./librdma")
include_directories("${RDMA_INC_DIR}") include_directories("${RDMA_INC_DIR}")
......
...@@ -19,8 +19,10 @@ import shutil ...@@ -19,8 +19,10 @@ import shutil
import sys import sys
import importlib import importlib
import paddle.v2.dataset import paddle.v2.dataset
import cPickle
import glob
__all__ = ['DATA_HOME', 'download', 'md5file'] __all__ = ['DATA_HOME', 'download', 'md5file', 'split', 'cluster_files_reader']
DATA_HOME = os.path.expanduser('~/.cache/paddle/dataset') DATA_HOME = os.path.expanduser('~/.cache/paddle/dataset')
...@@ -74,3 +76,76 @@ def fetch_all(): ...@@ -74,3 +76,76 @@ def fetch_all():
getattr( getattr(
importlib.import_module("paddle.v2.dataset.%s" % module_name), importlib.import_module("paddle.v2.dataset.%s" % module_name),
"fetch")() "fetch")()
def split(reader, line_count, suffix="%05d.pickle", dumper=cPickle.dump):
"""
you can call the function as:
split(paddle.v2.dataset.cifar.train10(), line_count=1000,
suffix="imikolov-train-%05d.pickle")
the output files as:
|-imikolov-train-00000.pickle
|-imikolov-train-00001.pickle
|- ...
|-imikolov-train-00480.pickle
:param reader: is a reader creator
:param line_count: line count for each file
:param suffix: the suffix for the output files, should contain "%d"
means the id for each file. Default is "%05d.pickle"
:param dumper: is a callable function that dump object to file, this
function will be called as dumper(obj, f) and obj is the object
will be dumped, f is a file object. Default is cPickle.dump.
"""
if not callable(dumper):
raise TypeError("dumper should be callable.")
lines = []
indx_f = 0
for i, d in enumerate(reader()):
lines.append(d)
if i >= line_count and i % line_count == 0:
with open(suffix % indx_f, "w") as f:
dumper(lines, f)
lines = []
indx_f += 1
if lines:
with open(suffix % indx_f, "w") as f:
dumper(lines, f)
def cluster_files_reader(files_pattern,
trainer_count,
trainer_id,
loader=cPickle.load):
"""
Create a reader that yield element from the given files, select
a file set according trainer count and trainer_id
:param files_pattern: the files which generating by split(...)
:param trainer_count: total trainer count
:param trainer_id: the trainer rank id
:param loader: is a callable function that load object from file, this
function will be called as loader(f) and f is a file object.
Default is cPickle.load
"""
def reader():
if not callable(loader):
raise TypeError("loader should be callable.")
file_list = glob.glob(files_pattern)
file_list.sort()
my_file_list = []
for idx, fn in enumerate(file_list):
if idx % trainer_count == trainer_id:
print "append file: %s" % fn
my_file_list.append(fn)
for fn in my_file_list:
with open(fn, "r") as f:
lines = loader(f)
for line in lines:
yield line
return reader
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
import paddle.v2.dataset.common import paddle.v2.dataset.common
import unittest import unittest
import tempfile import tempfile
import glob
class TestCommon(unittest.TestCase): class TestCommon(unittest.TestCase):
...@@ -32,6 +33,30 @@ class TestCommon(unittest.TestCase): ...@@ -32,6 +33,30 @@ class TestCommon(unittest.TestCase):
paddle.v2.dataset.common.download( paddle.v2.dataset.common.download(
yi_avatar, 'test', 'f75287202d6622414c706c36c16f8e0d')) yi_avatar, 'test', 'f75287202d6622414c706c36c16f8e0d'))
def test_split(self):
def test_reader():
def reader():
for x in xrange(10):
yield x
return reader
_, temp_path = tempfile.mkstemp()
paddle.v2.dataset.common.split(
test_reader(), 4, suffix=temp_path + '/test-%05d.pickle')
files = glob.glob(temp_path + '/test-%05d.pickle')
self.assertEqual(len(files), 3)
def test_cluster_file_reader(self):
_, temp_path = tempfile.mkstemp()
for x in xrange(5):
with open(temp_path + '/%05d.test' % x) as f:
f.write('%d\n' % x)
reader = paddle.v2.dataset.common.cluster_files_reader(
temp_path + '/*.test', 5, 0)
for idx, e in enumerate(reader()):
self.assertEqual(e, str("0"))
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册