Steve Burns

Results 7 comments of Steve Burns

Added the correct code fence: ``` diff --git a/src/main/scala/firrtl_interpreter/Concrete.scala b/src/main/scala/firrtl_interpreter/Concrete.scala index 737dadc..5bab6eb 100644 --- a/src/main/scala/firrtl_interpreter/Concrete.scala +++ b/src/main/scala/firrtl_interpreter/Concrete.scala @@ -282,7 +282,7 @@ object Concrete { } } def randomUInt(width: Int): ConcreteUInt...

Good suggestions. I'll make the changes and tidy it up a bit (update the README.md) later today.

Simplifed things a bit; removed the --emacs feature; the pattern is matching the whole basename now, instead of the basename with the extension stripped off. Added a few lines to...

Here is a git repo they will demonstrate the 20x runtime difference. https://github.com/stevenmburns/cocotb-clamper The bitonic sorter example is in there as well as others.

Here are the runtime numbers. Runtime wise, I’m getting these results on a 64 word 8-bit Chisel generated sorter, running through 10000 times. Chisel test with treadle: 4 sec Chisel...

![image](https://user-images.githubusercontent.com/1512574/26913464-da8e57ea-4bcf-11e7-9601-6de547be7665.png) I don't see any trailing commas allowed in the Verilog 2001 module instantiation spec, unless the thing called "expression" is allowed to be empty. But if it was, then...

I have a firrtl pass to remove the combinational loop. Without this fix (or something like it) I can’t run it because the comb loop checker runs before my pass....