Michael R. Crusoe

Results 1269 comments of Michael R. Crusoe

> @mr-c FYI > > Since the `1.2.1_proposed` branch was merged, the `$id` does not resolve to the same URL as: https://raw.githubusercontent.com/common-workflow-language/cwl-v1.2/v1.2.1/json-schema/cwl.yaml > > This PR is targeting https://github.com/common-workflow-language/cwl-v1.2/tree/main, but...

Yes, this sounds correct. emscripten uses musl and ran into this as well: https://github.com/simd-everywhere/simde/blob/bd0532032487df1ea501ae8dc3f8e32abd5309b1/simde/simde-math.h#L1269 One could add a SIMDE_MUSL (or similar) to also skip the use of `__builtin_roundeven` for other...

ah, maybe there is a way to detect musl! https://stackoverflow.com/a/78062291/1585509

Thank you @deveee ; I'm preparing a PR to automatically fix this for MUSL; but I'd like to have a test that builds SIMDE using musl to confirm. Advice on...

@deveee , what is your musl version? I am unable to reproduce this issue for x86_64 & musl https://musl.cc/x86_64-linux-musl-cross.tgz ; but their musl version is old (git-b76f37f (2021-09-23))

> * can we use CWL to store this information ? For your use-case ("some nodes have a special binary, others don't"), I would model that in CWL as an...

> I doubt that software requirement can be expressed in terms of Kubernates or Mesos assigment... It would be a site-speciic mapping of the software requirement name or identifier to...

The idea behind using `SoftwareRequirement` and the `ResourceRequirement` is to make the information as portable as possible, so that the workflow is not too specific to a particular setup. If...

Hello, SIMDe maintainer here; would you like a new PR to update directly to SIMDe 0.8.2 (our latest release)?

This would be great to have! Issues to ponder: - [ ] where to store the logs - [ ] not throwing away user-captured stdout/stderr when a step fails -...