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

Remove X_local from global update #6818

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
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
Next Next commit
Remove X_local from global update
Do in-place matrix multiplaction
dafeda committed Feb 23, 2024
commit f227ff9304116a0ba806d5cb240be498d3465dcd
5 changes: 1 addition & 4 deletions src/ert/analysis/_es_update.py
Original file line number Diff line number Diff line change
@@ -727,11 +727,8 @@ def adaptive_localization_progress_callback(
temp_storage[param_group.name][active_indices, :] = X_local @ T

else:
# The batch of parameters
X_local = temp_storage[param_group.name]

# Update manually using global transition matrix T
temp_storage[param_group.name] = X_local @ T
temp_storage[param_group.name] @= T

log_msg = f"Storing data for {param_group.name}.."
_logger.info(log_msg)