gongsu832
gongsu832
- Implement incremental retrieval of llvm-project commit history to avoid the 5000/hour github REST API call limit - Use green (instead of orange) for the successful build color - Add...
Signed-off-by: Gong Su
@tungld I was testing my model zoo build and noticed that the latest commit has 24 failed tests, 2 more than what you reported on https://github.com/onnx/onnx-mlir/issues/128#issuecomment-1128755672. The 2 tests are...
So I produced a patch to compile backend and numerical tests with `-mcpu=z14` which supposedly generates SIMD instructions. When I run the numerical tests, all the TestXXX tests run slower...
@chentong319 @tungld @AlexandreEichenberger While looking into memory leaks in TestLoop, valgrind reported many leaks like the following: ``` ==1506276== 3,691 (1,424 direct, 2,267 indirect) bytes in 1 blocks are definitely...
commit 9a0c2a5f839e6c9c7025687da8594419fcb7a203 (HEAD -> clang_tot_upgrade, origin/clang_tot_upgrade, origin/HEAD) We are trying to port the ROCm userspace stack to Linux s390x. ROCR-Runtime and ROCT-Thunk-Interface build and install fine. But building hcc with...
It appears that Windows CI is failing to find the cached and therefore always rebuilds llvm-project. This makes the build take almost 4 hours to finish. ``` 2023-09-05T18:03:37.0764952Z ##[section]Starting: Check...
Fix JNI wrapper memory leak due to NewDirectByteBuffer not subjecting to Java GC. Use the Cleaner API requiring Java 9+ to avoid copying tensor data
Hi, I'm using python-pam to authenticate users in a Flask app. A /login REST API calls `pam.authenticate(username, password)` to authenticate the user. Occasionally, I would see an exception like this:...