Skip to content

Commit

Permalink
mp context
Browse files Browse the repository at this point in the history
  • Loading branch information
luiztauffer committed Apr 25, 2024
1 parent fcbb607 commit b7472a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "spikeinterface_pipelines"
version = "0.0.10"
version = "0.0.11"
description = "Collection of standardized analysis pipelines based on SpikeInterfacee."
readme = "README.md"
authors = [
Expand Down
1 change: 1 addition & 0 deletions src/spikeinterface_pipelines/global_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ class JobKwargs(BaseModel):
n_jobs: Union[int, float] = Field(default=-1, description="The number of jobs to run in parallel.")
chunk_duration: str = Field(default="1s", description="The duration of the chunks to process.")
progress_bar: bool = Field(default=False, description="Whether to display a progress bar.")
mp_context: str = Field(default="spawn", description='Context for multiprocessing. It can be "fork" or "spawn".')

0 comments on commit b7472a5

Please sign in to comment.