masters-thesis/listings/node_config.conf
Dennis af25b4b828 Initial commit of master's thesis
This is the version I submitted to RWTH Aachen University at November 9,
2018.
2018-11-12 12:56:59 +01:00

34 lines
603 B
Plaintext

nodes = {
node_1 = {
type = "file",
// Global settings for node_1
in = {
// Settings for node input, e.g., file to read from
}
},
node_2 = {
type = "infiniband",
// Global settings for node
in = {
// Settings for node input, e.g., address of local
// InfiniBand HCA to use
},
out = {
// Settings for node output, e.g., remote InfiniBand
// node to write to
}
}
},
paths = (
{
in = "node_1",
out = "node_2"
}
)