-
Notifications
You must be signed in to change notification settings - Fork 49
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
Functional: Compiled backends integration unstructured #939
Functional: Compiled backends integration unstructured #939
Conversation
bf3636a
to
82b5c26
Compare
Can you try enable the tests in test_toy_connectivity and potentially others |
As discussed offline the iterator tests will be enabled in a seperate PR after #1130 is merged. Until then only one test was enabled. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A first round of feedback. Didn't look into the gtfn_module where I asked for splitting into smaller pieces.
if isinstance(connectivity, Connectivity): | ||
parameters.append( | ||
interface.ConnectivityParameter( | ||
"__conn_" + name.lower(), connectivity.origin_axis.value, name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"__conn_" + name.lower(), connectivity.origin_axis.value, name | |
"conn_" + name.lower(), connectivity.origin_axis.value, name |
__something
is reserved in c++
src/functional/program_processors/codegens/gtfn/itir_to_gtfn_ir.py
Outdated
Show resolved
Hide resolved
src/functional/program_processors/codegens/gtfn/itir_to_gtfn_ir.py
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we do one more iteration in cleaning up the gtfn_module?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Looks good.
Support for using unstructured backends directly from Python.