-
Notifications
You must be signed in to change notification settings - Fork 5
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
implemented logic circuit and parsing of SDD #312
base: main
Are you sure you want to change the base?
Conversation
…id circular import errors
Hi Nicolas, |
Done! |
Hi Nicolas, cirkit/cirkit/symbolic/circuit.py Line 960 in fe5358c
The number of input and output units should always be 1 in your case, but arity > 1. |
Yep, on my tests it did work just the same as before. You are right though, I misinterpreted the parameter. The new commit should be ok. |
Hi Nicolas, |
Parsing of SDD is directly performed from the standard SDD file instead of using pySDD and additional dependencies.
Due to issue #311 the circuit will not work as expected. A quick and dirty patch is to update
cirkit/backend/torch/layers/input.py
line 228:
and line 328:
side-effects have not been considered though.