Skip to content
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

Change IR to be compatile with UFCx from FFCX PR-680 #3137

Merged
merged 7 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ jobs:
python3 -m pip install --break-system-packages git+https://github.com/FEniCS/ufl.git
python3 -m pip install --break-system-packages git+https://github.com/FEniCS/basix.git
python3 -m pip install --break-system-packages git+https://github.com/FEniCS/ffcx.git

- name: Install FEniCS Python components
if: github.event_name == 'workflow_dispatch'
run: |
Expand Down
2 changes: 1 addition & 1 deletion python/dolfinx/fem/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def _form(form):
# its C++ object.
original_coeffs = form.coefficients()
coeffs = [
original_coeffs[ufcx_form.original_coefficient_position[i]]._cpp_object
original_coeffs[ufcx_form.original_coefficient_positions[i]]._cpp_object
for i in range(ufcx_form.num_coefficients)
]
constants = [c._cpp_object for c in form.constants()]
Expand Down
Loading