M3Drop 0.4.47__tar.gz → 0.4.48__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.
- {m3drop-0.4.47 → m3drop-0.4.48/M3Drop.egg-info}/PKG-INFO +1 -1
- {m3drop-0.4.47/M3Drop.egg-info → m3drop-0.4.48}/PKG-INFO +1 -1
- {m3drop-0.4.47 → m3drop-0.4.48}/m3Drop/DiagnosticsGPU.py +3 -2
- {m3drop-0.4.47 → m3drop-0.4.48}/setup.py +1 -1
- {m3drop-0.4.47 → m3drop-0.4.48}/LICENSE +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/M3Drop.egg-info/SOURCES.txt +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/M3Drop.egg-info/dependency_links.txt +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/M3Drop.egg-info/requires.txt +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/M3Drop.egg-info/top_level.txt +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/README.md +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/m3Drop/ControlDeviceCPU.py +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/m3Drop/ControlDeviceGPU.py +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/m3Drop/CoreCPU.py +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/m3Drop/CoreGPU.py +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/m3Drop/DiagnosticsCPU.py +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/m3Drop/NormalizationCPU.py +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/m3Drop/NormalizationGPU.py +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/m3Drop/__init__.py +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/pyproject.toml +0 -0
- {m3drop-0.4.47 → m3drop-0.4.48}/setup.cfg +0 -0
|
@@ -231,7 +231,8 @@ def NBumiCheckFitFSGPU(
|
|
|
231
231
|
p_is_chunk_gpu # Output
|
|
232
232
|
)
|
|
233
233
|
|
|
234
|
-
|
|
234
|
+
# [MEMORY FIX] Use copy=False to prevent doubling memory usage
|
|
235
|
+
cp.nan_to_num(p_is_chunk_gpu, copy=False, nan=0.0, posinf=1.0, neginf=0.0)
|
|
235
236
|
|
|
236
237
|
row_ps_gpu += p_is_chunk_gpu.sum(axis=0)
|
|
237
238
|
col_ps_gpu[current_row:end_row] = p_is_chunk_gpu.sum(axis=1)
|
|
@@ -275,7 +276,7 @@ def NBumiCompareModelsGPU(
|
|
|
275
276
|
stats,
|
|
276
277
|
mask_filename=mask_filename,
|
|
277
278
|
mode=mode,
|
|
278
|
-
manual_target=manual_target,
|
|
279
|
+
manual_target=manual_target,
|
|
279
280
|
phase_label="Phase [1/3]",
|
|
280
281
|
desc_label="Fitting Basic Model (Virtual)..."
|
|
281
282
|
)
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
7
|
name="M3Drop", # Name for pip (pip install M3Drop)
|
|
8
|
-
version="0.4.
|
|
8
|
+
version="0.4.48",
|
|
9
9
|
author="Tallulah Andrews",
|
|
10
10
|
author_email="tandrew6@uwo.ca",
|
|
11
11
|
description="A Python implementation of the M3Drop single-cell RNA-seq analysis tool.",
|
|
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
|