-
Notifications
You must be signed in to change notification settings - Fork 3
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
Attempting to synthesise XDF nested actors: failed to compile: NullPointerException, null #1
Comments
Could you please provide me what the call stack before the NullPointerException in the First eclipse |
Sure. Adding
|
i would need to see the action that is causing that, seems like a memory was not created properly |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When trying to compile an XDF network to Verilog with Xronos, where one node in the network is itself and XDF network of actors, the compiler complains:
Given that Xronos uses the NetworkFlattener transform before network generation on line 135, this is surprising.
That said, I've inspected
buildLim
inDesignEngine
on line 96 when Orcc fails to generate Verilog fornested_actor1
. The globalnetwork
variable is null, so thedesign
variable is not assigned to withnetworkToDesign.buildDesign()
, hence theNullPointerException
above asdesign
is returned asnull
on line 141.Is it assumed that Xronos does not support nested networks? Or, should I be using it differently to coerce its nested network support?
The text was updated successfully, but these errors were encountered: