-
Notifications
You must be signed in to change notification settings - Fork 536
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
fix for surface rendering function #1604
Conversation
@shehzan10 Apparently, regular The problem lies in dims being modified before data is evaluated. Since each JIT node is storing the original dims, when eval is called after moddims is done, the node is still using original dims to compute the array values. @pavanky Does changing |
@shehzan10 didn't we fix this ? |
@pavanky The fix is using function version of |
@9prady9 yes, the function version of modDims is updating the metadata properly. So it is easier to just call that than re-implement changing the metadata in surface. |
Use function version of modDims function to properly update metadata before JIT evaluation is carried out.
081ff65
to
6526c5e
Compare
@shehzan10 This is ready for merge. |
@9prady9 can you look to see if any other functions in |
Sure |
There is only file |
Fixes #1603