Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions examples/mpc_linear_svm/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
import logging
import os

from examples.multiprocess_launcher import MultiProcessLauncher

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change was needed such that there is not needed to be sent when running this example on multiple machines.

We can also send this file, but we would also need to create the directory structure. (examples ...)



parser = argparse.ArgumentParser(description="CrypTen Linear SVM Training")
parser.add_argument(
Expand Down Expand Up @@ -82,6 +80,8 @@ def _run_experiment(args):
def main(run_experiment):
args = parser.parse_args()
if args.multiprocess:
from examples.multiprocess_launcher import MultiProcessLauncher

launcher = MultiProcessLauncher(args.world_size, run_experiment, args)
launcher.start()
launcher.join()
Expand Down
Loading