Alexander Grund

Results 340 issues of Alexander Grund

TF 2.4 (not sure about exact version where this was introduced) has an option `--config=mkl_aarch64`. Currently we don't use `with_mkl_dnn` EC param on non-x86 so this could be extended to...

Just found this and am surprised CI and tests didn't run into this. Maybe this is not tested?

As #4035 went stale with some issues remaining I tackled this. The test was quite tricky as this template can only be set once the source is extracted. Hence I...

Don't raise an error when `log_ok=False` is passed, i.e. the caller wants to handle the error. The naming is confusing and the dependency on the strictness level is likely wrong....

change

`parse_cmd_output` calls `parse_log_for_error` which outputs potential errors by default via `log.info`. The former then outputs those via `log.warning` again. Fix this by passing `stdout=False` to the latter. Also minor rewording...

change

Similar to https://github.com/easybuilders/easybuild-easyconfigs/pull/11148 this handles the invalid escape sequences by using raw strings for all ECs I.e. it fixes the `:25: DeprecationWarning: invalid escape sequence \$` warnings when parsing an...

change

Add CI via Github actions and Boost.CI Closes #332 Closes #303 Currently it fails on Windows due to a timeout in test-timeout-suite.cpp (I guess running 6 tests with a sleep...

Getting the pointer to 1-before an array is undefined behavior, i.e. `begin() - 1` is not allowed. So modify `rfind` to loop until the front and do a final comparison...