Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for post-syn testing #60

Closed
ducky64 opened this issue Aug 26, 2019 · 3 comments
Closed

Support for post-syn testing #60

ducky64 opened this issue Aug 26, 2019 · 3 comments

Comments

@ducky64
Copy link
Member

ducky64 commented Aug 26, 2019

Apparently a requirement for practically building chips.

Ideas:

  • Support for using blackbox as the module passed into a test() function, so that we don't need to re-elaborate to Chisel circuit.
  • Separation of circuit interface (potentially the blackbox solution as above, or a full Chisel elaborated module that we discard the circuit for) and implementation (which you can plug in a separate Verilog module or something)
  • Potentially a blackbox where you can specify a FIRRTL file, or some other file that contains data like combinational paths for cross-thread-ops checking or implicit clock resolution.

@seldridge, @jackkoenig ?

@seldridge
Copy link
Member

I have viewed the second bullet point as the critical problem and path to a solution. Chisel intermixes specification (IO) and implementation (module internals) whereas other languages opt to make this explicit (VHDL has specification/implementation). Because of this, it's difficult in Chisel to think about abstracting over implementations.

I've used the following recently as something towards this:

/** A [[Module]] mixin that exposes the type of the underlying IO
  * @tparam A the type of the [[Module]]'s IO
  */
trait Spec[A <: Record] { this: Module =>
  override val io: A
}

I was then able to write tests for any Module with Spec[A]. However, there then needs to be some means to convert between different module types and blackboxes. A typeclass interface object pattern worked here with toLegacy and toBlackBox methods.

This is likely related to programmatic IO discoverability.

@ducky64 ducky64 added this to the 0.1 Basic usability milestone Sep 16, 2019
@edwardcwang
Copy link
Member

Related: #2

@ekiwi
Copy link
Collaborator

ekiwi commented Jan 11, 2023

I think this is out of scope right now.

@ekiwi ekiwi closed this as completed Jan 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants