From 722050e00a6401cae953cbea7d6321d7f69a8881 Mon Sep 17 00:00:00 2001 From: "Gihan R. Mudalige" Date: Thu, 5 Dec 2013 14:13:16 +0000 Subject: [PATCH] Formatting --- apps/c/airfoil/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/c/airfoil/README.md b/apps/c/airfoil/README.md index 050403cea..34abccfcf 100644 --- a/apps/c/airfoil/README.md +++ b/apps/c/airfoil/README.md @@ -36,8 +36,8 @@ The various parallel versions of Airfoil should be compared against the single-t reference implementation) to ascertain the correctness of the results. The p_q array holds the final result and as such will be the data array to compare. One way to achieve this is to use : - 'op_print_dat_to_txtfile(p_q, "out_grid_seq.dat"); //ASCI' - 'op_print_dat_to_binfile(p_q, "out_grid_seq.bin"); //Binary' + `op_print_dat_to_txtfile(p_q, "out_grid_seq.dat"); //ASCI` + `op_print_dat_to_binfile(p_q, "out_grid_seq.bin"); //Binary` For example after the end of the 1000 iterations in the airfoil code and then use the code in compare.cpp and comparebin.cpp to compare the text file or binary file with the reference implementation. @@ -47,7 +47,8 @@ precision. For the single precision version, answers should be very close. A sum residual is printed out by default every 100 iterations. This in double precision for the first 1000 iterations should be exactly: -'100 5.02186e-04 +``` +100 5.02186e-04 200 3.41746e-04 300 2.63430e-04 400 2.16288e-04 @@ -57,4 +58,4 @@ be exactly: 800 1.27627e-04 900 1.15810e-04 1000 1.06011e-04 - +```