orto 1.0.5__tar.gz → 1.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {orto-1.0.5 → orto-1.0.6}/PKG-INFO +1 -1
- orto-1.0.6/orto/__version__.py +1 -0
- {orto-1.0.5 → orto-1.0.6}/orto/input.py +8 -8
- {orto-1.0.5 → orto-1.0.6}/orto.egg-info/PKG-INFO +1 -1
- {orto-1.0.5 → orto-1.0.6}/setup.py +1 -1
- orto-1.0.5/orto/__version__.py +0 -1
- {orto-1.0.5 → orto-1.0.6}/README.md +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto/__init__.py +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto/cli.py +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto/constants.py +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto/exceptions.py +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto/extractor.py +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto/job.py +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto/plotter.py +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto/utils.py +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto.egg-info/SOURCES.txt +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto.egg-info/dependency_links.txt +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto.egg-info/entry_points.txt +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto.egg-info/requires.txt +0 -0
- {orto-1.0.5 → orto-1.0.6}/orto.egg-info/top_level.txt +0 -0
- {orto-1.0.5 → orto-1.0.6}/pyproject.toml +0 -0
- {orto-1.0.5 → orto-1.0.6}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.0.6'
|
|
@@ -45,17 +45,17 @@ def get_nprocs(file_name: str | Path) -> int:
|
|
|
45
45
|
)
|
|
46
46
|
|
|
47
47
|
# Check for PALX in simple input
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
48
|
+
pal_simple = re.findall(
|
|
49
|
+
r'PAL(\d+)',
|
|
50
|
+
simple[0],
|
|
51
|
+
flags=re.IGNORECASE
|
|
52
|
+
)
|
|
53
|
+
if len(pal_simple):
|
|
54
54
|
# Set to zero if not found
|
|
55
|
-
if
|
|
55
|
+
if pal_simple is None:
|
|
56
56
|
_palprocs = 0
|
|
57
57
|
else:
|
|
58
|
-
_palprocs = int(
|
|
58
|
+
_palprocs = int(pal_simple[0])
|
|
59
59
|
# check if power of 2
|
|
60
60
|
if not np.log2(_palprocs).is_integer():
|
|
61
61
|
ut.red_exit(
|
orto-1.0.5/orto/__version__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.0.5'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|