Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix tests for check in equiv_opt | Jannis Harder | 2022-10-07 | 13 | -15/+31 |
| | |||||
* | Add "check -assert" to equiv_opt | Claire Xenia Wolf | 2022-10-07 | 1 | -1/+13 |
| | | | | Signed-off-by: Claire Xenia Wolf <claire@clairexen.net> | ||||
* | Re-enable opt_dff_sr equiv_opt checks | Claire Xenia Wolf | 2022-10-07 | 1 | -13/+12 |
| | | | | Signed-off-by: Claire Xenia Wolf <claire@clairexen.net> | ||||
* | Exclude primary inputs from quiv_make rewiring | Claire Xenia Wolf | 2022-10-07 | 1 | -0/+7 |
| | | | | Signed-off-by: Claire Xenia Wolf <claire@clairexen.net> | ||||
* | Revert "Merge pull request #641 from tklam/master" | Claire Xenia Wolf | 2022-10-07 | 1 | -81/+5 |
| | | | | | | | | | | This reverts commit 08be796cb8b1890923e459cda92211fda763f0c1, reversing changes made to 38dbb44fa0815b1fe80e68e17798aaa341d998cd. This fixes #2728. PR #641 did not actually "fix" #639. The actual issue in #639 is not equiv_make, but assumptions in equiv_simple that are not true for the test case provided in #639. | ||||
* | clk2fflogic: Always correctly handle simultaneously changing signals | Jannis Harder | 2022-10-07 | 1 | -103/+87 |
| | | | | | | | | | | | | | | | | | | | | | | | | This is a complete rewrite of the FF replacing code. The previous implementation tried to implement the negative hold time by wrapping async control signals individually with pulse stretching. This did not correctly model the interaction between different simultaneously changing inputs (e.g. a falling ALOAD together with a changing AD would load the changed AD instead of the value AD had when ALOAD was high; a falling CLR could mask a raising SET for one cycle; etc.). The new approach first has the logic for all updates using only sampled values followed by the logic for all updates using only current values. That way, e.g., a falling ALOAD will load the sampled AD value but a still active ALOAD will load the current AD value. The new code also has deterministic behavior for the initial state: no operation is active when that operation would depend on a specific previous signal value. This also means clk2fflogic will no longer generate any additional uninitialized FFs. I also documented the negative hold time behavior in the help message, copying the relevant part from async2sync's help messages. | ||||
* | Bump version | github-actions[bot] | 2022-10-06 | 1 | -1/+1 |
| | |||||
* | Next dev cycle | Miodrag Milanovic | 2022-10-05 | 2 | -2/+5 |
| | |||||
* | Release version 0.22 | Miodrag Milanovic | 2022-10-05 | 2 | -3/+3 |
| | |||||
* | Update CHANGELOG | Miodrag Milanovic | 2022-10-05 | 1 | -0/+8 |
| | |||||
* | Merge pull request #3500 from nakengelhardt/mutate_warn_not_enough | Miodrag Milanović | 2022-10-05 | 1 | -0/+2 |
|\ | | | | | mutate: warn if less mutations possible than number requested | ||||
| * | mutate: warn if less mutations possible than number requested | N. Engelhardt | 2022-10-05 | 1 | -0/+2 |
|/ | |||||
* | Merge pull request #3499 from YosysHQ/micko/verific_edif | Miodrag Milanović | 2022-10-05 | 2 | -1/+52 |
|\ | | | | | Add support for EDIF file reading using Verific | ||||
| * | Add support for EDIF file reading using Verific | Miodrag Milanovic | 2022-10-04 | 2 | -1/+52 |
| | | |||||
* | | Bump version | github-actions[bot] | 2022-10-05 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #3494 from YosysHQ/micko/verific_attributes | Miodrag Milanović | 2022-10-04 | 1 | -19/+91 |
|\ | | | | | Handle attributes imported from verific | ||||
| * | support file content redirection for verific frontened | Miodrag Milanovic | 2022-09-28 | 1 | -14/+60 |
| | | |||||
| * | Add comment for future self | Miodrag Milanovic | 2022-09-28 | 1 | -0/+7 |
| | | |||||
| * | Handle attributes imported from verific | Miodrag Milanovic | 2022-09-28 | 1 | -5/+24 |
|/ | |||||
* | Bump version | github-actions[bot] | 2022-09-27 | 1 | -1/+1 |
| | |||||
* | Merge pull request #3489 from hzeller/20220924-fix-hardcoded-bin-bash | Miodrag Milanović | 2022-09-26 | 1 | -1/+1 |
|\ | | | | | Fix hard-coded path to /bin/bash -> /usr/bin/env bash | ||||
| * | Fix hard-coded path to /bin/bash -> /usr/bin/env bash | Henner Zeller | 2022-09-24 | 1 | -1/+1 |
|/ | | | | | | | | | | On Posix systems, the path /bin/bash is not guaranteed to exist and it is more portable to use /usr/bin/env instead. Fixing this for yosys-config with is the most important for a functioning installation. Signed-off-by: Henner Zeller <h.zeller@acm.org> | ||||
* | Merge pull request #3486 from daglem/fix-flowmap-crash | Miodrag Milanović | 2022-09-23 | 1 | -1/+2 |
|\ | | | | | Fix crash in flowmap | ||||
| * | Fix crash in flowmap | Dag Lem | 2022-09-20 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | In 2fcc1ee72e, the following is apparantly added in order to mark any number of undefined LUT inputs: lut_a.append(RTLIL::Const(State::Sx, minlut - input_nodes.size())); However this can only be done if the number of input nodes is less than minlut. This fixes #3317 | ||||
* | | Bump version | github-actions[bot] | 2022-09-23 | 1 | -1/+1 |
| | | |||||
* | | remove extra space in formating | Kamyar Mohajerani | 2022-09-22 | 1 | -2/+2 |
| | | |||||
* | | stat: add tech tech-specific utilizations to json | Kamyar Mohajerani | 2022-09-22 | 1 | -65/+91 |
| | | | | | | | | | | - refactor resource util. estimation/calculations for Xilinx and CMOS - don't print log_header if "-json" is set | ||||
* | | Bump version | github-actions[bot] | 2022-09-22 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #3488 from YosysHQ/micko/test_fix | Miodrag Milanović | 2022-09-21 | 3 | -5/+14 |
|\ \ | | | | | | | Test fixes for latest iverilog | ||||
| * | | Test fixes for latest iverilog | Miodrag Milanovic | 2022-09-21 | 3 | -5/+14 |
| |/ | |||||
* | | Merge pull request #3487 from YosysHQ/micko/verific_mem_fix | Miodrag Milanović | 2022-09-21 | 1 | -0/+1 |
|\ \ | |/ |/| | Import memory attributes | ||||
| * | Import memory attributes | Miodrag Milanovic | 2022-09-21 | 1 | -0/+1 |
|/ | |||||
* | Bump version | github-actions[bot] | 2022-09-14 | 1 | -1/+1 |
| | |||||
* | Fix tmpdir naming when passing -nocleanup option to abc(9) on systems where ↵ | N. Engelhardt | 2022-09-13 | 2 | -6/+12 |
| | | | | base_tmpdir isn't /tmp/ | ||||
* | Add CodeQL | Miodrag Milanovic | 2022-09-13 | 1 | -0/+29 |
| | |||||
* | Bump version | github-actions[bot] | 2022-09-09 | 1 | -1/+1 |
| | |||||
* | Update to latest ABC changes | Miodrag Milanovic | 2022-09-08 | 1 | -1/+1 |
| | |||||
* | Bump version | github-actions[bot] | 2022-09-08 | 1 | -1/+1 |
| | |||||
* | Update to latest abc | Miodrag Milanovic | 2022-09-07 | 1 | -1/+1 |
| | |||||
* | verific: better fix for read callback | Miodrag Milanovic | 2022-09-07 | 1 | -5/+3 |
| | |||||
* | verific: fix crash when using prep right after read | Miodrag Milanovic | 2022-09-07 | 1 | -0/+3 |
| | |||||
* | Bump version | github-actions[bot] | 2022-09-07 | 1 | -1/+1 |
| | |||||
* | Next dev cycle | Miodrag Milanovic | 2022-09-06 | 2 | -2/+5 |
| | |||||
* | Release version 0.21 | Miodrag Milanovic | 2022-09-06 | 2 | -3/+3 |
| | |||||
* | Update Changelog | Miodrag Milanovic | 2022-09-06 | 1 | -0/+13 |
| | |||||
* | Update documentation | Miodrag Milanovic | 2022-09-06 | 1 | -170/+288 |
| | |||||
* | Bump version | github-actions[bot] | 2022-09-06 | 1 | -1/+1 |
| | |||||
* | Replaced old markdown Issue template with new GitHub forms templates (#3468) | Aki | 2022-09-05 | 4 | -24/+100 |
| | | | | | | | | This PR replaces the old markdown issue template with the new YAML based form templates for GitHub, this allows us to enforce required fields and also auto-tag with labels. This doesn't remove the ability to open a blank issue, but it is obscured so it is not the primary thing people are likely to do. This also added link entries in the issue creation page to link to the Discussions tab, Community Slack, and IRC channel. | ||||
* | Merge pull request #3470 from jix/smtbmc-faster-parse | Jannis Harder | 2022-09-05 | 1 | -12/+9 |
|\ | | | | | smtbmc: Avoid unnecessary string copies when parsing solver output | ||||
| * | smtbmc: Avoid unnecessary string copies when parsing solver output | Jannis Harder | 2022-09-02 | 1 | -12/+9 |
|/ |