I'm using iPython notebook on a 16 core machine (so there are 15 "engines"). If I run this cell ...
%%px
%%bash
echo 'hi' > file1.txt
... then the result is one file called file1.txt that is written to disk 15 times. What I really want is to write to 15 different files, file1.txt through file15.txt.
I'm new to all this, so I imagine there's a simple solution!
Thanks,
Retsreg