Kon
Kon
Hi @rthadur, I tried on 3.18.0 as well and still get the exact same error.
Can you implement mod kernel in TFJS first? I guess it would take long to implement in XNNPACK.
Hi, I stumbled upon the same problem when I open `llvm-project`. The crash occures while tag parsing [clang/test/SemaCXX/static-assert.cpp](https://github.com/llvm/llvm-project/blob/a35596675b75154d9af037d4d761f97b7707ad97/clang/test/SemaCXX/static-assert.cpp) containing: ``` static_assert(false, L"\x1ff" "0\x123" "fx\xfffff" "goop"); // expected-error {{static assertion failed:...
It looks context-based folding is already supported since clangd v16.0.0. (https://github.com/clangd/clangd/issues/310) And it's working well on my end with clangd v16.0.6. @zchrissirhcz Can you try out clang >= 16 and...
All tests are passed with this diff: ```diff diff --git a/setup.py b/setup.py index 71d6428..8a03dee 100755 --- a/setup.py +++ b/setup.py @@ -22,8 +22,8 @@ if LooseVersion(pip.__version__) < LooseVersion("19"): # TODO(@dathudeptrai) update...
It's ugly, but a solution I can come up with is: 1. Run aquery with --features flags to query compile commands (that contain wrong bazel-out path) 1. Run aquery again...
Faced the same issue with current HEAD revision (b608a5714cd0996716e94481e9cadca306d05661) Here is the verbose logging: ``` I0610 17:27:56.068628 6128431104 websocket.py:472] [twitchAPI.eventsub.websocket] got session keep alive I0610 17:28:06.068538 6128431104 websocket.py:472] [twitchAPI.eventsub.websocket] got...
Hello @dantesun, Thanks for providing the information. That helps me a lot to figure out the issue. When I implemented the emscripten support, I expected your projects to use [emsdk's...
+1 for local_includes. I think this can be achived with `implementation_deps` ```.bzl def custom_cc_library( name, local_includes = [], implementation_deps = [], **kwargs): native.cc_library( name = name + "_local_includes", includes =...