Skip to content

Commit 8bd15fc

Browse files
benjipelletierfacebook-github-bot
authored andcommitted
Add mesh_type arg to actor_paft (#387)
Summary: Pull Request resolved: #387 Support creating 3 different types of meshes in the paft actor example, to be used for sim testing * thread (local) * process (local) * mast (remote) To run on a single process ``` buck run @//mode/opt //monarch/examples/meta/paft:actor_paft -- --mesh_type local --group_size 2 ``` To run on multi process ``` > buck run @//mode/opt //monarch/examples/meta/paft:actor_paft -- --mesh_type process --group_size 2 ``` To run on mast 1. Pre boot up Mast hosts P1850132492 2. ``` buck run @//mode/opt //monarch/examples/meta/paft:actor_paft -- --mesh_type mast --mast_job_name interactive-monarch-nightly_2n-qlh42j --group_size 2 ``` to get the perfetto trace ``` > buck run @//mode/dev-nosan //scripts/ehedeman/expanse:expanse -- monarch-events --use-latest-execution ``` Reviewed By: thomasywang Differential Revision: D77389179 fbshipit-source-id: e49391223a593d8d188fb10e653ca9c145e9f869
1 parent 90fa670 commit 8bd15fc

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

hyperactor_extension/src/telemetry.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ pub fn use_real_clock() -> PyResult<()> {
106106

107107
#[pyfunction]
108108
pub fn use_sim_clock() -> PyResult<()> {
109-
println!("Using simulated clock");
110109
swap_telemetry_clock(ClockKind::Sim(SimClock));
111110
Ok(())
112111
}

0 commit comments

Comments
 (0)