Skip to content

Commit

Permalink
Add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite committed Feb 26, 2024
1 parent d47ba24 commit aedc350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/coiled/aws/coiled-add-asarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
c = xp.add(a, b)
res = c.compute(
executor=executor,
memory=["1 GiB", "8 GiB"] # memory range
memory=["1 GiB", "8 GiB"], # memory range, lower value must be at least allowed_mem
spot_policy="spot_with_fallback", # recommended
account=None, # use your default account (or change to use a specific account)
keepalive="30 seconds", # change this to keep clusters alive longer
Expand Down

0 comments on commit aedc350

Please sign in to comment.