Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -292,3 +292,12 @@ recon:
memory_gpu:
multiplier: 0
method: direct
find_center_metric_recon:
pattern: projection
output_dims_change: False
implementation: gpu_cupy
save_result_default: False
padding: False
memory_gpu:
multiplier: 2
method: direct
7 changes: 6 additions & 1 deletion httomo_backends/scripts/yaml_templates_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,12 @@ def _set_dict_special_cases(method_dict: Dict, method_name: str):
method_dict: Dictionary of modules and parameters
method_name: Name of method
"""
if method_name in ["find_center", "find_center_vo", "find_center_pc"]:
if method_name in [
"find_center",
"find_center_vo",
"find_center_pc",
"find_center_metric_recon",
]:
method_dict["id"] = "centering"
method_dict["side_outputs"] = {"cor": "centre_of_rotation"}
if method_name in ["find_center_360"]:
Expand Down
Loading