Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
seminar-breakout
Commits
28e8f8db
Commit
28e8f8db
authored
Jun 23, 2016
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prefetchdata shouldn't require .size()
parent
4000f5d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
+15
-4
tensorpack/dataflow/prefetch.py
tensorpack/dataflow/prefetch.py
+15
-4
No files found.
tensorpack/dataflow/prefetch.py
View file @
28e8f8db
...
...
@@ -4,6 +4,7 @@
import
multiprocessing
from
threading
import
Thread
import
itertools
from
six.moves
import
range
from
six.moves.queue
import
Queue
import
uuid
...
...
@@ -52,7 +53,10 @@ class PrefetchData(ProxyDataFlow):
of data points will be random.
"""
super
(
PrefetchData
,
self
)
.
__init__
(
ds
)
self
.
_size
=
self
.
size
()
try
:
self
.
_size
=
ds
.
size
()
except
NotImplementedError
:
self
.
_size
=
-
1
self
.
nr_proc
=
nr_proc
self
.
nr_prefetch
=
nr_prefetch
self
.
queue
=
multiprocessing
.
Queue
(
self
.
nr_prefetch
)
...
...
@@ -63,7 +67,9 @@ class PrefetchData(ProxyDataFlow):
x
.
start
()
def
get_data
(
self
):
for
_
in
range
(
self
.
_size
):
for
k
in
itertools
.
count
():
if
self
.
_size
>
0
and
k
>=
self
.
_size
:
break
dp
=
self
.
queue
.
get
()
yield
dp
...
...
@@ -96,7 +102,10 @@ class PrefetchDataZMQ(ProxyDataFlow):
of datapoints will be random.
"""
super
(
PrefetchDataZMQ
,
self
)
.
__init__
(
ds
)
self
.
_size
=
ds
.
size
()
try
:
self
.
_size
=
ds
.
size
()
except
NotImplementedError
:
self
.
_size
=
-
1
self
.
nr_proc
=
nr_proc
self
.
context
=
zmq
.
Context
()
...
...
@@ -114,7 +123,9 @@ class PrefetchDataZMQ(ProxyDataFlow):
atexit
.
register
(
lambda
x
:
x
.
__del__
(),
self
)
def
get_data
(
self
):
for
_
in
range
(
self
.
_size
):
for
k
in
itertools
.
count
():
if
self
.
_size
>
0
and
k
>=
self
.
_size
:
break
dp
=
loads
(
self
.
socket
.
recv
(
copy
=
False
))
yield
dp
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment