-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mauro Passerino
committed
Sep 11, 2023
1 parent
b65635b
commit 2063fea
Showing
44 changed files
with
1,700 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dds xmlns="http://www.eprosima.com/XMLSchemas/fastRTPS_Profiles"> | ||
<profiles> | ||
<!-- SHM Transport profile --> | ||
<transport_descriptors> | ||
<transport_descriptor> | ||
<transport_id>shm_transport</transport_id> | ||
<type>SHM</type> | ||
</transport_descriptor> | ||
</transport_descriptors> | ||
|
||
<!-- Domain Participant Profile --> | ||
<participant profile_name="domainparticipant_profile_name" is_default_profile="true"> | ||
<rtps> | ||
<!-- Use user defined UDPv4 transport --> | ||
<userTransports> | ||
<transport_id>shm_transport</transport_id> | ||
</userTransports> | ||
<!-- Disable builtin transports --> | ||
<useBuiltinTransports>false</useBuiltinTransports> | ||
</rtps> | ||
</participant> | ||
</profiles> | ||
</dds> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<dds xmlns="http://www.eprosima.com/XMLSchemas/fastRTPS_Profiles" > | ||
<library_settings> | ||
<intraprocess_delivery>OFF</intraprocess_delivery> | ||
</library_settings> | ||
<profiles> | ||
<transport_descriptors> | ||
<transport_descriptor> | ||
<transport_id>UDP</transport_id> | ||
<type>UDPv4</type> | ||
</transport_descriptor> | ||
</transport_descriptors> | ||
<participant profile_name="participant_profile" is_default_profile="true"> | ||
<rtps> | ||
<userTransports> | ||
<transport_id>UDP</transport_id> | ||
</userTransports> | ||
<useBuiltinTransports>false</useBuiltinTransports> | ||
</rtps> | ||
</participant> | ||
<data_writer profile_name="/number"> | ||
<propertiesPolicy> | ||
<properties> | ||
<property> | ||
<name>fastdds.match_local_endpoints</name> | ||
<value>false</value> | ||
<propagate>false</propagate> | ||
</property> | ||
</properties> | ||
</propertiesPolicy> | ||
</data_writer> | ||
<data_reader profile_name="/number"> | ||
<propertiesPolicy> | ||
<properties> | ||
<property> | ||
<name>fastdds.match_local_endpoints</name> | ||
<value>false</value> | ||
<propagate>false</propagate> | ||
</property> | ||
</properties> | ||
</propertiesPolicy> | ||
</data_reader> | ||
</profiles> | ||
</dds> |
33 changes: 33 additions & 0 deletions
33
irobot_benchmark/topology/debug_white_mountain_best_effort.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"nodes": [ | ||
{ | ||
"node_name": "debug_node", | ||
"subscribers":[ | ||
{"topic_name":"amazon", "msg_type":"stamped9_float32", "qos_reliability":"best_effort"}, | ||
{"topic_name":"arkansas", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
{"topic_name":"brazos", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
{"topic_name":"chenab", "msg_type":"stamped1kb", "qos_reliability":"best_effort"}, | ||
{"topic_name":"colorado", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
{"topic_name":"columbia", "msg_type":"stamped600kb", "qos_reliability":"best_effort"}, | ||
{"topic_name":"congo", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
{"topic_name":"danube", "msg_type":"stamped_int64", "qos_reliability":"best_effort"}, | ||
{"topic_name":"ganges", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
{"topic_name":"godavari", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
{"topic_name":"lena", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
{"topic_name":"loire", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
{"topic_name":"mekong", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
{"topic_name":"missouri", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
{"topic_name":"murray", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
{"topic_name":"nile", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
{"topic_name":"ohio", "msg_type":"stamped100b", "qos_reliability":"best_effort"}, | ||
{"topic_name":"parana", "msg_type":"stamped3_float32", "qos_reliability":"best_effort"}, | ||
{"topic_name":"salween", "msg_type":"stamped12_float32", "qos_reliability":"best_effort"}, | ||
{"topic_name":"tagus", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
{"topic_name":"tigris", "msg_type":"stamped4_float32", "qos_reliability":"best_effort"}, | ||
{"topic_name":"volga", "msg_type":"stamped_int64", "qos_reliability":"best_effort"}, | ||
{"topic_name":"yamuna", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
{"topic_name":"yamuna", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"} | ||
] | ||
} | ||
] | ||
} |
109 changes: 109 additions & 0 deletions
109
irobot_benchmark/topology/tests/full_topologies/sierra_nevada_fixed_size.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
{ | ||
"nodes": [ | ||
{ | ||
"node_name": "montreal", | ||
"publishers": [ | ||
{"topic_name": "amazon", "msg_type": "stamped9_float32", "period_ms": 10, "msg_pass_by":"shared_ptr"}, | ||
{"topic_name": "nile", "msg_type": "stamped4_int32", "period_ms": 10, "msg_pass_by":"shared_ptr"}, | ||
{"topic_name": "ganges", "msg_type": "stamped4_int32", "period_ms": 10, "msg_pass_by":"shared_ptr"}, | ||
{"topic_name": "danube", "msg_type": "stamped_int64", "period_ms": 10, "msg_pass_by":"shared_ptr"} | ||
] | ||
}, | ||
|
||
{ | ||
"node_name": "lyon", | ||
"subscribers":[ | ||
{"topic_name":"amazon", "msg_type":"stamped9_float32"} | ||
], | ||
"publishers": [ | ||
{"topic_name": "tigris", "msg_type": "stamped4_float32", "period_ms": 10, "msg_pass_by":"shared_ptr"} | ||
] | ||
}, | ||
|
||
{ | ||
"node_name": "hamburg", | ||
"subscribers":[ | ||
{"topic_name":"nile", "msg_type":"stamped4_int32"}, | ||
{"topic_name":"tigris", "msg_type":"stamped4_float32"}, | ||
{"topic_name":"ganges", "msg_type":"stamped4_int32"}, | ||
{"topic_name":"danube", "msg_type":"stamped_int64"} | ||
], | ||
"publishers": [ | ||
{"topic_name": "parana", "msg_type": "stamped3_float32", "period_ms": 10, "msg_pass_by":"shared_ptr"} | ||
] | ||
}, | ||
|
||
{ | ||
"node_name": "osaka", | ||
"subscribers":[ | ||
{"topic_name":"parana", "msg_type":"stamped3_float32"} | ||
], | ||
"publishers": [ | ||
{"topic_name": "salween", "msg_type": "stamped12_float32", "period_ms": 100, "msg_pass_by":"shared_ptr"} | ||
] | ||
}, | ||
|
||
{ | ||
"node_name": "mandalay", | ||
"subscribers":[ | ||
{"topic_name":"salween", "msg_type":"stamped12_float32"}, | ||
{"topic_name":"danube", "msg_type":"stamped_int64"} | ||
], | ||
"publishers": [ | ||
{"topic_name": "missouri", "msg_type": "stamped10kb", "period_ms": 100, "msg_pass_by":"shared_ptr"} | ||
] | ||
}, | ||
|
||
{ | ||
"node_name": "ponce", | ||
"subscribers":[ | ||
{"topic_name":"missouri", "msg_type":"stamped10kb"}, | ||
{"topic_name":"danube", "msg_type":"stamped_int64"}, | ||
{"topic_name":"volga", "msg_type":"stamped_int64"} | ||
], | ||
"publishers": [ | ||
{"topic_name": "mekong", "msg_type": "stamped100b", "period_ms": 500, "msg_pass_by":"shared_ptr"}, | ||
{"topic_name": "congo", "msg_type": "stamped4_int32", "period_ms": 100, "msg_pass_by":"shared_ptr"} | ||
] | ||
}, | ||
|
||
{ | ||
"node_name": "barcelona", | ||
"subscribers":[ | ||
{"topic_name":"mekong", "msg_type":"stamped100b"} | ||
], | ||
"publishers": [ | ||
{"topic_name": "lena", "msg_type": "stamped50b", "period_ms": 100, "msg_pass_by":"shared_ptr"} | ||
] | ||
}, | ||
|
||
{ | ||
"node_name": "georgetown", | ||
"subscribers":[ | ||
{"topic_name":"lena", "msg_type":"stamped50b"} | ||
], | ||
"publishers": [ | ||
{"topic_name": "volga", "msg_type": "stamped_int64", "period_ms": 500, "msg_pass_by":"shared_ptr"} | ||
] | ||
}, | ||
|
||
{ | ||
"node_name": "geneva", | ||
"subscribers":[ | ||
{"topic_name":"congo", "msg_type":"stamped4_int32"}, | ||
{"topic_name":"danube", "msg_type":"stamped_int64"}, | ||
{"topic_name":"parana", "msg_type":"stamped3_float32"} | ||
], | ||
"publishers": [ | ||
{"topic_name": "arkansas", "msg_type": "stamped4_int32", "period_ms": 100, "msg_pass_by":"shared_ptr"} | ||
] | ||
}, | ||
|
||
{ | ||
"node_name": "arequipa", | ||
"subscribers":[ | ||
{"topic_name":"arkansas", "msg_type":"stamped4_int32"} | ||
] | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
irobot_benchmark/topology/tests/full_topologies/sierra_nevada_fixed_size_debug.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"nodes": [ | ||
{ | ||
"node_name": "debug_node", | ||
"subscribers":[ | ||
{"topic_name":"amazon", "msg_type":"stamped9_float32"}, | ||
{"topic_name":"arkansas", "msg_type":"stamped4_int32"}, | ||
{"topic_name":"congo", "msg_type":"stamped4_int32"}, | ||
{"topic_name":"danube", "msg_type":"stamped_int64"}, | ||
{"topic_name":"ganges", "msg_type":"stamped4_int32"}, | ||
{"topic_name":"lena", "msg_type":"stamped50b"}, | ||
{"topic_name":"mekong", "msg_type":"stamped100b"}, | ||
{"topic_name":"missouri", "msg_type":"stamped10kb"}, | ||
{"topic_name":"nile", "msg_type":"stamped4_int32"}, | ||
{"topic_name":"parana", "msg_type":"stamped3_float32"}, | ||
{"topic_name":"salween", "msg_type":"stamped12_float32"}, | ||
{"topic_name":"tigris", "msg_type":"stamped4_float32"}, | ||
{"topic_name":"volga", "msg_type":"stamped_int64"} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.