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

apply #556 manually #560

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 1 addition & 1 deletion 01_getting_started/hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def f(i):
#
# Inside the `main()` function body, we are calling the function `f` in three ways:
#
# 1 As a simple local call, `f(1000)`
# 1 As a simple local call, `f.local(1000)`
# 2. As a simple *remote* call `f.remote(1000)`
# 3. By mapping over the integers `0..19`

Expand Down
2 changes: 1 addition & 1 deletion 11_notebooks/basic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"\n",
"\n",
"with stub.run():\n",
" print(quadruple(100))\n",
" print(quadruple.local(100))\n",
" print(quadruple.remote(100)) # run remotely\n",
" result = quadruple.remote(10_000_000)"
]
Expand Down
Loading