From e3d41325ca9e290547b8a59d3de45058a74fbefe Mon Sep 17 00:00:00 2001 From: Liwei Ji Date: Wed, 24 Jul 2024 12:44:01 -0500 Subject: [PATCH 1/2] Z4c: remove unnecessary sync after commit e3251873 "NewRadX: assert intp are interior points" --- Z4c/schedule.ccl | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/Z4c/schedule.ccl b/Z4c/schedule.ccl index b748ec45..de4805fc 100644 --- a/Z4c/schedule.ccl +++ b/Z4c/schedule.ccl @@ -247,14 +247,14 @@ SCHEDULE Z4c_RHS IN Z4c_RHSGroup WRITES: Theta_rhs(interior) WRITES: alphaG_rhs(interior) WRITES: betaG_rhs(interior) - SYNC: chi_rhs - SYNC: gamma_tilde_rhs - SYNC: K_hat_rhs - SYNC: A_tilde_rhs - SYNC: Gam_tilde_rhs - SYNC: Theta_rhs - SYNC: alphaG_rhs - SYNC: betaG_rhs + #SYNC: chi_rhs + #SYNC: gamma_tilde_rhs + #SYNC: K_hat_rhs + #SYNC: A_tilde_rhs + #SYNC: Gam_tilde_rhs + #SYNC: Theta_rhs + #SYNC: alphaG_rhs + #SYNC: betaG_rhs } "Calculate Z4c RHS" if (CCTK_Equals(boundary_conditions, "NewRadX")) { @@ -269,14 +269,14 @@ if (CCTK_Equals(boundary_conditions, "NewRadX")) { READS: Theta(everywhere) READS: alphaG(everywhere) READS: betaG(everywhere) - READS: chi_rhs(everywhere) - READS: gamma_tilde_rhs(everywhere) - READS: K_hat_rhs(everywhere) - READS: A_tilde_rhs(everywhere) - READS: Gam_tilde_rhs(everywhere) - READS: Theta_rhs(everywhere) - READS: alphaG_rhs(everywhere) - READS: betaG_rhs(everywhere) + READS: chi_rhs(interior) + READS: gamma_tilde_rhs(interior) + READS: K_hat_rhs(interior) + READS: A_tilde_rhs(interior) + READS: Gam_tilde_rhs(interior) + READS: Theta_rhs(interior) + READS: alphaG_rhs(interior) + READS: betaG_rhs(interior) WRITES: chi_rhs(interior) WRITES: gamma_tilde_rhs(interior) WRITES: K_hat_rhs(interior) From eb8cdcdc2e7a9fd5a02cee77b9f395296c220b67 Mon Sep 17 00:00:00 2001 From: Liwei Ji Date: Wed, 24 Jul 2024 13:51:10 -0500 Subject: [PATCH 2/2] Z4c: remove commented out sync --- Z4c/schedule.ccl | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Z4c/schedule.ccl b/Z4c/schedule.ccl index de4805fc..84a2d90e 100644 --- a/Z4c/schedule.ccl +++ b/Z4c/schedule.ccl @@ -247,14 +247,6 @@ SCHEDULE Z4c_RHS IN Z4c_RHSGroup WRITES: Theta_rhs(interior) WRITES: alphaG_rhs(interior) WRITES: betaG_rhs(interior) - #SYNC: chi_rhs - #SYNC: gamma_tilde_rhs - #SYNC: K_hat_rhs - #SYNC: A_tilde_rhs - #SYNC: Gam_tilde_rhs - #SYNC: Theta_rhs - #SYNC: alphaG_rhs - #SYNC: betaG_rhs } "Calculate Z4c RHS" if (CCTK_Equals(boundary_conditions, "NewRadX")) {