Skip to content

Commit 7342b49

Browse files
author
AidanAbd
committed
fix: PR comments
1 parent ba20d04 commit 7342b49

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

doc-requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
2-
# This file is autogenerated by pip-compile with python 3.10
3-
# To update, run:
2+
# This file is autogenerated by pip-compile with Python 3.10
3+
# by the following command:
44
#
55
# pip-compile doc-requirements.in
66
#

docs/source/basics/defining_cloud_resources.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ RAM, Storage, GPU) at runtime and these requests will be fullfilled during the s
99
process.
1010

1111
## CPU
12-
The number of cpu cores available to the task. If your task uses more than the alotted
12+
The number of cpu cores available to the task. If the task uses more than the alotted
1313
number of cores, the task can continue running but will be throttled.
1414

1515
## Memory
16-
The amount of memory available to the task. If your task uses more than the alotted
16+
The amount of memory available to the task. If the task uses more than the alotted
1717
amount of memory, the task will crash.
1818

1919
## Storage
20-
The amount of disc space available to the task. If your task uses more than the alotted
20+
The amount of disc space available to the task. If the task uses more than the alotted
2121
amount of storage, the task will crash.
2222

2323
## GPU
@@ -60,7 +60,7 @@ You can also specify task resources using `@custom_task`:
6060
```python
6161
from latch import custom_task
6262

63-
@custom_task(cpu, memory, storage_gib = storage_gib) # cpu: int, memory: int, storage_gib: int
63+
@custom_task(cpu=8, memory=64, storage_gib=1000)
6464
def my_task(
6565
...
6666
):

docs/source/getting_started/authoring_your_workflow.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def my_task(
113113
):
114114
...
115115

116-
@large_gpu_task #31 cpus, 120 gigs of memory, 2000 GiB of storage, 1 gpu
116+
@large_gpu_task # 31 cpus, 120 gigs of memory, 2000 GiB of storage, 1 gpu
117117
def inference(
118118
...
119119
):
@@ -126,7 +126,7 @@ To arbitrarily specify resource requirements, use:
126126
```python
127127
from latch import custom_task
128128

129-
@custom_task(cpu, memory, storage_gib = storage_gib)
129+
@custom_task(cpu=8, memory=64, storage_gib=1000)
130130
def my_task(
131131
...
132132
):

docs/source/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Lacth SDK allows developers to upload workflows to the full-featured [Latch Plat
2424

2525
With Latch SDK, developers can write the description to their workflow and customize input parameters using plain Markdown. Latch automatically parses the written text and Python function headers to compile a type-safe UI.
2626

27-
**Specifying arbitrary cloud compute and storage resources for bioinformatics pipelines is difficult.** With the Latch SDK, there are several Python task decorators that easily allow you to define the resources available at runtime. The framework starts at 2 CPUs and 4 GiBs of memory and goes all the way to 95 CPUs, 490 GBs of memory, 4949 GiB of storage, and 1 GPU (24 GBs of VRAM, 9,216 CUDA cores) to easily handle all processing needs.
27+
**Specifying arbitrary cloud compute and storage resources for bioinformatics pipelines is difficult.** With the Latch SDK, there are several Python task decorators that easily allow you to define the resources available at runtime. The framework starts at 2 CPUs and 4 GiBs of memory and goes all the way to 95 CPUs, 490 GiBs of memory, 4949 GiB of storage, and 1 GPU (24 GiBs of VRAM, 9,216 CUDA cores) to easily handle all processing needs.
2828

2929
**Bioinformatics tools face the challenges of irreproducibility.** The lack of proper versioning and dependencies management results in a long tail of poorly documented and unusable bioinformatics software tools.
3030

0 commit comments

Comments
 (0)