Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
6a8b3b4
Add other files required for simplep2p flow model
sanjaychari Jul 7, 2026
01d4198
Add initial switch and terminal flow model
sanjaychari Jul 7, 2026
c52aede
Revert "Add other files required for simplep2p flow model"
sanjaychari Jul 7, 2026
a402355
Improve fluid switch validation logs
sanjaychari Jul 8, 2026
0463d26
Replace per switch queue buffer with shared buffer
sanjaychari Jul 8, 2026
78a2faf
Add reverse handler for switch-terminal fluid flow model
sanjaychari Jul 8, 2026
d36bb2f
Optimizations for fluid flow simn efficiency
sanjaychari Jul 8, 2026
bcc10fe
Add ROSS commit handler and csv logging for fluid simn
sanjaychari Jul 8, 2026
7d4aa05
Clean up fluid switch logging
sanjaychari Jul 9, 2026
8bc3b5f
Add topology generator script for fluid flow simn
sanjaychari Jul 9, 2026
50d1724
Replace max_min_fair with round robin for fluid flow simn
sanjaychari Jul 9, 2026
037ec3b
Add fluid flow wan tests for CI
sanjaychari Jul 9, 2026
8f59063
Fix clang format errors
sanjaychari Jul 9, 2026
e57cd03
Fix MPI EXEC handler for fluid flow wan simn tests
sanjaychari Jul 9, 2026
ecb43ab
Fix yaml loading issue in fluid flow simn test
sanjaychari Jul 9, 2026
a8d94aa
Make fluid flow wan simn tests use sync instead of synch
sanjaychari Jul 9, 2026
c02153f
Fix Ubuntu 24.04 mpich tests
sanjaychari Jul 9, 2026
a8451c2
Revert MPI launcher workflow override
sanjaychari Jul 9, 2026
1127d8f
Use matching MPI launcher for CTest
sanjaychari Jul 9, 2026
9b29061
Add diagnostics for MPI used in CI
sanjaychari Jul 9, 2026
eb4748f
Ignore known MPICH optimistic failures for now
sanjaychari Jul 10, 2026
00d424c
Revert "Ignore known MPICH optimistic failures for now"
sanjaychari Jul 10, 2026
6423bc3
Revert "Add diagnostics for MPI used in CI"
sanjaychari Jul 10, 2026
98fdd38
Revert "Use matching MPI launcher for CTest"
sanjaychari Jul 10, 2026
00b7bbe
Remove Python dependency from fluid WAN CI
sanjaychari Jul 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -409,9 +409,6 @@ jobs:
ref: ${{ github.event_name == 'schedule' && 'master' || env.ROSS_REF }}
path: ross

# No dependency-install step: the codes-ci-ubuntu24-mpich container already ships
# the toolchain, cmake/ninja, flex/bison, lcov, and our source-built mpich.

- name: Configure ROSS
run: >
cmake -S ross -B ross/build -G Ninja
Expand Down
3 changes: 3 additions & 0 deletions doc/example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ configure_file(tutorial-ping-pong-surrogate.conf.in tutorial-ping-pong-surrogate
configure_file(kb.dfdally-72-zeromq-director.conf.in kb.dfdally-72-zeromq-director.template.conf.in @ONLY)
configure_file(kb.dfdally-72-event-time-director.conf.in kb.dfdally-72-event-time-director.template.conf.in @ONLY)
configure_file(kb.dfdally-72-milc-small.workload.conf.in kb.dfdally-72-milc-small.workload.template.conf.in @ONLY)
configure_file(fluid-flow-wan.conf.in fluid-flow-wan.template.conf.in @ONLY)
configure_file(kb.dfdally-72-zeromq-director.conf.in kb.dfdally-72-zeromq-director.template.conf.in @ONLY)

set(single_quote "'")
Expand Down Expand Up @@ -42,6 +43,8 @@ configure_file(tutorial-ping-pong-surrogate.conf.in tutorial-ping-pong-surrogate
configure_file(kb.dfdally-72-zeromq-director.conf.in kb.dfdally-72-zeromq-director.conf)
configure_file(kb.dfdally-72-event-time-director.conf.in kb.dfdally-72-event-time-director.conf)
configure_file(kb.dfdally-72-milc-small.workload.conf.in kb.dfdally-72-milc-small.workload.conf)
configure_file(fluid-flow-wan.conf.in fluid-flow-wan.conf)
configure_file(kb.dfdally-72-milc-small.json kb.dfdally-72-milc-small.json COPYONLY)
configure_file(kb.dfdally-72-milc-small.alloc.conf kb.dfdally-72-milc-small.alloc.conf COPYONLY)
configure_file(fluid-flow-wan-topology.yaml fluid-flow-wan-topology.yaml COPYONLY)
configure_file(kb.dfdally-72-zeromq-director.conf.in kb.dfdally-72-zeromq-director.conf)
24 changes: 24 additions & 0 deletions doc/example/fluid-flow-wan-topology.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
topology:
switches:
A:
terminals: 2
terminal_bandwidth: "20 Mbps"
switch_buffer: "1000 Mb"
connections:
B: "15 Mbps"

B:
terminals: 2
terminal_bandwidth: "25 Mbps"
switch_buffer: "1000 Mb"
connections:
A: "15 Mbps"
C: "10 Mbps"

C:
terminals: 2
terminal_bandwidth: "20 Mbps"
switch_buffer: "1000 Mb"
connections:
A: "10 Mbps"
B: "15 Mbps"
45 changes: 45 additions & 0 deletions doc/example/fluid-flow-wan.conf.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Interval-fluid switch/terminal pure-PDES example.
# Run from the build directory, for example:
# mpirun -np 1 ./src/model-net-fluid-flow-wan --synch=1 -- doc/example/fluid-flow-wan.conf

LPGROUPS
{
FLUID_FLOW_WAN_GRP
{
repetitions="1";
fluid-flow-wan-switch-lp="3";
fluid-flow-wan-terminal-lp="6";
}
}

PARAMS
{
message_size="32768";
pe_mem_factor="1024";
}

FLUID_FLOW_WAN
{
topology_yaml_file="fluid-flow-wan-topology.yaml";

interval_seconds="1";
num_send_intervals="20";
num_drain_intervals="20";
rng_seed="12345";

terminal_send_every_n_intervals="1";
terminal_send_probability="1.0";
terminal_min_send_mbit="0";
terminal_max_send_fraction_of_link_capacity="1.0";

debug_prints="0";
# This can be either round_robin or fifo.
switch_scheduler="round_robin";
round_robin_max_entries_per_egress="8";
round_robin_quantum_mbit="0";

terminal_log_path="../../zmqml_artifacts/fluid-flow-wan/terminal-events.csv";
switch_log_path="../../zmqml_artifacts/fluid-flow-wan/switch-events.csv";
flowlet_log_path="../../zmqml_artifacts/fluid-flow-wan/flowlet-events.csv";
switch_training_log_path="../../zmqml_artifacts/fluid-flow-wan/switch-training.csv";
}
2 changes: 2 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ add_executable(model-net-synthetic network-workloads/model-net-synthetic.c)
add_executable(model-net-synthetic-slimfly network-workloads/model-net-synthetic-slimfly.c)
add_executable(model-net-synthetic-fattree network-workloads/model-net-synthetic-fattree.c)
add_executable(model-net-synthetic-dragonfly-all network-workloads/model-net-synthetic-dragonfly-all.c)
add_executable(model-net-fluid-flow-wan network-workloads/model-net-fluid-flow-wan.cxx)

set(CODES_TARGETS
topology-test
Expand All @@ -214,6 +215,7 @@ set(CODES_TARGETS
model-net-synthetic-slimfly
model-net-synthetic-fattree
model-net-synthetic-dragonfly-all
model-net-fluid-flow-wan
)

if(USE_DUMPI)
Expand Down
Loading
Loading