flwr-nightly 1.10.0.dev20240613__py3-none-any.whl → 1.10.0.dev20240614__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of flwr-nightly might be problematic. Click here for more details.

flwr/cli/config_utils.py CHANGED
@@ -54,7 +54,7 @@ def get_fab_metadata(fab_file: Union[Path, bytes]) -> Tuple[str, str]:
54
54
  if conf is None:
55
55
  raise ValueError("Invalid TOML content in pyproject.toml")
56
56
 
57
- is_valid, errors, _ = validate(conf)
57
+ is_valid, errors, _ = validate(conf, check_module=False)
58
58
  if not is_valid:
59
59
  raise ValueError(errors)
60
60
 
flwr/cli/run/run.py CHANGED
@@ -16,12 +16,18 @@
16
16
 
17
17
  import sys
18
18
  from enum import Enum
19
+ from logging import DEBUG
19
20
  from typing import Optional
20
21
 
21
22
  import typer
22
23
  from typing_extensions import Annotated
23
24
 
24
25
  from flwr.cli import config_utils
26
+ from flwr.common.constant import SUPEREXEC_DEFAULT_ADDRESS
27
+ from flwr.common.grpc import GRPC_MAX_MESSAGE_LENGTH, create_channel
28
+ from flwr.common.logger import log
29
+ from flwr.proto.exec_pb2 import StartRunRequest # pylint: disable=E0611
30
+ from flwr.proto.exec_pb2_grpc import ExecStub
25
31
  from flwr.simulation.run_simulation import _run_simulation
26
32
 
27
33
 
@@ -31,20 +37,32 @@ class Engine(str, Enum):
31
37
  SIMULATION = "simulation"
32
38
 
33
39
 
40
+ # pylint: disable-next=too-many-locals
34
41
  def run(
35
42
  engine: Annotated[
36
43
  Optional[Engine],
37
44
  typer.Option(case_sensitive=False, help="The ML framework to use"),
38
45
  ] = None,
46
+ use_superexec: Annotated[
47
+ bool,
48
+ typer.Option(
49
+ case_sensitive=False, help="Use this flag to use the new SuperExec API"
50
+ ),
51
+ ] = False,
39
52
  ) -> None:
40
53
  """Run Flower project."""
54
+ if use_superexec:
55
+ _start_superexec_run()
56
+ return
57
+
41
58
  typer.secho("Loading project configuration... ", fg=typer.colors.BLUE)
42
59
 
43
60
  config, errors, warnings = config_utils.load_and_validate()
44
61
 
45
62
  if config is None:
46
63
  typer.secho(
47
- "Project configuration could not be loaded.\npyproject.toml is invalid:\n"
64
+ "Project configuration could not be loaded.\n"
65
+ "pyproject.toml is invalid:\n"
48
66
  + "\n".join([f"- {line}" for line in errors]),
49
67
  fg=typer.colors.RED,
50
68
  bold=True,
@@ -82,3 +100,22 @@ def run(
82
100
  fg=typer.colors.RED,
83
101
  bold=True,
84
102
  )
103
+
104
+
105
+ def _start_superexec_run() -> None:
106
+ def on_channel_state_change(channel_connectivity: str) -> None:
107
+ """Log channel connectivity."""
108
+ log(DEBUG, channel_connectivity)
109
+
110
+ channel = create_channel(
111
+ server_address=SUPEREXEC_DEFAULT_ADDRESS,
112
+ insecure=True,
113
+ root_certificates=None,
114
+ max_message_length=GRPC_MAX_MESSAGE_LENGTH,
115
+ interceptors=None,
116
+ )
117
+ channel.subscribe(on_channel_state_change)
118
+ stub = ExecStub(channel)
119
+
120
+ req = StartRunRequest()
121
+ stub.StartRun(req)
@@ -53,6 +53,7 @@ def run_simulation_from_cli() -> None:
53
53
  backend_name=args.backend,
54
54
  backend_config=backend_config_dict,
55
55
  app_dir=args.app_dir,
56
+ run_id=args.run_id,
56
57
  enable_tf_gpu_growth=args.enable_tf_gpu_growth,
57
58
  verbose_logging=args.verbose,
58
59
  )
@@ -168,6 +169,13 @@ def run_serverapp_th(
168
169
  return serverapp_th
169
170
 
170
171
 
172
+ def _init_run_id(driver: InMemoryDriver, state: StateFactory, run_id: int) -> None:
173
+ """Create a run with a given `run_id`."""
174
+ log(DEBUG, "Pre-registering run with id %s", run_id)
175
+ state.state().run_ids[run_id] = ("", "") # type: ignore
176
+ driver.run_id = run_id
177
+
178
+
171
179
  # pylint: disable=too-many-locals
172
180
  def _main_loop(
173
181
  num_supernodes: int,
@@ -175,6 +183,7 @@ def _main_loop(
175
183
  backend_config_stream: str,
176
184
  app_dir: str,
177
185
  enable_tf_gpu_growth: bool,
186
+ run_id: Optional[int] = None,
178
187
  client_app: Optional[ClientApp] = None,
179
188
  client_app_attr: Optional[str] = None,
180
189
  server_app: Optional[ServerApp] = None,
@@ -195,6 +204,9 @@ def _main_loop(
195
204
  # Initialize Driver
196
205
  driver = InMemoryDriver(state_factory)
197
206
 
207
+ if run_id:
208
+ _init_run_id(driver, state_factory, run_id)
209
+
198
210
  # Get and run ServerApp thread
199
211
  serverapp_th = run_serverapp_th(
200
212
  server_app_attr=server_app_attr,
@@ -244,6 +256,7 @@ def _run_simulation(
244
256
  client_app_attr: Optional[str] = None,
245
257
  server_app_attr: Optional[str] = None,
246
258
  app_dir: str = "",
259
+ run_id: Optional[int] = None,
247
260
  enable_tf_gpu_growth: bool = False,
248
261
  verbose_logging: bool = False,
249
262
  ) -> None:
@@ -283,6 +296,9 @@ def _run_simulation(
283
296
  Add specified directory to the PYTHONPATH and load `ClientApp` from there.
284
297
  (Default: current working directory.)
285
298
 
299
+ run_id : Optional[int]
300
+ An integer specifying the ID of the run started when running this function.
301
+
286
302
  enable_tf_gpu_growth : bool (default: False)
287
303
  A boolean to indicate whether to enable GPU growth on the main thread. This is
288
304
  desirable if you make use of a TensorFlow model on your `ServerApp` while
@@ -322,6 +338,7 @@ def _run_simulation(
322
338
  backend_config_stream,
323
339
  app_dir,
324
340
  enable_tf_gpu_growth,
341
+ run_id,
325
342
  client_app,
326
343
  client_app_attr,
327
344
  server_app,
@@ -413,5 +430,10 @@ def _parse_args_run_simulation() -> argparse.ArgumentParser:
413
430
  "ClientApp and ServerApp from there."
414
431
  " Default: current working directory.",
415
432
  )
433
+ parser.add_argument(
434
+ "--run-id",
435
+ type=int,
436
+ help="Sets the ID of the run started by the Simulation Engine.",
437
+ )
416
438
 
417
439
  return parser
@@ -12,8 +12,10 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
  # ==============================================================================
15
- """Fower SuperExec package."""
15
+ """Flower SuperExec service."""
16
16
 
17
+ from .app import run_superexec as run_superexec
17
18
 
18
- def run_superexec() -> None:
19
- """Empty stub."""
19
+ __all__ = [
20
+ "run_superexec",
21
+ ]
flwr/superexec/app.py ADDED
@@ -0,0 +1,178 @@
1
+ # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+ """Flower SuperExec app."""
16
+
17
+ import argparse
18
+ import sys
19
+ from logging import INFO, WARN
20
+ from pathlib import Path
21
+ from typing import Optional, Tuple
22
+
23
+ import grpc
24
+
25
+ from flwr.common import EventType, event, log
26
+ from flwr.common.address import parse_address
27
+ from flwr.common.constant import SUPEREXEC_DEFAULT_ADDRESS
28
+ from flwr.common.exit_handlers import register_exit_handlers
29
+ from flwr.common.object_ref import load_app, validate
30
+
31
+ from .exec_grpc import run_superexec_api_grpc
32
+ from .executor import Executor
33
+
34
+
35
+ def run_superexec() -> None:
36
+ """Run Flower SuperExec."""
37
+ log(INFO, "Starting Flower SuperExec")
38
+
39
+ event(EventType.RUN_SUPEREXEC_ENTER)
40
+
41
+ args = _parse_args_run_superexec().parse_args()
42
+
43
+ # Parse IP address
44
+ parsed_address = parse_address(args.address)
45
+ if not parsed_address:
46
+ sys.exit(f"SuperExec IP address ({args.address}) cannot be parsed.")
47
+ host, port, is_v6 = parsed_address
48
+ address = f"[{host}]:{port}" if is_v6 else f"{host}:{port}"
49
+
50
+ # Obtain certificates
51
+ certificates = _try_obtain_certificates(args)
52
+
53
+ # Start SuperExec API
54
+ superexec_server: grpc.Server = run_superexec_api_grpc(
55
+ address=address,
56
+ executor=_load_executor(args),
57
+ certificates=certificates,
58
+ )
59
+
60
+ grpc_servers = [superexec_server]
61
+
62
+ # Graceful shutdown
63
+ register_exit_handlers(
64
+ event_type=EventType.RUN_SUPEREXEC_LEAVE,
65
+ grpc_servers=grpc_servers,
66
+ bckg_threads=None,
67
+ )
68
+
69
+ superexec_server.wait_for_termination()
70
+
71
+
72
+ def _parse_args_run_superexec() -> argparse.ArgumentParser:
73
+ """Parse command line arguments for SuperExec."""
74
+ parser = argparse.ArgumentParser(
75
+ description="Start a Flower SuperExec",
76
+ )
77
+ parser.add_argument(
78
+ "executor",
79
+ help="For example: `deployment:exec` or `project.package.module:wrapper.exec`.",
80
+ )
81
+ parser.add_argument(
82
+ "--address",
83
+ help="SuperExec (gRPC) server address (IPv4, IPv6, or a domain name)",
84
+ default=SUPEREXEC_DEFAULT_ADDRESS,
85
+ )
86
+ parser.add_argument(
87
+ "--executor-dir",
88
+ help="The directory for the executor.",
89
+ default=".",
90
+ )
91
+ parser.add_argument(
92
+ "--insecure",
93
+ action="store_true",
94
+ help="Run the SuperExec without HTTPS, regardless of whether certificate "
95
+ "paths are provided. By default, the server runs with HTTPS enabled. "
96
+ "Use this flag only if you understand the risks.",
97
+ )
98
+ parser.add_argument(
99
+ "--ssl-certfile",
100
+ help="SuperExec server SSL certificate file (as a path str) "
101
+ "to create a secure connection.",
102
+ type=str,
103
+ default=None,
104
+ )
105
+ parser.add_argument(
106
+ "--ssl-keyfile",
107
+ help="SuperExec server SSL private key file (as a path str) "
108
+ "to create a secure connection.",
109
+ type=str,
110
+ )
111
+ parser.add_argument(
112
+ "--ssl-ca-certfile",
113
+ help="SuperExec server SSL CA certificate file (as a path str) "
114
+ "to create a secure connection.",
115
+ type=str,
116
+ )
117
+ return parser
118
+
119
+
120
+ def _try_obtain_certificates(
121
+ args: argparse.Namespace,
122
+ ) -> Optional[Tuple[bytes, bytes, bytes]]:
123
+ # Obtain certificates
124
+ if args.insecure:
125
+ log(WARN, "Option `--insecure` was set. Starting insecure HTTP server.")
126
+ return None
127
+ # Check if certificates are provided
128
+ if args.ssl_certfile and args.ssl_keyfile and args.ssl_ca_certfile:
129
+ if not Path.is_file(args.ssl_ca_certfile):
130
+ sys.exit("Path argument `--ssl-ca-certfile` does not point to a file.")
131
+ if not Path.is_file(args.ssl_certfile):
132
+ sys.exit("Path argument `--ssl-certfile` does not point to a file.")
133
+ if not Path.is_file(args.ssl_keyfile):
134
+ sys.exit("Path argument `--ssl-keyfile` does not point to a file.")
135
+ certificates = (
136
+ Path(args.ssl_ca_certfile).read_bytes(), # CA certificate
137
+ Path(args.ssl_certfile).read_bytes(), # server certificate
138
+ Path(args.ssl_keyfile).read_bytes(), # server private key
139
+ )
140
+ return certificates
141
+ if args.ssl_certfile or args.ssl_keyfile or args.ssl_ca_certfile:
142
+ sys.exit(
143
+ "You need to provide valid file paths to `--ssl-certfile`, "
144
+ "`--ssl-keyfile`, and `—-ssl-ca-certfile` to create a secure "
145
+ "connection in SuperExec server (gRPC-rere)."
146
+ )
147
+ sys.exit(
148
+ "Certificates are required unless running in insecure mode. "
149
+ "Please provide certificate paths to `--ssl-certfile`, "
150
+ "`--ssl-keyfile`, and `—-ssl-ca-certfile` or run the server "
151
+ "in insecure mode using '--insecure' if you understand the risks."
152
+ )
153
+
154
+
155
+ def _load_executor(
156
+ args: argparse.Namespace,
157
+ ) -> Executor:
158
+ """Get the executor plugin."""
159
+ if args.executor_dir is not None:
160
+ sys.path.insert(0, args.executor_dir)
161
+
162
+ executor_ref: str = args.executor
163
+ valid, error_msg = validate(executor_ref)
164
+ if not valid and error_msg:
165
+ raise LoadExecutorError(error_msg) from None
166
+
167
+ executor = load_app(executor_ref, LoadExecutorError)
168
+
169
+ if not isinstance(executor, Executor):
170
+ raise LoadExecutorError(
171
+ f"Attribute {executor_ref} is not of type {Executor}",
172
+ ) from None
173
+
174
+ return executor
175
+
176
+
177
+ class LoadExecutorError(Exception):
178
+ """Error when trying to load `Executor`."""
@@ -0,0 +1,51 @@
1
+ # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+ """SuperExec gRPC API."""
16
+
17
+ from logging import INFO
18
+ from typing import Optional, Tuple
19
+
20
+ import grpc
21
+
22
+ from flwr.common import GRPC_MAX_MESSAGE_LENGTH
23
+ from flwr.common.logger import log
24
+ from flwr.proto.exec_pb2_grpc import add_ExecServicer_to_server
25
+ from flwr.server.superlink.fleet.grpc_bidi.grpc_server import generic_create_grpc_server
26
+
27
+ from .exec_servicer import ExecServicer
28
+ from .executor import Executor
29
+
30
+
31
+ def run_superexec_api_grpc(
32
+ address: str,
33
+ executor: Executor,
34
+ certificates: Optional[Tuple[bytes, bytes, bytes]],
35
+ ) -> grpc.Server:
36
+ """Run SuperExec API (gRPC, request-response)."""
37
+ exec_servicer: grpc.Server = ExecServicer(
38
+ executor=executor,
39
+ )
40
+ superexec_add_servicer_to_server_fn = add_ExecServicer_to_server
41
+ superexec_grpc_server = generic_create_grpc_server(
42
+ servicer_and_add_fn=(exec_servicer, superexec_add_servicer_to_server_fn),
43
+ server_address=address,
44
+ max_message_length=GRPC_MAX_MESSAGE_LENGTH,
45
+ certificates=certificates,
46
+ )
47
+
48
+ log(INFO, "Flower ECE: Starting SuperExec API (gRPC-rere) on %s", address)
49
+ superexec_grpc_server.start()
50
+
51
+ return superexec_grpc_server
@@ -0,0 +1,54 @@
1
+ # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+ """SuperExec API servicer."""
16
+
17
+
18
+ from logging import ERROR, INFO
19
+ from typing import Dict
20
+
21
+ import grpc
22
+
23
+ from flwr.common.logger import log
24
+ from flwr.proto import exec_pb2_grpc # pylint: disable=E0611
25
+ from flwr.proto.exec_pb2 import ( # pylint: disable=E0611
26
+ StartRunRequest,
27
+ StartRunResponse,
28
+ )
29
+
30
+ from .executor import Executor, RunTracker
31
+
32
+
33
+ class ExecServicer(exec_pb2_grpc.ExecServicer):
34
+ """SuperExec API servicer."""
35
+
36
+ def __init__(self, executor: Executor) -> None:
37
+ self.executor = executor
38
+ self.runs: Dict[int, RunTracker] = {}
39
+
40
+ def StartRun(
41
+ self, request: StartRunRequest, context: grpc.ServicerContext
42
+ ) -> StartRunResponse:
43
+ """Create run ID."""
44
+ log(INFO, "ExecServicer.StartRun")
45
+
46
+ run = self.executor.start_run(request.fab_file)
47
+
48
+ if run is None:
49
+ log(ERROR, "Executor failed to start run")
50
+ return StartRunResponse()
51
+
52
+ self.runs[run.run_id] = run
53
+
54
+ return StartRunResponse(run_id=run.run_id)
@@ -0,0 +1,54 @@
1
+ # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+ """Execute and monitor a Flower run."""
16
+
17
+ from abc import ABC, abstractmethod
18
+ from dataclasses import dataclass
19
+ from subprocess import Popen
20
+ from typing import Optional
21
+
22
+
23
+ @dataclass
24
+ class RunTracker:
25
+ """Track a Flower run (composed of a run_id and the associated process)."""
26
+
27
+ run_id: int
28
+ proc: Popen # type: ignore
29
+
30
+
31
+ class Executor(ABC):
32
+ """Execute and monitor a Flower run."""
33
+
34
+ @abstractmethod
35
+ def start_run(
36
+ self,
37
+ fab_file: bytes,
38
+ ) -> Optional[RunTracker]:
39
+ """Start a run using the given Flower FAB ID and version.
40
+
41
+ This method creates a new run on the SuperLink, returns its run_id
42
+ and also starts the run execution.
43
+
44
+ Parameters
45
+ ----------
46
+ fab_file : bytes
47
+ The Flower App Bundle file bytes.
48
+
49
+ Returns
50
+ -------
51
+ run_id : Optional[RunTracker]
52
+ The run_id and the associated process of the run created by the SuperLink,
53
+ or `None` if it fails.
54
+ """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: flwr-nightly
3
- Version: 1.10.0.dev20240613
3
+ Version: 1.10.0.dev20240614
4
4
  Summary: Flower: A Friendly Federated Learning Framework
5
5
  Home-page: https://flower.ai
6
6
  License: Apache-2.0
@@ -2,7 +2,7 @@ flwr/__init__.py,sha256=VmBWedrCxqmt4QvUHBLqyVEH6p7zaFMD_oCHerXHSVw,937
2
2
  flwr/cli/__init__.py,sha256=cZJVgozlkC6Ni2Hd_FAIrqefrkCGOV18fikToq-6iLw,720
3
3
  flwr/cli/app.py,sha256=FvzW2iw3iagrTmgsk4zBLjLvGANRsBvIw11dWWs5-6g,1193
4
4
  flwr/cli/build.py,sha256=oiFnigccMkI9jjracsslvDJe-w1tomTr579SQd66_-Y,4741
5
- flwr/cli/config_utils.py,sha256=BRYDMVOyYuOL8Ac10bjVA_RXMxSQ2KUKMcTFBaLHZlk,6017
5
+ flwr/cli/config_utils.py,sha256=ugUlqH52yxTPMtKw6q4xv5k2OVWUy89cwyJ5LB2RLgk,6037
6
6
  flwr/cli/example.py,sha256=1bGDYll3BXQY2kRqSN-oICqS5n1b9m0g0RvXTopXHl4,2215
7
7
  flwr/cli/install.py,sha256=Wz7Hqg2PE9N-w5CnqlH9Zr8mzADN2J7NLcUhgldZLWU,6579
8
8
  flwr/cli/new/__init__.py,sha256=cQzK1WH4JP2awef1t2UQ2xjl1agVEz9rwutV18SWV1k,789
@@ -40,7 +40,7 @@ flwr/cli/new/templates/app/pyproject.pytorch.toml.tpl,sha256=wxN6I8uvWZ4MErvTbQJ
40
40
  flwr/cli/new/templates/app/pyproject.sklearn.toml.tpl,sha256=wFeJuhqnBPQtKCBvnE3ySBpxmbeNdxcsq2Eb_RmSDIg,655
41
41
  flwr/cli/new/templates/app/pyproject.tensorflow.toml.tpl,sha256=zkxLTQRvujF76sIlzNNGPVU7Y9nVCwNBxAx82AOBaJY,654
42
42
  flwr/cli/run/__init__.py,sha256=oCd6HmQDx-sqver1gecgx-uMA38BLTSiiKpl7RGNceg,789
43
- flwr/cli/run/run.py,sha256=Oadt7JsJX549JG-2P1UPdF11vnblLWS8uGvuVx0modA,2687
43
+ flwr/cli/run/run.py,sha256=cByaU8y04NMqlvRb5ap1WXP-xNY07LVl23J6V4w0jaw,3830
44
44
  flwr/cli/utils.py,sha256=l65Ul0YsSBPuypk0uorAtEDmLEYiUrzpCXi6zCg9mJ4,4506
45
45
  flwr/client/__init__.py,sha256=tcgMyAW8brnmAIk4NmXkonVjYV3lafQJD4vfZ3OJ6kA,1279
46
46
  flwr/client/app.py,sha256=GhL-eR_Y2H8e2XhUnq5AUGQWQya51b5iVr4I6RDW7Hc,24189
@@ -238,10 +238,14 @@ flwr/simulation/ray_transport/__init__.py,sha256=FsaAnzC4cw4DqoouBCix6496k29jACk
238
238
  flwr/simulation/ray_transport/ray_actor.py,sha256=_wv2eP7qxkCZ-6rMyYWnjLrGPBZRxjvTPjaVk8zIaQ4,19367
239
239
  flwr/simulation/ray_transport/ray_client_proxy.py,sha256=oDu4sEPIOu39vrNi-fqDAe10xtNUXMO49bM2RWfRcyw,6738
240
240
  flwr/simulation/ray_transport/utils.py,sha256=TYdtfg1P9VfTdLMOJlifInGpxWHYs9UfUqIv2wfkRLA,2392
241
- flwr/simulation/run_simulation.py,sha256=Jmc6DyN5UCY1U1PcDvL04NgYmEQ6ufJ1JisjG5yqfY8,15098
242
- flwr/superexec/__init__.py,sha256=aoByPmwiFT1okczzloEZ3zH7BBvKlA_s1TL_mqQW2jQ,767
243
- flwr_nightly-1.10.0.dev20240613.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
244
- flwr_nightly-1.10.0.dev20240613.dist-info/METADATA,sha256=B1svyAE6DUOY-lBKqD6LW1qTf3jo9L8nTH7ZOJbsKmo,15518
245
- flwr_nightly-1.10.0.dev20240613.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
246
- flwr_nightly-1.10.0.dev20240613.dist-info/entry_points.txt,sha256=7qBQcA-bDGDxnJmLd9FYqglFQubjCNqyg9M8a-lukps,336
247
- flwr_nightly-1.10.0.dev20240613.dist-info/RECORD,,
241
+ flwr/simulation/run_simulation.py,sha256=nTw8VG_agsxVyKmlOw-0umVuXJflcdAGqkKOL-Z5VW8,15817
242
+ flwr/superexec/__init__.py,sha256=9h94ogLxi6eJ3bUuJYq3E3pApThSabTPiSmPAGlTkHE,800
243
+ flwr/superexec/app.py,sha256=8qW72a4LZRGMfNxsY6PPv-ClsKrk_ai9l0GrLI4vvTw,6078
244
+ flwr/superexec/exec_grpc.py,sha256=u-rztpOleqSGqgvNE-ZLw1HchNsBHU1-eB3m52GZ0pQ,1852
245
+ flwr/superexec/exec_servicer.py,sha256=KosYdHNwShkGdmJH1bxnZpJbMt5rz5N4I4c-ouimF6Y,1698
246
+ flwr/superexec/executor.py,sha256=GouXCY2LiZ-ffsOoZ_z-fh4JwbzMmhTl-gwpWFgGWTY,1688
247
+ flwr_nightly-1.10.0.dev20240614.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
248
+ flwr_nightly-1.10.0.dev20240614.dist-info/METADATA,sha256=or-QIXojYrlw7Qn7dsSErzGjpCvZQsgHOmkDX_p-vsw,15518
249
+ flwr_nightly-1.10.0.dev20240614.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
250
+ flwr_nightly-1.10.0.dev20240614.dist-info/entry_points.txt,sha256=7qBQcA-bDGDxnJmLd9FYqglFQubjCNqyg9M8a-lukps,336
251
+ flwr_nightly-1.10.0.dev20240614.dist-info/RECORD,,