James Willis

Results 4 comments of James Willis

I ran into the same problem today running `snakemake` `v7.3.8` from within a container: ``` Traceback (most recent call last): File "/usr/local/lib/python3.8/site-packages/snakemake/__init__.py", line 553, in snakemake workflow = Workflow( File...

@LukaP-BB thanks for the tip, I didn't realise that `SNAKEMAKE_OUTPUT_CACHE` was something completely different. Regarding your fix, I can see how setting `--mem-per-cpu={cluster.mem}` would cause it to OOM, but I...

Hi @manodeep, First of all thanks for the support! Regarding the `vec_and` wrapper, you are correct `_mm512_and_ps` doesn't exist. That wrapper is not actually used anymore and was never used...

We could make use of masked loads in our code, however we want to support `AVX/AVX2` instruction sets. I will look at how Agner Fog implements partial loads. We use...