-
Notifications
You must be signed in to change notification settings - Fork 0
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
Unable to include any parts of tywaves #27
Comments
I checked it, it happens when For now, I'd recommend moving the import of |
Import sequence causing error. import chisel._
import tywaves.simulator._
import tywaves.simulator.ParametricSimulator._
import tywaves.simulator.simulatorSettings._ Temporary fix revert order. import tywaves.simulator._
import tywaves.simulator.ParametricSimulator._
import tywaves.simulator.simulatorSettings._
import chisel3._ |
Ah yeah that seemed to fix the issue. Glad it was an easy fix. Thanks for the response. |
Issue reopened since the error shouldn't happen. Even though it has an easy fix, the user should be able to import chisel and tywaves packages in any order and without any confusion. The issue will be closed once the package name in |
Solve any conflict with the package in tywaves-chisel-api. Fix rameloni/tywaves-chisel#27
Related to: - issue: rameloni/tywaves-chisel#27 - commit in chisel: rameloni/chisel@2d57816
I have been able to install and include tywaves into my project using "com.github.rameloni" %% "tywaves-chisel-api" % "0.3.0-SNAPSHOT",
but trying to include
has been largely unsuccessful. SBT claims that there is no "simulator" member in tywaves.
The text was updated successfully, but these errors were encountered: