Nic McDonald
Nic McDonald
Including chartjs-plugin-colorschemes enables point labels without asking. See this example: https://jsfiddle.net/nicmcd/fcw9pt3k/ If you comment out the inclusion of the chartjs-plugin-colorschemes script, then the labels disappear. I want to use a...
https://github.com/chipsalliance/chisel3/blob/1c5d1b5317a0c9fe7ef9d15138065a817380a1e4/src/main/scala/chisel3/util/Mux.scala#L24 The [documentation](https://www.chisel-lang.org/chisel3/docs/explanations/muxes-and-input-selection.html#mux1h) for Mux1H says "If zero or multiple selectors are set the behavior is undefined", however, the methodology for implementing 1-hot muxes automatically makes the output all zeros...
This is an informational post that should probably be made into a documentation page somewhere. I've found (as have others) that using Vec[Bool] is mostly a bad idea and should...
The WORKSPACE git_repository listing has a stale release tag. We could likely *try* to keep it up to date, but that would likely be a pain. Instead, use a bogus...
Here is my py_binary rule: ``` py_binary( name = "testing", srcs = ["bin/testing.py"], ) ``` The py_binary rule finds the main file just fine even though it is in the...
Please consider implementing [Section 3 of RFC6901](https://tools.ietf.org/html/rfc6901#section-3) which provides pointer syntax. This is VERY useful for modifying the JSON structures. For example, suppose I have a program that takes a...
I suggest adding SubComponent to the "Key Interfaces" section of SST-Core documentation: http://sst-simulator.org/SSTDoxygen/11.0.0_docs/html/interfaces.html Here are the key points that should be understood - if any of these are wrong it...
The help says: ``` --heartbeat-period=PERIOD set time for heartbeats to be published (these are approximate timings, published by the core, to update on progress), default is every 10000 simulated seconds...
This issue is to track the idea of having an automatic simulation completion feature so that components do not need to call `primaryComponentOKToEndSim()`. Consider a ring of components. A single...
It would be very helpful if `sst -v` would give event information. For example an aggregate of events/second (or sim_time/second). A total event count is allows a useful piece of...