1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/etc/examples/nodes/infiniband.conf
Steffen Vogel 1b1643834c Use spaces for indention of .conf files
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2024-02-29 23:18:47 +01:00

74 lines
1.3 KiB
Text

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