NECo: A tool to design and run experiments on arbitrary platforms.
authorAlina Quereilhac <alina.quereilhac@inria.fr>
Mon, 5 Nov 2012 18:47:41 +0000 (19:47 +0100)
committerAlina Quereilhac <alina.quereilhac@inria.fr>
Mon, 5 Nov 2012 18:47:41 +0000 (19:47 +0100)
commit4f7387b9c2f8e427bff72a05dc547730937a242a
treec2bbdfe74ba25fc5e91682f8dec1152c24a2912f
NECo: A tool to design and run experiments on arbitrary platforms.
30 files changed:
Makefile [new file with mode: 0644]
setup.cfg [new file with mode: 0644]
setup.py [new file with mode: 0755]
src/neco/__init__.py [new file with mode: 0644]
src/neco/design/__init__.py [new file with mode: 0644]
src/neco/design/box.py [new file with mode: 0644]
src/neco/execution/__init__.py [new file with mode: 0644]
src/neco/execution/callbacks.py [new file with mode: 0644]
src/neco/execution/ec.py [new file with mode: 0644]
src/neco/execution/resource.py [new file with mode: 0644]
src/neco/execution/scheduler.py [new file with mode: 0644]
src/neco/execution/tags.py [new file with mode: 0644]
src/neco/execution/tasks.py [new file with mode: 0644]
src/neco/resources/__init__.py [new file with mode: 0644]
src/neco/resources/base/__init__.py [new file with mode: 0644]
src/neco/resources/base/application.py [new file with mode: 0644]
src/neco/resources/base/linux_node.py [new file with mode: 0644]
src/neco/resources/netns/__init__.py [new file with mode: 0644]
src/neco/resources/ns3/__init__.py [new file with mode: 0644]
src/neco/util/__init__.py [new file with mode: 0644]
src/neco/util/guid.py [new file with mode: 0644]
src/neco/util/parallel.py [new file with mode: 0644]
src/neco/util/parser.py [new file with mode: 0644]
src/neco/util/plot.py [new file with mode: 0644]
src/neco/util/sshfuncs.py [new file with mode: 0644]
src/neco/util/timefuncs.py [new file with mode: 0644]
test/design/box.py [new file with mode: 0755]
test/execution/ec.py [new file with mode: 0755]
test/util/parser.py [new file with mode: 0755]
test/util/plot.py [new file with mode: 0755]