Ludovic Henry
Ludovic Henry
@RealFYang the `.vx` variant expect a **scalar** register while our `vandn_vx` takes a **vector** register. If we had a use for `vandn_vx` (or any of the other removed instructions), we...
> Why don't you fix this in head? @GoeLin this test only exists on jdk17u, and the whole code was removed in https://github.com/openjdk/jdk/commit/2f3f3b618500b5f112fabca30d4c6780b2a8e723
@GoeLin could you please let me know if it would be good to get this one integrated? I can also disable the test in Adoptium otherwise, but I would much...
It should be extremely safe to backport, and it explicits the default behavior to paper over a kernel bug. Let me request backport in JBS.
/backport jdk19u-dev
/backport openjdk/jdk19u
Hello, In the context of https://github.com/adoptium/adoptium-support/issues/697, we've run into an issue with running Java on RISC-V inside Docker. The issue boils down to the `riscv_flush_icache` syscall failing with EPERM leading...
> dpkgs are built here: https://github.com/docker/docker-ce-packaging/blob/b09da57452865f3f7f6ab510a79821f653a5c0a5/common.mk#L13 @AkihiroSuda are you suggesting I submit a PR to add riscv64? I'd be happy to do that but I assume it's not that simple?
@oscar-broman hi, sorry for the late reply! The approach would be similar to JNIBlas.java: 1. the Java code is available in [JNIBlas.java](https://github.com/luhenry/netlib/blob/master/blas/src/main/java/dev/ludovic/netlib/blas/JNIBLAS.java) 2. It calls into the generated file [jni.c](https://github.com/luhenry/netlib/blob/master/blas/src/main/native/jni.c)...
@oscar-broman we can absolutely have a runtime check based on the platform and load a different library based on that. So on `macos-x86_64` or `macos-aarch64` we load the library you're...