Skip to content

Commit e52e3e4

Browse files
suofacebook-github-bot
authored andcommitted
fold hyperactor_extension into monarch_hyperactor (pytorch-labs#477)
Summary: Pull Request resolved: pytorch-labs#477 As title, one fewer crate. ghstack-source-id: 295042594 Reviewed By: highker Differential Revision: D77983162 fbshipit-source-id: 3a29c92f5ae493c7d2a72fe0db6a72cecae5818e
1 parent 022e2cc commit e52e3e4

File tree

24 files changed

+206
-280
lines changed

24 files changed

+206
-280
lines changed

hyperactor_extension/Cargo.toml

Lines changed: 0 additions & 17 deletions
This file was deleted.

hyperactor_extension/src/alloc.rs

Lines changed: 0 additions & 169 deletions
This file was deleted.

hyperactor_extension/src/lib.rs

Lines changed: 0 additions & 12 deletions
This file was deleted.

monarch_extension/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ bincode = "1.3.3"
2020
clap = { version = "4.5.38", features = ["derive", "env", "string", "unicode", "wrap_help"] }
2121
controller = { version = "0.0.0", path = "../controller", optional = true }
2222
hyperactor = { version = "0.0.0", path = "../hyperactor" }
23-
hyperactor_extension = { version = "0.0.0", path = "../hyperactor_extension" }
2423
hyperactor_mesh = { version = "0.0.0", path = "../hyperactor_mesh" }
2524
hyperactor_multiprocess = { version = "0.0.0", path = "../hyperactor_multiprocess" }
2625
libc = "0.2.139"

monarch_extension/src/lib.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,9 @@ pub fn mod_init(module: &Bound<'_, PyModule>) -> PyResult<()> {
166166
module,
167167
"monarch_hyperactor.runtime",
168168
)?)?;
169-
hyperactor_extension::alloc::register_python_bindings(&get_or_add_new_module(
169+
monarch_hyperactor::telemetry::register_python_bindings(&get_or_add_new_module(
170170
module,
171-
"hyperactor_extension.alloc",
172-
)?)?;
173-
hyperactor_extension::telemetry::register_python_bindings(&get_or_add_new_module(
174-
module,
175-
"hyperactor_extension.telemetry",
171+
"monarch_hyperactor.telemetry",
176172
)?)?;
177173
code_sync::register_python_bindings(&get_or_add_new_module(
178174
module,

monarch_hyperactor/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ clap = { version = "4.5.38", features = ["derive", "env", "string", "unicode", "
1515
erased-serde = "0.3.27"
1616
fbinit = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
1717
hyperactor = { version = "0.0.0", path = "../hyperactor" }
18-
hyperactor_extension = { version = "0.0.0", path = "../hyperactor_extension" }
1918
hyperactor_mesh = { version = "0.0.0", path = "../hyperactor_mesh" }
2019
hyperactor_multiprocess = { version = "0.0.0", path = "../hyperactor_multiprocess" }
2120
hyperactor_telemetry = { version = "0.0.0", path = "../hyperactor_telemetry" }

0 commit comments

Comments
 (0)