strange problem in cclm – in #9: CCLM

in #9: CCLM

Since you wrote that the starter package tests work, you may try to make your changes step by step from the starter package settings to your requested settings.

The multiple lines in .out file “src_input: check completeness of input data” appear because each processor writes this. This can be suppressed by changing the line

PRINT *, ' src_input: check completeness of input data'
to
IF (my_cart_id == 0) PRINT *, ' src_input: check completeness of input data'
Then only processor 0 writes the output.

  @burkhardtrockel in #aed9ce7

Since you wrote that the starter package tests work, you may try to make your changes step by step from the starter package settings to your requested settings.

The multiple lines in .out file “src_input: check completeness of input data” appear because each processor writes this. This can be suppressed by changing the line

PRINT *, ' src_input: check completeness of input data'
to
IF (my_cart_id == 0) PRINT *, ' src_input: check completeness of input data'
Then only processor 0 writes the output.

Since you wrote that the starter package tests work, you may try to make your changes step by step from the starter package settings to your requested settings.

The multiple lines in .out file “src_input: check completeness of input data” appear because each processor writes this. This can be suppressed by changing the line

PRINT *, ' src_input: check completeness of input data'
to
IF (my_cart_id == 0) PRINT *, ' src_input: check completeness of input data'
Then only processor 0 writes the output.