<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chiselX/src/main/scala/chisel3/util/experimental/decode, branch scala3-support</title>
<subtitle>Chisel with SFC compatibility</subtitle>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/'/>
<entry>
<title>Add partial util files so that it successfully compiles</title>
<updated>2024-06-04T09:14:01+00:00</updated>
<author>
<name>Aditya Naik</name>
</author>
<published>2024-06-04T09:14:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/commit/?id=334abb9a6c64bac015b8b7ed5a0ca51e1611bec6'/>
<id>334abb9a6c64bac015b8b7ed5a0ca51e1611bec6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix stuff in src/</title>
<updated>2024-06-04T02:41:04+00:00</updated>
<author>
<name>Aditya Naik</name>
</author>
<published>2024-06-04T02:41:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/commit/?id=52824ce57e9d60fe6ef721cfb073249e654dcf46'/>
<id>52824ce57e9d60fe6ef721cfb073249e654dcf46</id>
<content type='text'>
build is failing with a compile error in 3.3.3 due to something in
Aggregate.scala. reduce to smallest form and file a bug report maybe?
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
build is failing with a compile error in 3.3.3 due to something in
Aggregate.scala. reduce to smallest form and file a bug report maybe?
</pre>
</div>
</content>
</entry>
<entry>
<title>TruthTable improvements: structural equality and delete sort (backport #2935) (#2936)</title>
<updated>2023-01-12T00:04:06+00:00</updated>
<author>
<name>mergify[bot]</name>
</author>
<published>2023-01-12T00:04:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/commit/?id=6a63353f2a6c3311e61b9a7b5b899d8ad904a86d'/>
<id>6a63353f2a6c3311e61b9a7b5b899d8ad904a86d</id>
<content type='text'>
* TruthTable improvements: structural equality and delete sort (#2935)

We had implemented equals, but not hashCode. This commit also changes
the implemental of equals to just use the underlying values instead of
wasting the compute calling .toString.

Delete TruthTable.sort, it is unused.

(cherry picked from commit b5d9c08b2d0994b94df2380425282206fe1f25bc)

* Restore and deprecate TruthTable.sort

Co-authored-by: Jack Koenig &lt;koenig@sifive.com&gt;
Co-authored-by: mergify[bot] &lt;37929162+mergify[bot]@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* TruthTable improvements: structural equality and delete sort (#2935)

We had implemented equals, but not hashCode. This commit also changes
the implemental of equals to just use the underlying values instead of
wasting the compute calling .toString.

Delete TruthTable.sort, it is unused.

(cherry picked from commit b5d9c08b2d0994b94df2380425282206fe1f25bc)

* Restore and deprecate TruthTable.sort

Co-authored-by: Jack Koenig &lt;koenig@sifive.com&gt;
Co-authored-by: mergify[bot] &lt;37929162+mergify[bot]@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fix string interpolation in `util.exprimental.decode.bitset` (#2882) (#2883)</title>
<updated>2022-12-10T10:45:37+00:00</updated>
<author>
<name>mergify[bot]</name>
</author>
<published>2022-12-10T10:45:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/commit/?id=044b062468c90a1084221e480463515c668e99df'/>
<id>044b062468c90a1084221e480463515c668e99df</id>
<content type='text'>
* Fix BitSet decoder API when errorBit=False

    When errorBit is set to False, the original code will return
    `Unit` which will be `()` in interpolated string.

* Add testcases for both errorBit cases in BitSetSpec

(cherry picked from commit 42416cb6c6a3019fc29b9d98cfea3e3bb4e42684)

Co-authored-by: Ocean Shen &lt;30361859+OceanS2000@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix BitSet decoder API when errorBit=False

    When errorBit is set to False, the original code will return
    `Unit` which will be `()` in interpolated string.

* Add testcases for both errorBit cases in BitSetSpec

(cherry picked from commit 42416cb6c6a3019fc29b9d98cfea3e3bb4e42684)

Co-authored-by: Ocean Shen &lt;30361859+OceanS2000@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Backport of eager error messages for annotations (3.5.x) (#2700) (#2705)</title>
<updated>2022-08-25T19:04:37+00:00</updated>
<author>
<name>Zachary Yedidia</name>
</author>
<published>2022-08-25T19:04:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/commit/?id=df5a95454ff0414d1d3ce16d06dbe27b152e3751'/>
<id>df5a95454ff0414d1d3ce16d06dbe27b152e3751</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor TruthTable.apply and add factory method for Espresso (backport #2612) (#2620)</title>
<updated>2022-07-06T21:42:13+00:00</updated>
<author>
<name>mergify[bot]</name>
</author>
<published>2022-07-06T21:42:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/commit/?id=4f10bdd703d7559cddae50541cf7c8e0a1c1d4c0'/>
<id>4f10bdd703d7559cddae50541cf7c8e0a1c1d4c0</id>
<content type='text'>
* Refactor TruthTable.apply and add factory method for Espresso (#2612)

Improves performance of creating TruthTables by processing entire BitPats
rather than individual bits. New TruthTable factory method enables
constructing TruthTables with semantics of OR-ing output BitPats together
rather than erroring when multiple terms have the same input BitPat.
This alternative factory method matches semantics for the output format
of Espresso.

Co-authored-by: Megan Wachs &lt;megan@sifive.com&gt;
Co-authored-by: Jack Koenig &lt;koenig@sifive.com&gt;
(cherry picked from commit 231f14e74f112a9f721e774561126b2bd1250039)

# Conflicts:
#	src/main/scala/chisel3/util/BitPat.scala

* Resolve backport conflicts

Co-authored-by: Aditya Naik &lt;91489422+adkian-sifive@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Refactor TruthTable.apply and add factory method for Espresso (#2612)

Improves performance of creating TruthTables by processing entire BitPats
rather than individual bits. New TruthTable factory method enables
constructing TruthTables with semantics of OR-ing output BitPats together
rather than erroring when multiple terms have the same input BitPat.
This alternative factory method matches semantics for the output format
of Espresso.

Co-authored-by: Megan Wachs &lt;megan@sifive.com&gt;
Co-authored-by: Jack Koenig &lt;koenig@sifive.com&gt;
(cherry picked from commit 231f14e74f112a9f721e774561126b2bd1250039)

# Conflicts:
#	src/main/scala/chisel3/util/BitPat.scala

* Resolve backport conflicts

Co-authored-by: Aditya Naik &lt;91489422+adkian-sifive@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Make TruthTable accept unknown input width (#2387) (#2417)</title>
<updated>2022-02-15T22:35:23+00:00</updated>
<author>
<name>mergify[bot]</name>
</author>
<published>2022-02-15T22:35:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/commit/?id=4b8584b1d2c46c76b1540e265a84eeb247d684e4'/>
<id>4b8584b1d2c46c76b1540e265a84eeb247d684e4</id>
<content type='text'>
Widths are now padded to the maximum width of the inputs.

Co-authored-by: Jack Koenig &lt;koenig@sifive.com&gt;
(cherry picked from commit 546b4e13fe90ff09d24b63664c072d46c13c0c38)

Co-authored-by: Jiuyang Liu &lt;liu@jiuyang.me&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Widths are now padded to the maximum width of the inputs.

Co-authored-by: Jack Koenig &lt;koenig@sifive.com&gt;
(cherry picked from commit 546b4e13fe90ff09d24b63664c072d46c13c0c38)

Co-authored-by: Jiuyang Liu &lt;liu@jiuyang.me&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Decoder bug for constant 0 and DC (#2363) (#2371)</title>
<updated>2022-01-28T00:20:24+00:00</updated>
<author>
<name>mergify[bot]</name>
</author>
<published>2022-01-28T00:20:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/commit/?id=91ad2312cab72442fcfec9c28576b5464669f8fd'/>
<id>91ad2312cab72442fcfec9c28576b5464669f8fd</id>
<content type='text'>
* Fix the QMC bug for constant and dontcare output.
* Fix the Espresso bug for constant and dontcare output.

(cherry picked from commit 46b53320e9ec09fc26d63259f1821f4234640839)

Co-authored-by: Jiuyang Liu &lt;liu@jiuyang.me&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix the QMC bug for constant and dontcare output.
* Fix the Espresso bug for constant and dontcare output.

(cherry picked from commit 46b53320e9ec09fc26d63259f1821f4234640839)

Co-authored-by: Jiuyang Liu &lt;liu@jiuyang.me&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Apply scalafmt</title>
<updated>2022-01-10T23:53:55+00:00</updated>
<author>
<name>Jack Koenig</name>
</author>
<published>2022-01-10T18:39:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/commit/?id=3131c0daad41dea78bede4517669e376c41a325a'/>
<id>3131c0daad41dea78bede4517669e376c41a325a</id>
<content type='text'>
Command:
sbt scalafmtAll
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Command:
sbt scalafmtAll
</pre>
</div>
</content>
</entry>
<entry>
<title>BitSet API (#2211)</title>
<updated>2021-12-16T01:47:05+00:00</updated>
<author>
<name>Jiuyang Liu</name>
</author>
<published>2021-12-16T01:47:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/chiselX/commit/?id=214115a4cdbf0714d3d1716035f5eb0dd98cba45'/>
<id>214115a4cdbf0714d3d1716035f5eb0dd98cba45</id>
<content type='text'>
BitSet is a new experimental parent type for BitPat.
It enables more complex operations on BitPats.

Co-authored-by: Ocean Shen &lt;shenao6626@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BitSet is a new experimental parent type for BitPat.
It enables more complex operations on BitPats.

Co-authored-by: Ocean Shen &lt;shenao6626@gmail.com&gt;</pre>
</div>
</content>
</entry>
</feed>
