htmap icon indicating copy to clipboard operation
htmap copied to clipboard

High-Throughput Computing in Python, powered by HTCondor

Results 30 htmap issues
Sort by recently updated
recently updated
newest added

Using pip htmap 0.6.1 when I submit a job ``` m = htmap.map(double,range(40)) doubled=list(n) print(doubled) ``` The jobs get submitted by its looking for Docker? Requirements have TARGET.HasDocker. How can...

This is the tracking PR for v0.7.0

version

Hi, I'm tying to run the following very basic example: ``` import htmap def double(x): return 2 * x def main(): doubled = list(htmap.map(double, range(10))) print(doubled) if __name__ == "__main__":...

bug

Guide: https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/

enhancement

Various resources: https://ipywidgets.readthedocs.io/en/stable/index.html (the standard) http://panel.pyviz.org/ (new project that might make things easier?)

enhancement

@JoshKarpel - can you open a separate ticket to provide a Loud Warning when there's a version mismatch for Python? Seems like something we could detect easily. _Originally posted by...

enhancement

We should implement some kind of DAG workflow support, likely piggy-backing off of HTCondor's DAG support. One possible API to model this off of: https://keras.io/models/model/

enhancement

https://autoclasstoc.readthedocs.io/en/latest/

enhancement
docs

https://github.com/htcondor/htmap/pull/216/commits/8d91538be50d2b2117864b33a997e0f49c58efb9 enables a worse form of URL output files, where users must specify their remaps ahead-of-time via `MapOptions`. This PR will also contain a turned-off implementation of late-binding URL output...

enhancement
file-transfer

Because `pathlib.Path` objects don't store trailing slashes, the mode of `transfer_input_files` where you put a trailing slash on a directory to transfer its contents can't be used with HTMap.

bug