1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/etc/examples/nodes/infiniband.conf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
1 KiB
Text
Raw Permalink Normal View History

# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
2018-07-15 13:55:20 +02:00
nodes = {
2019-03-25 21:17:34 +01:00
results = {
type = "file",
2019-03-25 21:17:34 +01:00
uri = "logs/ib_results-%Y%m%d_%H-%M-%S.log",
},
2019-03-25 21:17:34 +01:00
siggen = {
type = "signal",
2019-03-25 21:17:34 +01:00
signal = "mixed",
values = 3,
2020-09-10 17:35:35 +02:00
frequency = 3.0,
rate = 100000.0,
2019-03-25 21:17:34 +01:00
limit = 100000,
},
2019-03-25 21:17:34 +01:00
ib_node_source = {
type = "infiniband",
2018-07-15 13:55:20 +02:00
2019-03-25 21:17:34 +01:00
rdma_port_space = "RC",
in = {
address = "10.0.0.2:1337",
2018-07-15 13:55:20 +02:00
2019-03-25 21:17:34 +01:00
max_wrs = 8192,
cq_size = 8192,
2018-07-15 13:55:20 +02:00
2019-03-25 21:17:34 +01:00
vectorize = 1,
2018-07-15 13:55:20 +02:00
2019-03-25 21:17:34 +01:00
buffer_subtraction = 128,
},
2019-03-25 21:17:34 +01:00
out = {
address = "10.0.0.1:1337",
resolution_timeout = 1000,
max_wrs = 8192,
cq_size = 256,
2018-07-15 13:55:20 +02:00
2019-03-25 21:17:34 +01:00
vectorize = 1,
2018-07-15 13:55:20 +02:00
2019-03-25 21:17:34 +01:00
send_inline = true,
max_inline_data = 60,
2019-03-25 21:17:34 +01:00
use_fallback = true,
}
}
2019-03-25 21:17:34 +01:00
ib_node_target = {
type = "infiniband",
2019-03-25 21:17:34 +01:00
rdma_port_space = "RC",
2019-03-25 21:17:34 +01:00
in = {
address = "10.0.0.1:1337",
2019-03-25 21:17:34 +01:00
max_wrs = 8192,
cq_size = 8192,
2019-03-25 21:17:34 +01:00
vectorize = 1,
2019-03-25 21:17:34 +01:00
buffer_subtraction = 128,
2019-03-25 21:17:34 +01:00
hooks = (
{ type = "stats", verbose = true }
)
}
}
2018-07-15 13:55:20 +02:00
}