_pixi
PixiSLURMConfig
¶
Bases: BaseModel
Parameters that are passed directly to a sbatch
command.
See https://slurm.schedmd.com/sbatch.html.
Source code in fractal_server/tasks/config/_pixi.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
cpus
instance-attribute
¶
`-c, --cpus-per-task=
mem
instance-attribute
¶
--mem=<size>[units]
(examples: "10M"
, "10G"
).
From sbatch
docs: Specify the real memory required per node. Default
units are megabytes. Different units can be specified using the suffix
[K|M|G|T].
partition
instance-attribute
¶
-p, --partition=<partition_names>
time
instance-attribute
¶
-t, --time=<time>
.
From sbatch
docs: "A time limit of zero requests that no time limit be
imposed. Acceptable time formats include "minutes", "minutes:seconds",
"hours:minutes:seconds", "days-hours", "days-hours:minutes" and
"days-hours:minutes:seconds".
TasksPixiSettings
¶
Bases: BaseModel
Configuration for pixi
Task collection.
Source code in fractal_server/tasks/config/_pixi.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
|
DEFAULT_ENVIRONMENT = 'default'
class-attribute
instance-attribute
¶
Default pixi environment name.
DEFAULT_PLATFORM = 'linux-64'
class-attribute
instance-attribute
¶
Default platform for pixi.
PIXI_CONCURRENT_DOWNLOADS = 4
class-attribute
instance-attribute
¶
Value of
--concurrent-downloads
for pixi install
.
PIXI_CONCURRENT_SOLVES = 4
class-attribute
instance-attribute
¶
Value of
--concurrent-solves
for pixi install
.
SLURM_CONFIG = None
class-attribute
instance-attribute
¶
Required when using pixi
in a SSH/SLURM deployment.
TOKIO_WORKER_THREADS = 2
class-attribute
instance-attribute
¶
From Tokio documentation :
The core threads are where all asynchronous code runs,
and Tokio will by default spawn one for each CPU core.
You can use the environment variable `TOKIO_WORKER_THREADS` to override
the default value.
default_version
instance-attribute
¶
Default task-collection pixi
version.
versions
instance-attribute
¶
Dictionary mapping pixi
versions (e.g. 0.47.0
) to the corresponding
folders (e.g. /somewhere/pixi/0.47.0
- if the binary is
/somewhere/pixi/0.47.0/bin/pixi
).