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.
Push notifications in your browser are not yet configured.
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
toThen only processor 0 writes the output.