Releases: google/xls
Releases · google/xls
v0.0.0-8312-g50c3490a2
Switch some errors away from InternalError(). We generally don't care too much about which abseil error code we use, but these really seem more like invalid arguments than internal errors. The motivation is to fuzz codegen for correctly-returned errors. We want InternalErrors to be "bad" fuzz findings and InvalidArgumentErrors (among others) will be "good" fuzz findings. PiperOrigin-RevId: 788681051
v0.0.0-8301-g8aed080e3
xls/examples/matmul_4x4: load weights from channel - add weight state to PE node - add one-of weights load on first activation - send weights from test - improve comments PiperOrigin-RevId: 788272142
v0.0.0-8280-g390405a30
Add FuzzTestPrintSourceCode implementations for a few types In a near future version of gfuzztest this function allows one to override source-code printing for these types. This uses https://github.com/google/fuzztest/pull/1780. PiperOrigin-RevId: 787288665
v0.0.0-8230-gf3c4c66dc
Remove superflous rules_pkg initialization. We use bzlmod now. PiperOrigin-RevId: 786936398
v0.0.0-8216-g977c64e56
Capture the actual invocation in invocation callee data. This will be…
v0.0.0-8205-g7805cf7b2
Fix typo in block signature output. There should be closing parens on the #[signature()] block. PiperOrigin-RevId: 786135028
v0.0.0-8188-g78f48f510
[xls][mlir] Tolerate missing locations on import. Ran into this being case while trying to roundtrip xls::Package (the generated xls::Package only had 1 file). Making warning to enable triaging other failures first. PiperOrigin-RevId: 785069947
v0.0.0-8187-g1e2d486c2
Integrate LLVM at llvm/llvm-project@06ae0c2a1086 Updates LLVM usage to match [06ae0c2a1086](https://github.com/llvm/llvm-project/commit/06ae0c2a1086) PiperOrigin-RevId: 784770381
v0.0.0-8155-g8f1be3de5
Improve UnionQueryEngine::Of to take unique_ptr<QueryEngine>s and Que…
v0.0.0-8123-gbaa713e54
Fixed a PrioritySelect bug in verify_node.cc involving a wrongly type…