Guillaume Wenzek

Results 121 comments of Guillaume Wenzek

@jonschlinkert Please have a look at my [Markdeep syntax](https://github.com/gwenzek/sublime_markdeep/blob/master/markdeep.sublime-syntax#L237). There is a simple trick to allow to handle incorrect java (or any language) code inside your Markdown syntax.

> That opens the file in a new sublime window. Unless there is a setting I can configure to only open it in an existing window? there is probably an...

If we are talking about SLURM then `sacct` already know all the information we want (and more) about the job: start time, end time, cpu utilization, disk read write, ......

Adding a Python API would be as easy as reading an `self.sacct_fields` in the `SlurmInfoWatcher` and use it here instead of `"JobID,State,NodeList"`. Then one could modify the list of fields...

good catch ! Let me know if you need help with you Executor implementation. To merge it, I'll just need you to sign the CLA, and to run the code...

Hi, thanks for reporting. Can you tell me which version of submitit and cloudpickle you're using ? `pip show submitit cloudpickle` Your bug sounds related to #30. Make sure you...

I think it should work if you move the dataclass to another file and that you import it.

Sounds like a reasonable feature. We should add an `executable` parameter to the Executor (alongside `folder`) I believe. It may be source of confusion since some things may work locally...

Hi, can you try the following branch: https://github.com/facebookincubator/submitit/tree/escape_all ? In the `SlurmExecutor` you can now pass a "python" string argument that can be used to specify a specific python to...