Skip to content

Commit

Permalink
batch module renamed to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
teascavenger committed Apr 26, 2019
1 parent 7ea7345 commit cd29b1f
Show file tree
Hide file tree
Showing 17 changed files with 574 additions and 574 deletions.
2 changes: 1 addition & 1 deletion doc_sources/flexcalc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ flexcalc.analyze module
flexcalc.batch module
---------------------

.. automodule:: flexcalc.batch
.. automodule:: flexcalc.pipeline
:members:
:undoc-members:
:show-inheritance:
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/_modules/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@

<h1>All modules for which code is available</h1>
<ul><li><a href="flexcalc/analyze.html">flexcalc.analyze</a></li>
<li><a href="flexcalc/batch.html">flexcalc.batch</a></li>
<li><a href="flexcalc/pipeline.html">flexcalc.pipeline</a></li>
<li><a href="flexcalc/process.html">flexcalc.process</a></li>
</ul>

Expand Down
2 changes: 1 addition & 1 deletion docs/_sources/flexcalc.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ flexcalc.analyze module
flexcalc.batch module
---------------------

.. automodule:: flexcalc.batch
.. automodule:: flexcalc.pipeline
:members:
:undoc-members:
:show-inheritance:
Expand Down
Binary file modified docs/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/doctrees/flexcalc.doctree
Binary file not shown.
622 changes: 311 additions & 311 deletions docs/flexcalc.html

Large diffs are not rendered by default.

290 changes: 145 additions & 145 deletions docs/genindex.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ <h1>Welcome to the documentation of flexcalc!<a class="headerlink" href="#welcom
<li class="toctree-l1"><a class="reference internal" href="flexcalc.html">Modules</a><ul>
<li class="toctree-l2"><a class="reference internal" href="flexcalc.html#module-flexcalc.process">flexcalc.process module</a></li>
<li class="toctree-l2"><a class="reference internal" href="flexcalc.html#module-flexcalc.analyze">flexcalc.analyze module</a></li>
<li class="toctree-l2"><a class="reference internal" href="flexcalc.html#module-flexcalc.batch">flexcalc.batch module</a></li>
<li class="toctree-l2"><a class="reference internal" href="flexcalc.html#module-flexcalc.pipeline">flexcalc.batch module</a></li>
<li class="toctree-l2"><a class="reference internal" href="flexcalc.html#module-flexcalc">Module contents</a></li>
</ul>
</li>
Expand Down
2 changes: 1 addition & 1 deletion docs/modules.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ <h1>flexcalc<a class="headerlink" href="#flexcalc" title="Permalink to this head
<li class="toctree-l1"><a class="reference internal" href="flexcalc.html">Modules</a><ul>
<li class="toctree-l2"><a class="reference internal" href="flexcalc.html#module-flexcalc.process">flexcalc.process module</a></li>
<li class="toctree-l2"><a class="reference internal" href="flexcalc.html#module-flexcalc.analyze">flexcalc.analyze module</a></li>
<li class="toctree-l2"><a class="reference internal" href="flexcalc.html#module-flexcalc.batch">flexcalc.batch module</a></li>
<li class="toctree-l2"><a class="reference internal" href="flexcalc.html#module-flexcalc.pipeline">flexcalc.batch module</a></li>
<li class="toctree-l2"><a class="reference internal" href="flexcalc.html#module-flexcalc">Module contents</a></li>
</ul>
</li>
Expand Down
Binary file modified docs/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/py-modindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ <h1>Python Module Index</h1>
<tr class="cg-1">
<td></td>
<td>&#160;&#160;&#160;
<a href="flexcalc.html#module-flexcalc.batch"><code class="xref">flexcalc.batch</code></a></td><td>
<a href="flexcalc.html#module-flexcalc.pipeline"><code class="xref">flexcalc.pipeline</code></a></td><td>
<em></em></td></tr>
<tr class="cg-1">
<td></td>
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions examples/ex5_batch_tiling.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"""
#%% Imports

from flexcalc import batch
from flexcalc import pipeline
#from numpy import linspace

#%% Initialize and schedule (1):

lola = batch.scheduler('/export/scratch3/kostenko/scratch/', clean_scratch = True)
lola = pipeline.scheduler('/export/scratch3/kostenko/scratch/', clean_scratch = True)

# Load data:
path = '/ufs/ciacc/flexbox/tiling/t*'
Expand Down Expand Up @@ -57,11 +57,11 @@

#%% Restore node tree after crash and repeat:

masha = batch.scheduler('/export/scratch3/kostenko/scratch/', clean_scratch = False)
masha = pipeline.scheduler('/export/scratch3/kostenko/scratch/', clean_scratch = False)
masha.restore_nodes()
masha.draw_nodes()
masha.report()

masha.run()

#masha.cleanup()
#masha.cleanup()
6 changes: 3 additions & 3 deletions examples/ex6_batch_timelapce.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"""
#%% Imports

from flexcalc import batch
from flexcalc import pipeline
from flexcalc import process
from numpy import linspace

#%% Initialize and schedule (1):

lola = batch.scheduler('/export/scratch3/kostenko/scratch/', clean_scratch = True)
lola = pipeline.scheduler('/export/scratch3/kostenko/scratch/', clean_scratch = True)

# Load data:
path = '/ufs/ciacc/flexbox/timelapce/day*'
Expand Down Expand Up @@ -59,4 +59,4 @@

#%% Runtime

lola.run()
lola.run()
2 changes: 1 addition & 1 deletion flexcalc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from . import batch
from . import pipeline
from . import process
from . import analyze

Expand Down
File renamed without changes.

0 comments on commit cd29b1f

Please sign in to comment.