Skip to content

Commit

Permalink
avoid that mirroring is reset by the plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviermattelaer committed Aug 23, 2023
1 parent a4b9d6b commit 2556cdd
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1299,9 +1299,10 @@ def generate_process_files(self):
misc.sprint('self.include_multi_channel is already defined: this is madevent+second_exporter mode')
else:
misc.sprint('self.include_multi_channel is not yet defined: this is standalone_cudacpp mode') # see issue #473
if self.matrix_elements[0].get('has_mirror_process'):
self.matrix_elements[0].set('has_mirror_process', False)
self.nprocesses/=2
# I move those line to standalone_cudacpp mode (but do we need those at all???)
if self.matrix_elements[0].get('has_mirror_process'):
self.matrix_elements[0].set('has_mirror_process', False)
self.nprocesses/=2
super(PLUGIN_export_cpp.OneProcessExporterGPU, self).generate_process_files()
self.edit_CMakeLists()
self.edit_check_sa()
Expand Down

0 comments on commit 2556cdd

Please # to comment.