python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Worker process still alive after 0 seconds, killing
I submit two Dask containers with my scheduler (PBS) like that :
#!/usr/bin/env bash
#PBS -N MyApp
#PBS -q my_queue
#PBS -l select=1:ncpus=1:mem=2GB
#PBS -l walltime=00:30:00
#PBS -m n
/.../bin/pyth...
Klun
Votes: 0
Answers: 1
Dask: Get scheduler address from Client
I'm using dask-mpi to deploy on my HPC. I'd like to get hold of the scheduler address to use with another library. This is simple in the case of a LocalCluster (or any other explicit cluster definitio...
Albatross
Votes: 0
Answers: 2
how to create writable shared array in dask
I'm new to Dask
what i'm trying to find is "shared array between processes and it needed to be writable by any proccess"
could someone can show me that?
Top
a way to implement shared writabl...
mr-suroot
Votes: 0
Answers: 1
For Dask, is there something equivalent to ngroup() that is not coumcount()
I am trying to assign a value for each group in dask:
print(df)
Col1
a
a
a
c
c
c
c
b
b
b
y
u
i
df['Col2'] = df.groupby('Col1').ngroup()
print(df)
Col1
Col2
...
searcher
Votes: 0
Answers: 1