Jörn Horstmann

Results 15 issues of Jörn Horstmann

{ "type":"http://httpstatus.es/400", "title":"Bad Request", "status":400, "detail":"Unexpected character % in position 0, expected '['" }

bug

The `build.rs` [references a local antlr.jar](https://github.com/rrevenantt/antlr4rust/blob/master/build.rs#L29) that usually does not exist when using antlr4rust as a dependency. This seems to trigger a full rebuild every time, [according to a cargo...

I tried updating dependencies in a cargo project and ran into an issue with a transitive dependency on `once_cell = "1.2.*"`. Assuming `once_cell` correclty follows semantic versioning, the newer version...

Intel's Short Vector Math Library (SVML) defines optimized math functions which do not directly map to single cpu instructions but rather to a sequence of instructions. Exclude these from the...

There is an open rustsec issue ([RUSTSEC-2021-0023](https://rustsec.org/advisories/RUSTSEC-2021-0023.html)) about a transitive dependency of http-types 2.12.0. On the main branch this seems to be fixed by migrating to `fastrand` but I think...

The tests show that the code generation currently uses the least significant bits of vector masks when converting to . This leads to an additional left shift operation in the...

T-compiler
S-waiting-on-review
A-simd

This improves the codegen for vector `select`, `gather`, `scatter` and boolean reduction intrinsics and fixes rust-lang/portable-simd#316. Examples of generated code seem to indicate that llvm considers the high bit as...

T-compiler
S-blocked

- Describe setup in a desktop application - Describe default implementation of `LocaleProvider` and `ResourceBundleProvider` and required files - Show maven plugin configuration

help wanted

Refactor the code in the `convert_while_ascii` helper function to make it more suitable for auto-vectorization and also process the full ascii prefix of the string. The generic case conversion logic...

S-waiting-on-review
T-libs