Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
navipy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Looking for advice? Join the
Matrix channel for GitLab users in Bielefeld
!
Show more breadcrumbs
Olivier Bertrand
navipy
Commits
ec54e78b
Commit
ec54e78b
authored
6 years ago
by
Olivier Bertrand
Browse files
Options
Downloads
Patches
Plain Diff
Add output for long calculation
parent
b5036334
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
navipy/moving/agent.py
+39
-8
39 additions, 8 deletions
navipy/moving/agent.py
with
39 additions
and
8 deletions
navipy/moving/agent.py
+
39
−
8
View file @
ec54e78b
...
...
@@ -29,6 +29,7 @@ from multiprocessing import Queue, JoinableQueue, Process
import
inspect
import
navipy.moving.maths
as
navimomath
from
navipy.database
import
DataBaseLoad
import
time
version
=
float
(
nx
.
__version__
)
...
...
@@ -379,7 +380,9 @@ the agent motion, or
def
compute_velocities
(
self
,
ncpu
=
5
,
timeout
=
1
):
timeout
=
1
,
filename
=
None
,
blocksize
=
100
):
# Create a dataframe to store the velocities
convention
=
self
.
_brain
.
renderer
.
rotation_convention
tuples_posvel
=
posorient_columns
(
convention
)
...
...
@@ -415,14 +418,30 @@ the agent motion, or
# Wait for all of the tasks to finish
# posorients_queue.join()
for
_
in
range
(
nx
.
number_of_nodes
(
self
.
_graph
)):
nline
=
0
prev_nline
=
nline
t_start
=
time
.
time
()
nbnodes
=
nx
.
number_of_nodes
(
self
.
_graph
)
for
_
in
range
(
nbnodes
):
res
=
results_queue
.
get
(
timeout
=
timeout
)
self
.
velocities
.
loc
[
res
.
name
,
res
.
index
]
=
res
if
(
nline
-
prev_nline
)
>
blocksize
:
t_elapse
=
time
.
time
()
-
t_start
t_peritem
=
t_elapse
/
nline
remain
=
nbnodes
-
nline
print
(
'
Computed {} in {}
'
.
format
(
nline
,
t_elapse
))
print
(
'
Remain {}, done in {}
'
.
format
(
remain
,
remain
*
t_peritem
))
if
filename
is
not
None
:
self
.
velocities
.
to_hdf
(
filename
,
key
=
'
velocities
'
)
nline
+=
1
return
self
.
velocities
.
copy
()
def
build_graph
(
self
,
ncpu
=
5
,
timeout
=
1
):
timeout
=
1
,
filename
=
None
,
blocksize
=
100
):
# Build a list of nodes
results_edges
=
[]
posorients_queue
=
JoinableQueue
()
...
...
@@ -450,11 +469,23 @@ the agent motion, or
# Wait for all of the tasks to finish
# posorients_queue.join()
nline
=
0
prev_nline
=
nline
t_start
=
time
.
time
()
nbnodes
=
nx
.
number_of_nodes
(
self
.
_graph
)
for
_
in
range
(
nx
.
number_of_nodes
(
self
.
_graph
)):
result
=
results_queue
.
get
(
timeout
=
timeout
)
results_edges
.
append
((
result
[
0
].
name
,
result
[
1
].
name
))
if
(
nline
-
prev_nline
)
>
blocksize
:
t_elapse
=
time
.
time
()
-
t_start
t_peritem
=
t_elapse
/
nline
remain
=
nbnodes
-
nline
print
(
'
Computed {} in {}
'
.
format
(
nline
,
t_elapse
))
print
(
'
Remain {}, done in {}
'
.
format
(
remain
,
remain
*
t_peritem
))
if
filename
is
not
None
:
np
.
save
(
filename
,
np
.
array
(
results_edges
))
nline
+=
1
# print(results_edges[-1])
self
.
_graph
.
add_edges_from
(
results_edges
)
self
.
check_graph
()
...
...
@@ -510,10 +541,10 @@ the agent motion, or
# [0] because one node of the attractor is enough
# all other node of the attractor are connected to this one
target
=
list
(
att
[
'
attractor
'
])[
0
]
attractors
[
att_i
][
'
paths
'
]
=
\
nx
.
shortest_path
(
self
.
graph
,
target
=
target
)
attractors
[
att_i
][
'
sources
'
]
=
\
list
(
attractors
[
att_i
][
'
paths
'
].
keys
())
attractors
[
att_i
][
'
paths
'
]
=
nx
.
shortest_path
(
self
.
graph
,
target
=
target
)
attractors
[
att_i
][
'
sources
'
]
=
list
(
attractors
[
att_i
][
'
paths
'
].
keys
())
return
attractors
def
catchment_area
(
self
,
attractors
=
None
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment