-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
similar software #101
Comments
@Nic30 Thanks for link! There are a number of python hdls (PyMTL, MyHDL) I am not really familiar with them enough to tell you if they have their own python simulator (and therefore bitvector library). There is https://engineering.purdue.edu/kak/dist/BitVector-3.4.9.html but it is not specifically aimed at hardware. I see you support 3-value logic, we have meant to implement this but it has not been a high priority for us. Looking through your code it doesn't look like it would be too hard to migrate to our system if it's something you would like to contribute. I am curious if you discover our project before you wrote your own? If you did, did you choose to write you own because we didn't have x logic or were there other features missing or limitations that were problematic? |
I know for me the problem is that it is everything packed together I am developing similar tool.
Actually 3-value logic can be emulated. I do not think it is necessary, but it is definitely nice to have.
No, I was searching for something like this and found nothing suitable.
I would gladly contribute, however it would be good to avoid C dependencies as they usually can not be installed on public servers like readthedocs. |
Isn't that always the way it goes?
The C dependencies have actually been an issue for us as well. We actually wanted to make them optional but it never happened because of ... well I don't really have a good reason. They are their for our floating point implementation but are not necessary for the core bitvector functionality. I will get that change made. |
With C libraries it is a problem, because of free servers as I wrote. For that library it seems to me that it is good solution to split it on Python only library + library with C extensions. However I am not sure how to do this in this library. Maybe use python math if C extensions are not available? But it seems to me that this would require lot of effort for very few. |
Hello,
because I was not able to find project like your's I have written my own.
I added reference on your project to similar project in readme section of my project, do you know about any other similar project?
It would be best if we can somehow merge our projects, just because code duplication is wrong. However I did not look in to details.
The text was updated successfully, but these errors were encountered: