Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[App] Fixed Multi Node and add examples #15557

Merged
merged 36 commits into from
Nov 7, 2022
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
3e187d1
update
tchaton Nov 6, 2022
092b36a
update
tchaton Nov 6, 2022
fcb2ea2
update
tchaton Nov 6, 2022
6481338
Merge branch 'master' into add_multi_node_examples
tchaton Nov 6, 2022
e1271ce
update
tchaton Nov 6, 2022
478d0f0
Merge branch 'add_multi_node_examples' of https://github.com/Lightnin…
tchaton Nov 6, 2022
0c5a079
update
tchaton Nov 6, 2022
804c5cb
update
tchaton Nov 6, 2022
baf1cae
update
tchaton Nov 6, 2022
a393f58
update
tchaton Nov 6, 2022
38f1c72
update
tchaton Nov 6, 2022
4ddb3ae
update
tchaton Nov 6, 2022
ed93320
update
tchaton Nov 6, 2022
402b6fd
update
tchaton Nov 6, 2022
dece823
update
tchaton Nov 6, 2022
4b7e8af
update
tchaton Nov 6, 2022
db336d3
update
tchaton Nov 6, 2022
2cd0d54
update
tchaton Nov 6, 2022
7da57cd
update
tchaton Nov 6, 2022
651590e
update
tchaton Nov 6, 2022
17ac6db
update
tchaton Nov 6, 2022
589ff92
update
tchaton Nov 6, 2022
d221d35
update
tchaton Nov 6, 2022
53597c7
Merge branch 'master' into add_multi_node_examples
tchaton Nov 6, 2022
fa6def5
update
tchaton Nov 6, 2022
0adcdf3
Merge branch 'add_multi_node_examples' of https://github.com/Lightnin…
tchaton Nov 6, 2022
f2fa720
update
tchaton Nov 6, 2022
7778c58
update
tchaton Nov 6, 2022
c005373
update
tchaton Nov 6, 2022
f8fda2e
update
tchaton Nov 6, 2022
00119f6
update
tchaton Nov 6, 2022
0f4e5e5
update
tchaton Nov 6, 2022
1706574
update
tchaton Nov 6, 2022
060f726
update
tchaton Nov 6, 2022
e9c4332
Merge branch 'master' into add_multi_node_examples
lantiga Nov 7, 2022
8323b04
update
tchaton Nov 7, 2022
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
Prev Previous commit
Next Next commit
update
tchaton committed Nov 6, 2022
commit e1271ce915e93597af351587e7eb380b4537e62a
2 changes: 1 addition & 1 deletion examples/app_multi_node/app_pl_work.py
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ def run(
trainer.fit(model)


compute = L.CloudCompute("gpu")
compute = L.CloudCompute("gpu-fast-multi") # 4xV100
app = L.LightningApp(
MultiNode(
PyTorchLightningMultiNode,
2 changes: 1 addition & 1 deletion examples/app_multi_node/app_torch_work.py
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ def run(
)


compute = L.CloudCompute("gpu")
compute = L.CloudCompute("gpu-fast-multi") # 4xV100
app = L.LightningApp(
MultiNode(
PyTorchMultiNode,