Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
codes
codes
Commits
c0d90838
Commit
c0d90838
authored
Jun 22, 2016
by
Noah Wolfe
Committed by
Nikhil
Aug 22, 2016
Browse files
Changes made to codes files to integrate the Fat Tree model into the compilation and execution.
parent
885ce098
Changes
3
Hide whitespace changes
Inline
Side-by-side
codes/model-net.h
View file @
c0d90838
...
...
@@ -61,6 +61,7 @@ typedef struct mn_stats mn_stats;
X(SIMPLEP2P, "modelnet_simplep2p", "simplep2p", &simplep2p_method)\
X(TORUS, "modelnet_torus", "torus", &torus_method)\
X(SLIMFLY, "modelnet_slimfly", "slimfly", &slimfly_method)\
X(FATTREE, "modelnet_fattree", "fattree", &fattree_method)\
X(DRAGONFLY, "modelnet_dragonfly", "dragonfly", &dragonfly_method)\
X(DRAGONFLY_ROUTER, "modelnet_dragonfly_router", "dragonfly_router", &dragonfly_router_method)\
X(LOGGP, "modelnet_loggp", "loggp", &loggp_method)\
...
...
src/Makefile.subdir
View file @
c0d90838
...
...
@@ -25,6 +25,7 @@ EXTRA_DIST += src/iokernellang/codesparser.y.in \
src/network-workloads/conf/allocation-random.conf
\
src/network-workloads/conf/modelnet-synthetic-dragonfly.conf
\
src/network-workloads/conf/modelnet-synthetic-slimfly-min.conf
\
src/network-workloads/conf/modelnet-synthetic-fattree.conf
\
src/networks/model-net/doc/README
\
src/networks/model-net/doc/README.dragonfly.txt
\
src/networks/model-net/doc/README.loggp.txt
\
...
...
@@ -88,6 +89,7 @@ nobase_include_HEADERS = \
codes/model-net-inspect.h
\
codes/net/dragonfly.h
\
codes/net/slimfly.h
\
codes/net/fattree.h
\
codes/net/loggp.h
\
codes/net/simplenet-upd.h
\
codes/net/simplep2p.h
\
...
...
@@ -148,6 +150,7 @@ src_libcodes_a_SOURCES = \
src/networks/model-net/torus.c
\
src/networks/model-net/dragonfly.c
\
src/networks/model-net/slimfly.c
\
src/networks/model-net/fattree.c
\
src/networks/model-net/loggp.c
\
src/networks/model-net/simplep2p.c
\
src/networks/model-net/model-net-lp.c
\
...
...
src/networks/model-net/model-net.c
View file @
c0d90838
...
...
@@ -22,6 +22,7 @@ extern struct model_net_method simplep2p_method;
extern
struct
model_net_method
torus_method
;
extern
struct
model_net_method
dragonfly_method
;
extern
struct
model_net_method
slimfly_method
;
extern
struct
model_net_method
fattree_method
;
extern
struct
model_net_method
dragonfly_router_method
;
extern
struct
model_net_method
loggp_method
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment