Skip to content

Commit 5532493

Browse files
committed
Pipeline should be improved to limit CPU usage on page renders
1 parent 3a36ee2 commit 5532493

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

olmocr/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import sys
1515
import tempfile
1616
import time
17-
from concurrent.futures import ProcessPoolExecutor, ThreadPoolExecutor, as_completed
17+
from concurrent.futures import ThreadPoolExecutor, as_completed
1818
from concurrent.futures.process import BrokenProcessPool
1919
from dataclasses import dataclass
2020
from functools import cache

olmocr/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
_MINOR = "3"
33
# On main and in a nightly release the patch should be one ahead of the last
44
# released build.
5-
_PATCH = "1"
5+
_PATCH = "2"
66
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
77
# https://semver.org/#is-v123-a-semantic-version for the semantics.
88
_SUFFIX = ""

0 commit comments

Comments
 (0)