[UPDATE] Automated the excecution of tests in psb_geaxpby kernel. Now both single process and mulitple processes tests are excecuted thanks to the autotest.sh script
parent
c556d729cd
commit
0801b00d56
@ -0,0 +1,120 @@
|
||||
#!/bin/bash
|
||||
|
||||
GREEN="\033[0;32m"
|
||||
RED="\033[0;31m"
|
||||
BLUE="\033[0;34m"
|
||||
YELLOW="\033[33m"
|
||||
RESET="\033[0m"
|
||||
|
||||
|
||||
# Directories to compare
|
||||
dir1="serial"
|
||||
dir2="parallel"
|
||||
log_file_name="psblas_geaxpby_test.log"
|
||||
flag=0
|
||||
num_procs=$(nproc)
|
||||
|
||||
# Function to center text
|
||||
center_text() {
|
||||
local text="$1"
|
||||
printf "\033[0;32m%*s\033[0m\n" $(((${#text} + terminal_width) / 2)) "$text"
|
||||
}
|
||||
|
||||
# Welcome message
|
||||
terminal_width=$(tput cols) # Get the terminal width
|
||||
separator=$(printf "%0.s=" $(seq 1 $terminal_width)) # Generate separator of correct length
|
||||
|
||||
clear
|
||||
echo -e "${GREEN}${separator}${RESET}"
|
||||
center_text "PSBLAS Computational Routines Test Suite"
|
||||
echo -e "${GREEN}${separator}${RESET}"
|
||||
center_text "Welcome to the PSBLAS Computational Routines Test Suite!"
|
||||
center_text "This script compares the results of serial and parallel computations"
|
||||
center_text "for all the computational routines documented on the version 3.9 of PSBLAS."
|
||||
echo -e "${GREEN}${separator}${RESET}"
|
||||
|
||||
echo -e "${BLUE}[INFO]\t Starting environment check for required modules...${RESET}"
|
||||
|
||||
|
||||
# Check and load required modules
|
||||
required_modules=("gnu/12.2.1-sys" "mpich/4.2.2" "cuda/12.5")
|
||||
|
||||
for module in "${required_modules[@]}"; do
|
||||
if ! module list 2>&1 | grep -q "$module"; then
|
||||
echo -e "${YELLOW}[WARNING] Module not found, loading $module${RESET}"
|
||||
module load "$module"
|
||||
flag=1
|
||||
if ! grep -q "module load $module" "$HOME/.bashrc"; then
|
||||
echo -e "[INFO]\t Adding 'module load $module' to $bashrc..."
|
||||
echo "module load $module" >> "$HOME/.bashrc"
|
||||
# else
|
||||
# echo "'module load $module' is already present in $bashrc."
|
||||
fi
|
||||
else
|
||||
echo -e "[INFO]\t Found module $module."
|
||||
fi
|
||||
done
|
||||
|
||||
# Update .bashrc if necessary
|
||||
if [ $flag -eq 1 ]; then
|
||||
echo -e "[INFO]\t Reloading $HOME/.bashrc..."
|
||||
source ~/.bashrc
|
||||
fi
|
||||
|
||||
# Inform the user about environment persistence
|
||||
if [ "$$" -eq "$PPID" ]; then
|
||||
echo -e "${YELLOW}[WARNING] Modules loaded in this script will not persist after the script finishes.${RESET}"
|
||||
echo -e "${YELLOW}[WARNING] Run the script using 'source autotest.sh' to make the changes persist.${RESET}"
|
||||
fi
|
||||
|
||||
echo -e "${BLUE}[INFO]\t Environment check for required modules completed.${RESET}"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Check if the executable ELF file exists
|
||||
if [ ! -f "./runs/psb_geaxpby_test" ]; then
|
||||
echo -e "${YELLOW}[WARNING] Executable not found. Running make...${RESET}"
|
||||
make
|
||||
if [ ! -f "./runs/psb_geaxpby_test" ]; then
|
||||
echo -e "${RED}[ERROR] Failed to create executable. Check make command.${RESET}"
|
||||
fi
|
||||
else
|
||||
echo -e "${BLUE}[INFO]\t The executable already exists. Skipping the make process.${RESET}"
|
||||
fi
|
||||
|
||||
# Excecute tests and save results
|
||||
echo -e "${BLUE}[INFO]\t Running the PSBLAS psb_geaxpby test...${RESET}"
|
||||
echo ""
|
||||
echo -e "${BLUE}[INFO]\t Starting single process computation${RESET}"
|
||||
mpirun -np 1 ./runs/psb_geaxpby_test
|
||||
echo -e "${BLUE}[INFO]\t Single process computation terminated correctly${RESET}"
|
||||
echo ""
|
||||
echo -e "${BLUE}[INFO]\t Starting $num_procs processes computation${RESET}"
|
||||
mpirun -np $num_procs ./runs/psb_geaxpby_test
|
||||
echo -e "${BLUE}[INFO]\t Multiple processes computation terminated correctly${RESET}"
|
||||
|
||||
|
||||
echo "" >> ${log_file_name}
|
||||
|
||||
# Iterate through files in the first directory
|
||||
for file1 in "$dir1"/*; do
|
||||
filename=$(basename "$file1") # Extract the filename
|
||||
file2="$dir2/$filename" # Construct the path for the second directory
|
||||
|
||||
# Check if the file exists in the second directory
|
||||
if [ -f "$file2" ]; then
|
||||
diff_count=$(diff "$file1" "$file2" | wc -l) # Compare the files
|
||||
echo "Comparison between $file1 and $file2: $diff_count differences" >> ${log_file_name}
|
||||
# echo "Comparing $file1 and $file2: $diff_count"
|
||||
else
|
||||
echo -e "${RED}[ERROR] File $filename does not exist in $dir2${RESET}"
|
||||
fi
|
||||
done
|
||||
|
||||
echo -e "${BLUE}[INFO]\t PSBLAS psb_geaxpby test succesfully completed.${RESET}"
|
||||
|
||||
|
||||
echo -e "${GREEN}[INFO]\t All tests completed successfully. Results are logged in ${log_file_name}.${RESET}"
|
||||
|
||||
@ -1,292 +1,437 @@
|
||||
Welcome to PSBLAS version: 3.9.0
|
||||
This is the psb_geaxpby_test sample program
|
||||
|
||||
Generation geaxpby single precision result file 1/144 [OK]
|
||||
Generation geaxpby single precision result file 2/144 [OK]
|
||||
Generation geaxpby single precision result file 3/144 [OK]
|
||||
Generation geaxpby single precision result file 4/144 [OK]
|
||||
Generation geaxpby single precision result file 5/144 [OK]
|
||||
Generation geaxpby single precision result file 6/144 [OK]
|
||||
Generation geaxpby single precision result file 7/144 [OK]
|
||||
Generation geaxpby single precision result file 8/144 [OK]
|
||||
Generation geaxpby single precision result file 9/144 [OK]
|
||||
Generation geaxpby single precision result file 10/144 [OK]
|
||||
Generation geaxpby single precision result file 11/144 [OK]
|
||||
Generation geaxpby single precision result file 12/144 [OK]
|
||||
Generation geaxpby single precision result file 13/144 [OK]
|
||||
Generation geaxpby single precision result file 14/144 [OK]
|
||||
Generation geaxpby single precision result file 15/144 [OK]
|
||||
Generation geaxpby single precision result file 16/144 [OK]
|
||||
Generation geaxpby single precision result file 17/144 [OK]
|
||||
Generation geaxpby single precision result file 18/144 [OK]
|
||||
Generation geaxpby single precision result file 19/144 [OK]
|
||||
Generation geaxpby single precision result file 20/144 [OK]
|
||||
Generation geaxpby single precision result file 21/144 [OK]
|
||||
Generation geaxpby single precision result file 22/144 [OK]
|
||||
Generation geaxpby single precision result file 23/144 [OK]
|
||||
Generation geaxpby single precision result file 24/144 [OK]
|
||||
Generation geaxpby single precision result file 25/144 [OK]
|
||||
Generation geaxpby single precision result file 26/144 [OK]
|
||||
Generation geaxpby single precision result file 27/144 [OK]
|
||||
Generation geaxpby single precision result file 28/144 [OK]
|
||||
Generation geaxpby single precision result file 29/144 [OK]
|
||||
Generation geaxpby single precision result file 30/144 [OK]
|
||||
Generation geaxpby single precision result file 31/144 [OK]
|
||||
Generation geaxpby single precision result file 32/144 [OK]
|
||||
Generation geaxpby single precision result file 33/144 [OK]
|
||||
Generation geaxpby single precision result file 34/144 [OK]
|
||||
Generation geaxpby single precision result file 35/144 [OK]
|
||||
Generation geaxpby single precision result file 36/144 [OK]
|
||||
Generation geaxpby single precision result file 37/144 [OK]
|
||||
Generation geaxpby single precision result file 38/144 [OK]
|
||||
Generation geaxpby single precision result file 39/144 [OK]
|
||||
Generation geaxpby single precision result file 40/144 [OK]
|
||||
Generation geaxpby single precision result file 41/144 [OK]
|
||||
Generation geaxpby single precision result file 42/144 [OK]
|
||||
Generation geaxpby single precision result file 43/144 [OK]
|
||||
Generation geaxpby single precision result file 44/144 [OK]
|
||||
Generation geaxpby single precision result file 45/144 [OK]
|
||||
Generation geaxpby single precision result file 46/144 [OK]
|
||||
Generation geaxpby single precision result file 47/144 [OK]
|
||||
Generation geaxpby single precision result file 48/144 [OK]
|
||||
Generation geaxpby single precision result file 49/144 [OK]
|
||||
Generation geaxpby single precision result file 50/144 [OK]
|
||||
Generation geaxpby single precision result file 51/144 [OK]
|
||||
Generation geaxpby single precision result file 52/144 [OK]
|
||||
Generation geaxpby single precision result file 53/144 [OK]
|
||||
Generation geaxpby single precision result file 54/144 [OK]
|
||||
Generation geaxpby single precision result file 55/144 [OK]
|
||||
Generation geaxpby single precision result file 56/144 [OK]
|
||||
Generation geaxpby single precision result file 57/144 [OK]
|
||||
Generation geaxpby single precision result file 58/144 [OK]
|
||||
Generation geaxpby single precision result file 59/144 [OK]
|
||||
Generation geaxpby single precision result file 60/144 [OK]
|
||||
Generation geaxpby single precision result file 61/144 [OK]
|
||||
Generation geaxpby single precision result file 62/144 [OK]
|
||||
Generation geaxpby single precision result file 63/144 [OK]
|
||||
Generation geaxpby single precision result file 64/144 [OK]
|
||||
Generation geaxpby single precision result file 65/144 [OK]
|
||||
Generation geaxpby single precision result file 66/144 [OK]
|
||||
Generation geaxpby single precision result file 67/144 [OK]
|
||||
Generation geaxpby single precision result file 68/144 [OK]
|
||||
Generation geaxpby single precision result file 69/144 [OK]
|
||||
Generation geaxpby single precision result file 70/144 [OK]
|
||||
Generation geaxpby single precision result file 71/144 [OK]
|
||||
Generation geaxpby single precision result file 72/144 [OK]
|
||||
Generation geaxpby single precision result file 73/144 [OK]
|
||||
Generation geaxpby single precision result file 74/144 [OK]
|
||||
Generation geaxpby single precision result file 75/144 [OK]
|
||||
Generation geaxpby single precision result file 76/144 [OK]
|
||||
Generation geaxpby single precision result file 77/144 [OK]
|
||||
Generation geaxpby single precision result file 78/144 [OK]
|
||||
Generation geaxpby single precision result file 79/144 [OK]
|
||||
Generation geaxpby single precision result file 80/144 [OK]
|
||||
Generation geaxpby single precision result file 81/144 [OK]
|
||||
Generation geaxpby single precision result file 82/144 [OK]
|
||||
Generation geaxpby single precision result file 83/144 [OK]
|
||||
Generation geaxpby single precision result file 84/144 [OK]
|
||||
Generation geaxpby single precision result file 85/144 [OK]
|
||||
Generation geaxpby single precision result file 86/144 [OK]
|
||||
Generation geaxpby single precision result file 87/144 [OK]
|
||||
Generation geaxpby single precision result file 88/144 [OK]
|
||||
Generation geaxpby single precision result file 89/144 [OK]
|
||||
Generation geaxpby single precision result file 90/144 [OK]
|
||||
Generation geaxpby single precision result file 91/144 [OK]
|
||||
Generation geaxpby single precision result file 92/144 [OK]
|
||||
Generation geaxpby single precision result file 93/144 [OK]
|
||||
Generation geaxpby single precision result file 94/144 [OK]
|
||||
Generation geaxpby single precision result file 95/144 [OK]
|
||||
Generation geaxpby single precision result file 96/144 [OK]
|
||||
Generation geaxpby single precision result file 97/144 [OK]
|
||||
Generation geaxpby single precision result file 98/144 [OK]
|
||||
Generation geaxpby single precision result file 99/144 [OK]
|
||||
Generation geaxpby single precision result file 100/144 [OK]
|
||||
Generation geaxpby single precision result file 101/144 [OK]
|
||||
Generation geaxpby single precision result file 102/144 [OK]
|
||||
Generation geaxpby single precision result file 103/144 [OK]
|
||||
Generation geaxpby single precision result file 104/144 [OK]
|
||||
Generation geaxpby single precision result file 105/144 [OK]
|
||||
Generation geaxpby single precision result file 106/144 [OK]
|
||||
Generation geaxpby single precision result file 107/144 [OK]
|
||||
Generation geaxpby single precision result file 108/144 [OK]
|
||||
Generation geaxpby single precision result file 109/144 [OK]
|
||||
Generation geaxpby single precision result file 110/144 [OK]
|
||||
Generation geaxpby single precision result file 111/144 [OK]
|
||||
Generation geaxpby single precision result file 112/144 [OK]
|
||||
Generation geaxpby single precision result file 113/144 [OK]
|
||||
Generation geaxpby single precision result file 114/144 [OK]
|
||||
Generation geaxpby single precision result file 115/144 [OK]
|
||||
Generation geaxpby single precision result file 116/144 [OK]
|
||||
Generation geaxpby single precision result file 117/144 [OK]
|
||||
Generation geaxpby single precision result file 118/144 [OK]
|
||||
Generation geaxpby single precision result file 119/144 [OK]
|
||||
Generation geaxpby single precision result file 120/144 [OK]
|
||||
Generation geaxpby single precision result file 121/144 [OK]
|
||||
Generation geaxpby single precision result file 122/144 [OK]
|
||||
Generation geaxpby single precision result file 123/144 [OK]
|
||||
Generation geaxpby single precision result file 124/144 [OK]
|
||||
Generation geaxpby single precision result file 125/144 [OK]
|
||||
Generation geaxpby single precision result file 126/144 [OK]
|
||||
Generation geaxpby single precision result file 127/144 [OK]
|
||||
Generation geaxpby single precision result file 128/144 [OK]
|
||||
Generation geaxpby single precision result file 129/144 [OK]
|
||||
Generation geaxpby single precision result file 130/144 [OK]
|
||||
Generation geaxpby single precision result file 131/144 [OK]
|
||||
Generation geaxpby single precision result file 132/144 [OK]
|
||||
Generation geaxpby single precision result file 133/144 [OK]
|
||||
Generation geaxpby single precision result file 134/144 [OK]
|
||||
Generation geaxpby single precision result file 135/144 [OK]
|
||||
Generation geaxpby single precision result file 136/144 [OK]
|
||||
Generation geaxpby single precision result file 137/144 [OK]
|
||||
Generation geaxpby single precision result file 138/144 [OK]
|
||||
Generation geaxpby single precision result file 139/144 [OK]
|
||||
Generation geaxpby single precision result file 140/144 [OK]
|
||||
Generation geaxpby single precision result file 141/144 [OK]
|
||||
Generation geaxpby single precision result file 142/144 [OK]
|
||||
Generation geaxpby single precision result file 143/144 [OK]
|
||||
Generation geaxpby single precision result file 144/144 [OK]
|
||||
[2025-06-11 12:38:51] Generation geaxpby single precision result file parallel/sol_x1_y1_a1_b1.mtx 1/144[OK]
|
||||
[2025-06-11 12:38:51] Generation geaxpby single precision result file parallel/sol_x1_y1_a1_b2.mtx 2/144[OK]
|
||||
[2025-06-11 12:38:51] Generation geaxpby single precision result file parallel/sol_x1_y1_a1_b3.mtx 3/144[OK]
|
||||
[2025-06-11 12:38:51] Generation geaxpby single precision result file parallel/sol_x1_y1_a2_b1.mtx 4/144[OK]
|
||||
[2025-06-11 12:38:52] Generation geaxpby single precision result file parallel/sol_x1_y1_a2_b2.mtx 5/144[OK]
|
||||
[2025-06-11 12:38:52] Generation geaxpby single precision result file parallel/sol_x1_y1_a2_b3.mtx 6/144[OK]
|
||||
[2025-06-11 12:38:52] Generation geaxpby single precision result file parallel/sol_x1_y1_a3_b1.mtx 7/144[OK]
|
||||
[2025-06-11 12:38:52] Generation geaxpby single precision result file parallel/sol_x1_y1_a3_b2.mtx 8/144[OK]
|
||||
[2025-06-11 12:38:53] Generation geaxpby single precision result file parallel/sol_x1_y1_a3_b3.mtx 9/144[OK]
|
||||
[2025-06-11 12:38:53] Generation geaxpby single precision result file parallel/sol_x1_y2_a1_b1.mtx 10/14[OK]
|
||||
[2025-06-11 12:38:53] Generation geaxpby single precision result file parallel/sol_x1_y2_a1_b2.mtx 11/14[OK]
|
||||
[2025-06-11 12:38:53] Generation geaxpby single precision result file parallel/sol_x1_y2_a1_b3.mtx 12/14[OK]
|
||||
[2025-06-11 12:38:53] Generation geaxpby single precision result file parallel/sol_x1_y2_a2_b1.mtx 13/14[OK]
|
||||
[2025-06-11 12:38:53] Generation geaxpby single precision result file parallel/sol_x1_y2_a2_b2.mtx 14/14[OK]
|
||||
[2025-06-11 12:38:53] Generation geaxpby single precision result file parallel/sol_x1_y2_a2_b3.mtx 15/14[OK]
|
||||
[2025-06-11 12:38:54] Generation geaxpby single precision result file parallel/sol_x1_y2_a3_b1.mtx 16/14[OK]
|
||||
[2025-06-11 12:38:54] Generation geaxpby single precision result file parallel/sol_x1_y2_a3_b2.mtx 17/14[OK]
|
||||
[2025-06-11 12:38:54] Generation geaxpby single precision result file parallel/sol_x1_y2_a3_b3.mtx 18/14[OK]
|
||||
[2025-06-11 12:38:54] Generation geaxpby single precision result file parallel/sol_x1_y3_a1_b1.mtx 19/14[OK]
|
||||
[2025-06-11 12:38:54] Generation geaxpby single precision result file parallel/sol_x1_y3_a1_b2.mtx 20/14[OK]
|
||||
[2025-06-11 12:38:54] Generation geaxpby single precision result file parallel/sol_x1_y3_a1_b3.mtx 21/14[OK]
|
||||
[2025-06-11 12:38:55] Generation geaxpby single precision result file parallel/sol_x1_y3_a2_b1.mtx 22/14[OK]
|
||||
[2025-06-11 12:38:55] Generation geaxpby single precision result file parallel/sol_x1_y3_a2_b2.mtx 23/14[OK]
|
||||
[2025-06-11 12:38:55] Generation geaxpby single precision result file parallel/sol_x1_y3_a2_b3.mtx 24/14[OK]
|
||||
[2025-06-11 12:38:55] Generation geaxpby single precision result file parallel/sol_x1_y3_a3_b1.mtx 25/14[OK]
|
||||
[2025-06-11 12:38:55] Generation geaxpby single precision result file parallel/sol_x1_y3_a3_b2.mtx 26/14[OK]
|
||||
[2025-06-11 12:38:55] Generation geaxpby single precision result file parallel/sol_x1_y3_a3_b3.mtx 27/14[OK]
|
||||
[2025-06-11 12:38:55] Generation geaxpby single precision result file parallel/sol_x1_y4_a1_b1.mtx 28/14[OK]
|
||||
[2025-06-11 12:38:56] Generation geaxpby single precision result file parallel/sol_x1_y4_a1_b2.mtx 29/14[OK]
|
||||
[2025-06-11 12:38:56] Generation geaxpby single precision result file parallel/sol_x1_y4_a1_b3.mtx 30/14[OK]
|
||||
[2025-06-11 12:38:56] Generation geaxpby single precision result file parallel/sol_x1_y4_a2_b1.mtx 31/14[OK]
|
||||
[2025-06-11 12:38:56] Generation geaxpby single precision result file parallel/sol_x1_y4_a2_b2.mtx 32/14[OK]
|
||||
[2025-06-11 12:38:56] Generation geaxpby single precision result file parallel/sol_x1_y4_a2_b3.mtx 33/14[OK]
|
||||
[2025-06-11 12:38:56] Generation geaxpby single precision result file parallel/sol_x1_y4_a3_b1.mtx 34/14[OK]
|
||||
[2025-06-11 12:38:56] Generation geaxpby single precision result file parallel/sol_x1_y4_a3_b2.mtx 35/14[OK]
|
||||
[2025-06-11 12:38:57] Generation geaxpby single precision result file parallel/sol_x1_y4_a3_b3.mtx 36/14[OK]
|
||||
[2025-06-11 12:38:57] Generation geaxpby single precision result file parallel/sol_x2_y1_a1_b1.mtx 37/14[OK]
|
||||
[2025-06-11 12:38:57] Generation geaxpby single precision result file parallel/sol_x2_y1_a1_b2.mtx 38/14[OK]
|
||||
[2025-06-11 12:38:57] Generation geaxpby single precision result file parallel/sol_x2_y1_a1_b3.mtx 39/14[OK]
|
||||
[2025-06-11 12:38:57] Generation geaxpby single precision result file parallel/sol_x2_y1_a2_b1.mtx 40/14[OK]
|
||||
[2025-06-11 12:38:57] Generation geaxpby single precision result file parallel/sol_x2_y1_a2_b2.mtx 41/14[OK]
|
||||
[2025-06-11 12:38:57] Generation geaxpby single precision result file parallel/sol_x2_y1_a2_b3.mtx 42/14[OK]
|
||||
[2025-06-11 12:38:58] Generation geaxpby single precision result file parallel/sol_x2_y1_a3_b1.mtx 43/14[OK]
|
||||
[2025-06-11 12:38:58] Generation geaxpby single precision result file parallel/sol_x2_y1_a3_b2.mtx 44/14[OK]
|
||||
[2025-06-11 12:38:58] Generation geaxpby single precision result file parallel/sol_x2_y1_a3_b3.mtx 45/14[OK]
|
||||
[2025-06-11 12:38:58] Generation geaxpby single precision result file parallel/sol_x2_y2_a1_b1.mtx 46/14[OK]
|
||||
[2025-06-11 12:38:58] Generation geaxpby single precision result file parallel/sol_x2_y2_a1_b2.mtx 47/14[OK]
|
||||
[2025-06-11 12:38:58] Generation geaxpby single precision result file parallel/sol_x2_y2_a1_b3.mtx 48/14[OK]
|
||||
[2025-06-11 12:38:58] Generation geaxpby single precision result file parallel/sol_x2_y2_a2_b1.mtx 49/14[OK]
|
||||
[2025-06-11 12:38:59] Generation geaxpby single precision result file parallel/sol_x2_y2_a2_b2.mtx 50/14[OK]
|
||||
[2025-06-11 12:38:59] Generation geaxpby single precision result file parallel/sol_x2_y2_a2_b3.mtx 51/14[OK]
|
||||
[2025-06-11 12:38:59] Generation geaxpby single precision result file parallel/sol_x2_y2_a3_b1.mtx 52/14[OK]
|
||||
[2025-06-11 12:38:59] Generation geaxpby single precision result file parallel/sol_x2_y2_a3_b2.mtx 53/14[OK]
|
||||
[2025-06-11 12:38:59] Generation geaxpby single precision result file parallel/sol_x2_y2_a3_b3.mtx 54/14[OK]
|
||||
[2025-06-11 12:38:59] Generation geaxpby single precision result file parallel/sol_x2_y3_a1_b1.mtx 55/14[OK]
|
||||
[2025-06-11 12:39:00] Generation geaxpby single precision result file parallel/sol_x2_y3_a1_b2.mtx 56/14[OK]
|
||||
[2025-06-11 12:39:00] Generation geaxpby single precision result file parallel/sol_x2_y3_a1_b3.mtx 57/14[OK]
|
||||
[2025-06-11 12:39:00] Generation geaxpby single precision result file parallel/sol_x2_y3_a2_b1.mtx 58/14[OK]
|
||||
[2025-06-11 12:39:00] Generation geaxpby single precision result file parallel/sol_x2_y3_a2_b2.mtx 59/14[OK]
|
||||
[2025-06-11 12:39:00] Generation geaxpby single precision result file parallel/sol_x2_y3_a2_b3.mtx 60/14[OK]
|
||||
[2025-06-11 12:39:00] Generation geaxpby single precision result file parallel/sol_x2_y3_a3_b1.mtx 61/14[OK]
|
||||
[2025-06-11 12:39:00] Generation geaxpby single precision result file parallel/sol_x2_y3_a3_b2.mtx 62/14[OK]
|
||||
[2025-06-11 12:39:01] Generation geaxpby single precision result file parallel/sol_x2_y3_a3_b3.mtx 63/14[OK]
|
||||
[2025-06-11 12:39:01] Generation geaxpby single precision result file parallel/sol_x2_y4_a1_b1.mtx 64/14[OK]
|
||||
[2025-06-11 12:39:01] Generation geaxpby single precision result file parallel/sol_x2_y4_a1_b2.mtx 65/14[OK]
|
||||
[2025-06-11 12:39:01] Generation geaxpby single precision result file parallel/sol_x2_y4_a1_b3.mtx 66/14[OK]
|
||||
[2025-06-11 12:39:01] Generation geaxpby single precision result file parallel/sol_x2_y4_a2_b1.mtx 67/14[OK]
|
||||
[2025-06-11 12:39:01] Generation geaxpby single precision result file parallel/sol_x2_y4_a2_b2.mtx 68/14[OK]
|
||||
[2025-06-11 12:39:01] Generation geaxpby single precision result file parallel/sol_x2_y4_a2_b3.mtx 69/14[OK]
|
||||
[2025-06-11 12:39:01] Generation geaxpby single precision result file parallel/sol_x2_y4_a3_b1.mtx 70/14[OK]
|
||||
[2025-06-11 12:39:02] Generation geaxpby single precision result file parallel/sol_x2_y4_a3_b2.mtx 71/14[OK]
|
||||
[2025-06-11 12:39:02] Generation geaxpby single precision result file parallel/sol_x2_y4_a3_b3.mtx 72/14[OK]
|
||||
[2025-06-11 12:39:02] Generation geaxpby single precision result file parallel/sol_x3_y1_a1_b1.mtx 73/14[OK]
|
||||
[2025-06-11 12:39:02] Generation geaxpby single precision result file parallel/sol_x3_y1_a1_b2.mtx 74/14[OK]
|
||||
[2025-06-11 12:39:02] Generation geaxpby single precision result file parallel/sol_x3_y1_a1_b3.mtx 75/14[OK]
|
||||
[2025-06-11 12:39:02] Generation geaxpby single precision result file parallel/sol_x3_y1_a2_b1.mtx 76/14[OK]
|
||||
[2025-06-11 12:39:03] Generation geaxpby single precision result file parallel/sol_x3_y1_a2_b2.mtx 77/14[OK]
|
||||
[2025-06-11 12:39:03] Generation geaxpby single precision result file parallel/sol_x3_y1_a2_b3.mtx 78/14[OK]
|
||||
[2025-06-11 12:39:03] Generation geaxpby single precision result file parallel/sol_x3_y1_a3_b1.mtx 79/14[OK]
|
||||
[2025-06-11 12:39:03] Generation geaxpby single precision result file parallel/sol_x3_y1_a3_b2.mtx 80/14[OK]
|
||||
[2025-06-11 12:39:03] Generation geaxpby single precision result file parallel/sol_x3_y1_a3_b3.mtx 81/14[OK]
|
||||
[2025-06-11 12:39:03] Generation geaxpby single precision result file parallel/sol_x3_y2_a1_b1.mtx 82/14[OK]
|
||||
[2025-06-11 12:39:03] Generation geaxpby single precision result file parallel/sol_x3_y2_a1_b2.mtx 83/14[OK]
|
||||
[2025-06-11 12:39:03] Generation geaxpby single precision result file parallel/sol_x3_y2_a1_b3.mtx 84/14[OK]
|
||||
[2025-06-11 12:39:04] Generation geaxpby single precision result file parallel/sol_x3_y2_a2_b1.mtx 85/14[OK]
|
||||
[2025-06-11 12:39:04] Generation geaxpby single precision result file parallel/sol_x3_y2_a2_b2.mtx 86/14[OK]
|
||||
[2025-06-11 12:39:04] Generation geaxpby single precision result file parallel/sol_x3_y2_a2_b3.mtx 87/14[OK]
|
||||
[2025-06-11 12:39:04] Generation geaxpby single precision result file parallel/sol_x3_y2_a3_b1.mtx 88/14[OK]
|
||||
[2025-06-11 12:39:04] Generation geaxpby single precision result file parallel/sol_x3_y2_a3_b2.mtx 89/14[OK]
|
||||
[2025-06-11 12:39:04] Generation geaxpby single precision result file parallel/sol_x3_y2_a3_b3.mtx 90/14[OK]
|
||||
[2025-06-11 12:39:04] Generation geaxpby single precision result file parallel/sol_x3_y3_a1_b1.mtx 91/14[OK]
|
||||
[2025-06-11 12:39:05] Generation geaxpby single precision result file parallel/sol_x3_y3_a1_b2.mtx 92/14[OK]
|
||||
[2025-06-11 12:39:05] Generation geaxpby single precision result file parallel/sol_x3_y3_a1_b3.mtx 93/14[OK]
|
||||
[2025-06-11 12:39:05] Generation geaxpby single precision result file parallel/sol_x3_y3_a2_b1.mtx 94/14[OK]
|
||||
[2025-06-11 12:39:05] Generation geaxpby single precision result file parallel/sol_x3_y3_a2_b2.mtx 95/14[OK]
|
||||
[2025-06-11 12:39:05] Generation geaxpby single precision result file parallel/sol_x3_y3_a2_b3.mtx 96/14[OK]
|
||||
[2025-06-11 12:39:05] Generation geaxpby single precision result file parallel/sol_x3_y3_a3_b1.mtx 97/14[OK]
|
||||
[2025-06-11 12:39:05] Generation geaxpby single precision result file parallel/sol_x3_y3_a3_b2.mtx 98/14[OK]
|
||||
[2025-06-11 12:39:06] Generation geaxpby single precision result file parallel/sol_x3_y3_a3_b3.mtx 99/14[OK]
|
||||
[2025-06-11 12:39:06] Generation geaxpby single precision result file parallel/sol_x3_y4_a1_b1.mtx 100/1[OK]
|
||||
[2025-06-11 12:39:06] Generation geaxpby single precision result file parallel/sol_x3_y4_a1_b2.mtx 101/1[OK]
|
||||
[2025-06-11 12:39:06] Generation geaxpby single precision result file parallel/sol_x3_y4_a1_b3.mtx 102/1[OK]
|
||||
[2025-06-11 12:39:06] Generation geaxpby single precision result file parallel/sol_x3_y4_a2_b1.mtx 103/1[OK]
|
||||
[2025-06-11 12:39:06] Generation geaxpby single precision result file parallel/sol_x3_y4_a2_b2.mtx 104/1[OK]
|
||||
[2025-06-11 12:39:06] Generation geaxpby single precision result file parallel/sol_x3_y4_a2_b3.mtx 105/1[OK]
|
||||
[2025-06-11 12:39:06] Generation geaxpby single precision result file parallel/sol_x3_y4_a3_b1.mtx 106/1[OK]
|
||||
[2025-06-11 12:39:06] Generation geaxpby single precision result file parallel/sol_x3_y4_a3_b2.mtx 107/1[OK]
|
||||
[2025-06-11 12:39:07] Generation geaxpby single precision result file parallel/sol_x3_y4_a3_b3.mtx 108/1[OK]
|
||||
[2025-06-11 12:39:07] Generation geaxpby single precision result file parallel/sol_x4_y1_a1_b1.mtx 109/1[OK]
|
||||
[2025-06-11 12:39:07] Generation geaxpby single precision result file parallel/sol_x4_y1_a1_b2.mtx 110/1[OK]
|
||||
[2025-06-11 12:39:07] Generation geaxpby single precision result file parallel/sol_x4_y1_a1_b3.mtx 111/1[OK]
|
||||
[2025-06-11 12:39:07] Generation geaxpby single precision result file parallel/sol_x4_y1_a2_b1.mtx 112/1[OK]
|
||||
[2025-06-11 12:39:08] Generation geaxpby single precision result file parallel/sol_x4_y1_a2_b2.mtx 113/1[OK]
|
||||
[2025-06-11 12:39:08] Generation geaxpby single precision result file parallel/sol_x4_y1_a2_b3.mtx 114/1[OK]
|
||||
[2025-06-11 12:39:08] Generation geaxpby single precision result file parallel/sol_x4_y1_a3_b1.mtx 115/1[OK]
|
||||
[2025-06-11 12:39:08] Generation geaxpby single precision result file parallel/sol_x4_y1_a3_b2.mtx 116/1[OK]
|
||||
[2025-06-11 12:39:08] Generation geaxpby single precision result file parallel/sol_x4_y1_a3_b3.mtx 117/1[OK]
|
||||
[2025-06-11 12:39:08] Generation geaxpby single precision result file parallel/sol_x4_y2_a1_b1.mtx 118/1[OK]
|
||||
[2025-06-11 12:39:08] Generation geaxpby single precision result file parallel/sol_x4_y2_a1_b2.mtx 119/1[OK]
|
||||
[2025-06-11 12:39:08] Generation geaxpby single precision result file parallel/sol_x4_y2_a1_b3.mtx 120/1[OK]
|
||||
[2025-06-11 12:39:09] Generation geaxpby single precision result file parallel/sol_x4_y2_a2_b1.mtx 121/1[OK]
|
||||
[2025-06-11 12:39:09] Generation geaxpby single precision result file parallel/sol_x4_y2_a2_b2.mtx 122/1[OK]
|
||||
[2025-06-11 12:39:09] Generation geaxpby single precision result file parallel/sol_x4_y2_a2_b3.mtx 123/1[OK]
|
||||
[2025-06-11 12:39:09] Generation geaxpby single precision result file parallel/sol_x4_y2_a3_b1.mtx 124/1[OK]
|
||||
[2025-06-11 12:39:09] Generation geaxpby single precision result file parallel/sol_x4_y2_a3_b2.mtx 125/1[OK]
|
||||
[2025-06-11 12:39:09] Generation geaxpby single precision result file parallel/sol_x4_y2_a3_b3.mtx 126/1[OK]
|
||||
[2025-06-11 12:39:09] Generation geaxpby single precision result file parallel/sol_x4_y3_a1_b1.mtx 127/1[OK]
|
||||
[2025-06-11 12:39:09] Generation geaxpby single precision result file parallel/sol_x4_y3_a1_b2.mtx 128/1[OK]
|
||||
[2025-06-11 12:39:09] Generation geaxpby single precision result file parallel/sol_x4_y3_a1_b3.mtx 129/1[OK]
|
||||
[2025-06-11 12:39:09] Generation geaxpby single precision result file parallel/sol_x4_y3_a2_b1.mtx 130/1[OK]
|
||||
[2025-06-11 12:39:10] Generation geaxpby single precision result file parallel/sol_x4_y3_a2_b2.mtx 131/1[OK]
|
||||
[2025-06-11 12:39:10] Generation geaxpby single precision result file parallel/sol_x4_y3_a2_b3.mtx 132/1[OK]
|
||||
[2025-06-11 12:39:10] Generation geaxpby single precision result file parallel/sol_x4_y3_a3_b1.mtx 133/1[OK]
|
||||
[2025-06-11 12:39:10] Generation geaxpby single precision result file parallel/sol_x4_y3_a3_b2.mtx 134/1[OK]
|
||||
[2025-06-11 12:39:10] Generation geaxpby single precision result file parallel/sol_x4_y3_a3_b3.mtx 135/1[OK]
|
||||
[2025-06-11 12:39:10] Generation geaxpby single precision result file parallel/sol_x4_y4_a1_b1.mtx 136/1[OK]
|
||||
[2025-06-11 12:39:10] Generation geaxpby single precision result file parallel/sol_x4_y4_a1_b2.mtx 137/1[OK]
|
||||
[2025-06-11 12:39:10] Generation geaxpby single precision result file parallel/sol_x4_y4_a1_b3.mtx 138/1[OK]
|
||||
[2025-06-11 12:39:11] Generation geaxpby single precision result file parallel/sol_x4_y4_a2_b1.mtx 139/1[OK]
|
||||
[2025-06-11 12:39:11] Generation geaxpby single precision result file parallel/sol_x4_y4_a2_b2.mtx 140/1[OK]
|
||||
[2025-06-11 12:39:11] Generation geaxpby single precision result file parallel/sol_x4_y4_a2_b3.mtx 141/1[OK]
|
||||
[2025-06-11 12:39:11] Generation geaxpby single precision result file parallel/sol_x4_y4_a3_b1.mtx 142/1[OK]
|
||||
[2025-06-11 12:39:11] Generation geaxpby single precision result file parallel/sol_x4_y4_a3_b2.mtx 143/1[OK]
|
||||
[2025-06-11 12:39:11] Generation geaxpby single precision result file parallel/sol_x4_y4_a3_b3.mtx 144/1[OK]
|
||||
|
||||
Double precision check 1/144 [OK]
|
||||
Double precision check 2/144 [OK]
|
||||
Double precision check 3/144 [OK]
|
||||
Double precision check 4/144 [OK]
|
||||
Double precision check 5/144 [OK]
|
||||
Double precision check 6/144 [OK]
|
||||
Double precision check 7/144 [OK]
|
||||
Double precision check 8/144 [OK]
|
||||
Double precision check 9/144 [OK]
|
||||
Double precision check 10/144 [OK]
|
||||
Double precision check 11/144 [OK]
|
||||
Double precision check 12/144 [OK]
|
||||
Double precision check 13/144 [OK]
|
||||
Double precision check 14/144 [OK]
|
||||
Double precision check 15/144 [OK]
|
||||
Double precision check 16/144 [OK]
|
||||
Double precision check 17/144 [OK]
|
||||
Double precision check 18/144 [OK]
|
||||
Double precision check 19/144 [OK]
|
||||
Double precision check 20/144 [OK]
|
||||
Double precision check 21/144 [OK]
|
||||
Double precision check 22/144 [OK]
|
||||
Double precision check 23/144 [OK]
|
||||
Double precision check 24/144 [OK]
|
||||
Double precision check 25/144 [OK]
|
||||
Double precision check 26/144 [OK]
|
||||
Double precision check 27/144 [OK]
|
||||
Double precision check 28/144 [OK]
|
||||
Double precision check 29/144 [OK]
|
||||
Double precision check 30/144 [OK]
|
||||
Double precision check 31/144 [OK]
|
||||
Double precision check 32/144 [OK]
|
||||
Double precision check 33/144 [OK]
|
||||
Double precision check 34/144 [OK]
|
||||
Double precision check 35/144 [OK]
|
||||
Double precision check 36/144 [OK]
|
||||
Double precision check 37/144 [OK]
|
||||
Double precision check 38/144 [OK]
|
||||
Double precision check 39/144 [OK]
|
||||
Double precision check 40/144 [OK]
|
||||
Double precision check 41/144 [OK]
|
||||
Double precision check 42/144 [OK]
|
||||
Double precision check 43/144 [OK]
|
||||
Double precision check 44/144 [OK]
|
||||
Double precision check 45/144 [OK]
|
||||
Double precision check 46/144 [OK]
|
||||
Double precision check 47/144 [OK]
|
||||
Double precision check 48/144 [OK]
|
||||
Double precision check 49/144 [OK]
|
||||
Double precision check 50/144 [OK]
|
||||
Double precision check 51/144 [OK]
|
||||
Double precision check 52/144 [OK]
|
||||
Double precision check 53/144 [OK]
|
||||
Double precision check 54/144 [OK]
|
||||
Double precision check 55/144 [OK]
|
||||
Double precision check 56/144 [OK]
|
||||
Double precision check 57/144 [OK]
|
||||
Double precision check 58/144 [OK]
|
||||
Double precision check 59/144 [OK]
|
||||
Double precision check 60/144 [OK]
|
||||
Double precision check 61/144 [OK]
|
||||
Double precision check 62/144 [OK]
|
||||
Double precision check 63/144 [OK]
|
||||
Double precision check 64/144 [OK]
|
||||
Double precision check 65/144 [OK]
|
||||
Double precision check 66/144 [OK]
|
||||
Double precision check 67/144 [OK]
|
||||
Double precision check 68/144 [OK]
|
||||
Double precision check 69/144 [OK]
|
||||
Double precision check 70/144 [OK]
|
||||
Double precision check 71/144 [OK]
|
||||
Double precision check 72/144 [OK]
|
||||
Double precision check 73/144 [OK]
|
||||
Double precision check 74/144 [OK]
|
||||
Double precision check 75/144 [OK]
|
||||
Double precision check 76/144 [OK]
|
||||
Double precision check 77/144 [OK]
|
||||
Double precision check 78/144 [OK]
|
||||
Double precision check 79/144 [OK]
|
||||
Double precision check 80/144 [OK]
|
||||
Double precision check 81/144 [OK]
|
||||
Double precision check 82/144 [OK]
|
||||
Double precision check 83/144 [OK]
|
||||
Double precision check 84/144 [OK]
|
||||
Double precision check 85/144 [OK]
|
||||
Double precision check 86/144 [OK]
|
||||
Double precision check 87/144 [OK]
|
||||
Double precision check 88/144 [OK]
|
||||
Double precision check 89/144 [OK]
|
||||
Double precision check 90/144 [OK]
|
||||
Double precision check 91/144 [OK]
|
||||
Double precision check 92/144 [OK]
|
||||
Double precision check 93/144 [OK]
|
||||
Double precision check 94/144 [OK]
|
||||
Double precision check 95/144 [OK]
|
||||
Double precision check 96/144 [OK]
|
||||
Double precision check 97/144 [OK]
|
||||
Double precision check 98/144 [OK]
|
||||
Double precision check 99/144 [OK]
|
||||
Double precision check 100/144 [OK]
|
||||
Double precision check 101/144 [OK]
|
||||
Double precision check 102/144 [OK]
|
||||
Double precision check 103/144 [OK]
|
||||
Double precision check 104/144 [OK]
|
||||
Double precision check 105/144 [OK]
|
||||
Double precision check 106/144 [OK]
|
||||
Double precision check 107/144 [OK]
|
||||
Double precision check 108/144 [OK]
|
||||
Double precision check 109/144 [OK]
|
||||
Double precision check 110/144 [OK]
|
||||
Double precision check 111/144 [OK]
|
||||
Double precision check 112/144 [OK]
|
||||
Double precision check 113/144 [OK]
|
||||
Double precision check 114/144 [OK]
|
||||
Double precision check 115/144 [OK]
|
||||
Double precision check 116/144 [OK]
|
||||
Double precision check 117/144 [OK]
|
||||
Double precision check 118/144 [OK]
|
||||
Double precision check 119/144 [OK]
|
||||
Double precision check 120/144 [OK]
|
||||
Double precision check 121/144 [OK]
|
||||
Double precision check 122/144 [OK]
|
||||
Double precision check 123/144 [OK]
|
||||
Double precision check 124/144 [OK]
|
||||
Double precision check 125/144 [OK]
|
||||
Double precision check 126/144 [OK]
|
||||
Double precision check 127/144 [OK]
|
||||
Double precision check 128/144 [OK]
|
||||
Double precision check 129/144 [OK]
|
||||
Double precision check 130/144 [OK]
|
||||
Double precision check 131/144 [OK]
|
||||
Double precision check 132/144 [OK]
|
||||
Double precision check 133/144 [OK]
|
||||
Double precision check 134/144 [OK]
|
||||
Double precision check 135/144 [OK]
|
||||
Double precision check 136/144 [OK]
|
||||
Double precision check 137/144 [OK]
|
||||
Double precision check 138/144 [OK]
|
||||
Double precision check 139/144 [OK]
|
||||
Double precision check 140/144 [OK]
|
||||
Double precision check 141/144 [OK]
|
||||
Double precision check 142/144 [OK]
|
||||
Double precision check 143/144 [OK]
|
||||
Double precision check 144/144 [OK]
|
||||
[2025-06-11 12:39:11] Double precision check on file parallel/sol_x1_y1_a1_b1.mtx 1/144 [OK]
|
||||
[2025-06-11 12:39:11] Double precision check on file parallel/sol_x1_y1_a1_b2.mtx 2/144 [OK]
|
||||
[2025-06-11 12:39:11] Double precision check on file parallel/sol_x1_y1_a1_b3.mtx 3/144 [OK]
|
||||
[2025-06-11 12:39:11] Double precision check on file parallel/sol_x1_y1_a2_b1.mtx 4/144 [OK]
|
||||
[2025-06-11 12:39:12] Double precision check on file parallel/sol_x1_y1_a2_b2.mtx 5/144 [OK]
|
||||
[2025-06-11 12:39:12] Double precision check on file parallel/sol_x1_y1_a2_b3.mtx 6/144 [OK]
|
||||
[2025-06-11 12:39:12] Double precision check on file parallel/sol_x1_y1_a3_b1.mtx 7/144 [OK]
|
||||
[2025-06-11 12:39:12] Double precision check on file parallel/sol_x1_y1_a3_b2.mtx 8/144 [OK]
|
||||
[2025-06-11 12:39:12] Double precision check on file parallel/sol_x1_y1_a3_b3.mtx 9/144 [OK]
|
||||
[2025-06-11 12:39:12] Double precision check on file parallel/sol_x1_y2_a1_b1.mtx 10/144 [OK]
|
||||
[2025-06-11 12:39:12] Double precision check on file parallel/sol_x1_y2_a1_b2.mtx 11/144 [OK]
|
||||
[2025-06-11 12:39:12] Double precision check on file parallel/sol_x1_y2_a1_b3.mtx 12/144 [OK]
|
||||
[2025-06-11 12:39:12] Double precision check on file parallel/sol_x1_y2_a2_b1.mtx 13/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y2_a2_b2.mtx 14/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y2_a2_b3.mtx 15/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y2_a3_b1.mtx 16/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y2_a3_b2.mtx 17/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y2_a3_b3.mtx 18/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y3_a1_b1.mtx 19/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y3_a1_b2.mtx 20/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y3_a1_b3.mtx 21/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y3_a2_b1.mtx 22/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y3_a2_b2.mtx 23/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y3_a2_b3.mtx 24/144 [OK]
|
||||
[2025-06-11 12:39:13] Double precision check on file parallel/sol_x1_y3_a3_b1.mtx 25/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y3_a3_b2.mtx 26/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y3_a3_b3.mtx 27/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y4_a1_b1.mtx 28/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y4_a1_b2.mtx 29/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y4_a1_b3.mtx 30/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y4_a2_b1.mtx 31/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y4_a2_b2.mtx 32/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y4_a2_b3.mtx 33/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y4_a3_b1.mtx 34/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y4_a3_b2.mtx 35/144 [OK]
|
||||
[2025-06-11 12:39:14] Double precision check on file parallel/sol_x1_y4_a3_b3.mtx 36/144 [OK]
|
||||
[2025-06-11 12:39:15] Double precision check on file parallel/sol_x2_y1_a1_b1.mtx 37/144 [OK]
|
||||
[2025-06-11 12:39:15] Double precision check on file parallel/sol_x2_y1_a1_b2.mtx 38/144 [OK]
|
||||
[2025-06-11 12:39:15] Double precision check on file parallel/sol_x2_y1_a1_b3.mtx 39/144 [OK]
|
||||
[2025-06-11 12:39:15] Double precision check on file parallel/sol_x2_y1_a2_b1.mtx 40/144 [OK]
|
||||
[2025-06-11 12:39:15] Double precision check on file parallel/sol_x2_y1_a2_b2.mtx 41/144 [OK]
|
||||
[2025-06-11 12:39:15] Double precision check on file parallel/sol_x2_y1_a2_b3.mtx 42/144 [OK]
|
||||
[2025-06-11 12:39:15] Double precision check on file parallel/sol_x2_y1_a3_b1.mtx 43/144 [OK]
|
||||
[2025-06-11 12:39:15] Double precision check on file parallel/sol_x2_y1_a3_b2.mtx 44/144 [OK]
|
||||
[2025-06-11 12:39:15] Double precision check on file parallel/sol_x2_y1_a3_b3.mtx 45/144 [OK]
|
||||
[2025-06-11 12:39:15] Double precision check on file parallel/sol_x2_y2_a1_b1.mtx 46/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y2_a1_b2.mtx 47/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y2_a1_b3.mtx 48/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y2_a2_b1.mtx 49/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y2_a2_b2.mtx 50/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y2_a2_b3.mtx 51/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y2_a3_b1.mtx 52/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y2_a3_b2.mtx 53/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y2_a3_b3.mtx 54/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y3_a1_b1.mtx 55/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y3_a1_b2.mtx 56/144 [OK]
|
||||
[2025-06-11 12:39:16] Double precision check on file parallel/sol_x2_y3_a1_b3.mtx 57/144 [OK]
|
||||
[2025-06-11 12:39:17] Double precision check on file parallel/sol_x2_y3_a2_b1.mtx 58/144 [OK]
|
||||
[2025-06-11 12:39:17] Double precision check on file parallel/sol_x2_y3_a2_b2.mtx 59/144 [OK]
|
||||
[2025-06-11 12:39:17] Double precision check on file parallel/sol_x2_y3_a2_b3.mtx 60/144 [OK]
|
||||
[2025-06-11 12:39:17] Double precision check on file parallel/sol_x2_y3_a3_b1.mtx 61/144 [OK]
|
||||
[2025-06-11 12:39:17] Double precision check on file parallel/sol_x2_y3_a3_b2.mtx 62/144 [OK]
|
||||
[2025-06-11 12:39:17] Double precision check on file parallel/sol_x2_y3_a3_b3.mtx 63/144 [OK]
|
||||
[2025-06-11 12:39:17] Double precision check on file parallel/sol_x2_y4_a1_b1.mtx 64/144 [OK]
|
||||
[2025-06-11 12:39:17] Double precision check on file parallel/sol_x2_y4_a1_b2.mtx 65/144 [OK]
|
||||
[2025-06-11 12:39:17] Double precision check on file parallel/sol_x2_y4_a1_b3.mtx 66/144 [OK]
|
||||
[2025-06-11 12:39:17] Double precision check on file parallel/sol_x2_y4_a2_b1.mtx 67/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x2_y4_a2_b2.mtx 68/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x2_y4_a2_b3.mtx 69/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x2_y4_a3_b1.mtx 70/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x2_y4_a3_b2.mtx 71/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x2_y4_a3_b3.mtx 72/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x3_y1_a1_b1.mtx 73/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x3_y1_a1_b2.mtx 74/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x3_y1_a1_b3.mtx 75/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x3_y1_a2_b1.mtx 76/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x3_y1_a2_b2.mtx 77/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x3_y1_a2_b3.mtx 78/144 [OK]
|
||||
[2025-06-11 12:39:18] Double precision check on file parallel/sol_x3_y1_a3_b1.mtx 79/144 [OK]
|
||||
[2025-06-11 12:39:19] Double precision check on file parallel/sol_x3_y1_a3_b2.mtx 80/144 [OK]
|
||||
[2025-06-11 12:39:19] Double precision check on file parallel/sol_x3_y1_a3_b3.mtx 81/144 [OK]
|
||||
[2025-06-11 12:39:19] Double precision check on file parallel/sol_x3_y2_a1_b1.mtx 82/144 [OK]
|
||||
[2025-06-11 12:39:19] Double precision check on file parallel/sol_x3_y2_a1_b2.mtx 83/144 [OK]
|
||||
[2025-06-11 12:39:19] Double precision check on file parallel/sol_x3_y2_a1_b3.mtx 84/144 [OK]
|
||||
[2025-06-11 12:39:19] Double precision check on file parallel/sol_x3_y2_a2_b1.mtx 85/144 [OK]
|
||||
[2025-06-11 12:39:19] Double precision check on file parallel/sol_x3_y2_a2_b2.mtx 86/144 [OK]
|
||||
[2025-06-11 12:39:19] Double precision check on file parallel/sol_x3_y2_a2_b3.mtx 87/144 [OK]
|
||||
[2025-06-11 12:39:19] Double precision check on file parallel/sol_x3_y2_a3_b1.mtx 88/144 [OK]
|
||||
[2025-06-11 12:39:20] Double precision check on file parallel/sol_x3_y2_a3_b2.mtx 89/144 [OK]
|
||||
[2025-06-11 12:39:20] Double precision check on file parallel/sol_x3_y2_a3_b3.mtx 90/144 [OK]
|
||||
[2025-06-11 12:39:20] Double precision check on file parallel/sol_x3_y3_a1_b1.mtx 91/144 [OK]
|
||||
[2025-06-11 12:39:20] Double precision check on file parallel/sol_x3_y3_a1_b2.mtx 92/144 [OK]
|
||||
[2025-06-11 12:39:20] Double precision check on file parallel/sol_x3_y3_a1_b3.mtx 93/144 [OK]
|
||||
[2025-06-11 12:39:20] Double precision check on file parallel/sol_x3_y3_a2_b1.mtx 94/144 [OK]
|
||||
[2025-06-11 12:39:20] Double precision check on file parallel/sol_x3_y3_a2_b2.mtx 95/144 [OK]
|
||||
[2025-06-11 12:39:20] Double precision check on file parallel/sol_x3_y3_a2_b3.mtx 96/144 [OK]
|
||||
[2025-06-11 12:39:20] Double precision check on file parallel/sol_x3_y3_a3_b1.mtx 97/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y3_a3_b2.mtx 98/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y3_a3_b3.mtx 99/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y4_a1_b1.mtx 100/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y4_a1_b2.mtx 101/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y4_a1_b3.mtx 102/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y4_a2_b1.mtx 103/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y4_a2_b2.mtx 104/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y4_a2_b3.mtx 105/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y4_a3_b1.mtx 106/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y4_a3_b2.mtx 107/144 [OK]
|
||||
[2025-06-11 12:39:21] Double precision check on file parallel/sol_x3_y4_a3_b3.mtx 108/144 [OK]
|
||||
[2025-06-11 12:39:22] Double precision check on file parallel/sol_x4_y1_a1_b1.mtx 109/144 [OK]
|
||||
[2025-06-11 12:39:22] Double precision check on file parallel/sol_x4_y1_a1_b2.mtx 110/144 [OK]
|
||||
[2025-06-11 12:39:22] Double precision check on file parallel/sol_x4_y1_a1_b3.mtx 111/144 [OK]
|
||||
[2025-06-11 12:39:22] Double precision check on file parallel/sol_x4_y1_a2_b1.mtx 112/144 [OK]
|
||||
[2025-06-11 12:39:22] Double precision check on file parallel/sol_x4_y1_a2_b2.mtx 113/144 [OK]
|
||||
[2025-06-11 12:39:22] Double precision check on file parallel/sol_x4_y1_a2_b3.mtx 114/144 [OK]
|
||||
[2025-06-11 12:39:22] Double precision check on file parallel/sol_x4_y1_a3_b1.mtx 115/144 [OK]
|
||||
[2025-06-11 12:39:22] Double precision check on file parallel/sol_x4_y1_a3_b2.mtx 116/144 [OK]
|
||||
[2025-06-11 12:39:23] Double precision check on file parallel/sol_x4_y1_a3_b3.mtx 117/144 [OK]
|
||||
[2025-06-11 12:39:23] Double precision check on file parallel/sol_x4_y2_a1_b1.mtx 118/144 [OK]
|
||||
[2025-06-11 12:39:23] Double precision check on file parallel/sol_x4_y2_a1_b2.mtx 119/144 [OK]
|
||||
[2025-06-11 12:39:23] Double precision check on file parallel/sol_x4_y2_a1_b3.mtx 120/144 [OK]
|
||||
[2025-06-11 12:39:23] Double precision check on file parallel/sol_x4_y2_a2_b1.mtx 121/144 [OK]
|
||||
[2025-06-11 12:39:23] Double precision check on file parallel/sol_x4_y2_a2_b2.mtx 122/144 [OK]
|
||||
[2025-06-11 12:39:23] Double precision check on file parallel/sol_x4_y2_a2_b3.mtx 123/144 [OK]
|
||||
[2025-06-11 12:39:23] Double precision check on file parallel/sol_x4_y2_a3_b1.mtx 124/144 [OK]
|
||||
[2025-06-11 12:39:24] Double precision check on file parallel/sol_x4_y2_a3_b2.mtx 125/144 [OK]
|
||||
[2025-06-11 12:39:24] Double precision check on file parallel/sol_x4_y2_a3_b3.mtx 126/144 [OK]
|
||||
[2025-06-11 12:39:24] Double precision check on file parallel/sol_x4_y3_a1_b1.mtx 127/144 [OK]
|
||||
[2025-06-11 12:39:24] Double precision check on file parallel/sol_x4_y3_a1_b2.mtx 128/144 [OK]
|
||||
[2025-06-11 12:39:24] Double precision check on file parallel/sol_x4_y3_a1_b3.mtx 129/144 [OK]
|
||||
[2025-06-11 12:39:24] Double precision check on file parallel/sol_x4_y3_a2_b1.mtx 130/144 [OK]
|
||||
[2025-06-11 12:39:24] Double precision check on file parallel/sol_x4_y3_a2_b2.mtx 131/144 [OK]
|
||||
[2025-06-11 12:39:24] Double precision check on file parallel/sol_x4_y3_a2_b3.mtx 132/144 [OK]
|
||||
[2025-06-11 12:39:25] Double precision check on file parallel/sol_x4_y3_a3_b1.mtx 133/144 [OK]
|
||||
[2025-06-11 12:39:25] Double precision check on file parallel/sol_x4_y3_a3_b2.mtx 134/144 [OK]
|
||||
[2025-06-11 12:39:25] Double precision check on file parallel/sol_x4_y3_a3_b3.mtx 135/144 [OK]
|
||||
[2025-06-11 12:39:25] Double precision check on file parallel/sol_x4_y4_a1_b1.mtx 136/144 [OK]
|
||||
[2025-06-11 12:39:25] Double precision check on file parallel/sol_x4_y4_a1_b2.mtx 137/144 [OK]
|
||||
[2025-06-11 12:39:25] Double precision check on file parallel/sol_x4_y4_a1_b3.mtx 138/144 [OK]
|
||||
[2025-06-11 12:39:25] Double precision check on file parallel/sol_x4_y4_a2_b1.mtx 139/144 [OK]
|
||||
[2025-06-11 12:39:25] Double precision check on file parallel/sol_x4_y4_a2_b2.mtx 140/144 [OK]
|
||||
[2025-06-11 12:39:26] Double precision check on file parallel/sol_x4_y4_a2_b3.mtx 141/144 [OK]
|
||||
[2025-06-11 12:39:26] Double precision check on file parallel/sol_x4_y4_a3_b1.mtx 142/144 [OK]
|
||||
[2025-06-11 12:39:26] Double precision check on file parallel/sol_x4_y4_a3_b2.mtx 143/144 [OK]
|
||||
[2025-06-11 12:39:26] Double precision check on file parallel/sol_x4_y4_a3_b3.mtx 144/144 [OK]
|
||||
|
||||
Comparison between serial/sol_x1_y1_a1_b1.mtx and parallel/sol_x1_y1_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y1_a1_b2.mtx and parallel/sol_x1_y1_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y1_a1_b3.mtx and parallel/sol_x1_y1_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y1_a2_b1.mtx and parallel/sol_x1_y1_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y1_a2_b2.mtx and parallel/sol_x1_y1_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y1_a2_b3.mtx and parallel/sol_x1_y1_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y1_a3_b1.mtx and parallel/sol_x1_y1_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y1_a3_b2.mtx and parallel/sol_x1_y1_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y1_a3_b3.mtx and parallel/sol_x1_y1_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y2_a1_b1.mtx and parallel/sol_x1_y2_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y2_a1_b2.mtx and parallel/sol_x1_y2_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y2_a1_b3.mtx and parallel/sol_x1_y2_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y2_a2_b1.mtx and parallel/sol_x1_y2_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y2_a2_b2.mtx and parallel/sol_x1_y2_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y2_a2_b3.mtx and parallel/sol_x1_y2_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y2_a3_b1.mtx and parallel/sol_x1_y2_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y2_a3_b2.mtx and parallel/sol_x1_y2_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y2_a3_b3.mtx and parallel/sol_x1_y2_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y3_a1_b1.mtx and parallel/sol_x1_y3_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y3_a1_b2.mtx and parallel/sol_x1_y3_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y3_a1_b3.mtx and parallel/sol_x1_y3_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y3_a2_b1.mtx and parallel/sol_x1_y3_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y3_a2_b2.mtx and parallel/sol_x1_y3_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y3_a2_b3.mtx and parallel/sol_x1_y3_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y3_a3_b1.mtx and parallel/sol_x1_y3_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y3_a3_b2.mtx and parallel/sol_x1_y3_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y3_a3_b3.mtx and parallel/sol_x1_y3_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y4_a1_b1.mtx and parallel/sol_x1_y4_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y4_a1_b2.mtx and parallel/sol_x1_y4_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y4_a1_b3.mtx and parallel/sol_x1_y4_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y4_a2_b1.mtx and parallel/sol_x1_y4_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y4_a2_b2.mtx and parallel/sol_x1_y4_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y4_a2_b3.mtx and parallel/sol_x1_y4_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y4_a3_b1.mtx and parallel/sol_x1_y4_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y4_a3_b2.mtx and parallel/sol_x1_y4_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x1_y4_a3_b3.mtx and parallel/sol_x1_y4_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y1_a1_b1.mtx and parallel/sol_x2_y1_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y1_a1_b2.mtx and parallel/sol_x2_y1_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y1_a1_b3.mtx and parallel/sol_x2_y1_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y1_a2_b1.mtx and parallel/sol_x2_y1_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y1_a2_b2.mtx and parallel/sol_x2_y1_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y1_a2_b3.mtx and parallel/sol_x2_y1_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y1_a3_b1.mtx and parallel/sol_x2_y1_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y1_a3_b2.mtx and parallel/sol_x2_y1_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y1_a3_b3.mtx and parallel/sol_x2_y1_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y2_a1_b1.mtx and parallel/sol_x2_y2_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y2_a1_b2.mtx and parallel/sol_x2_y2_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y2_a1_b3.mtx and parallel/sol_x2_y2_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y2_a2_b1.mtx and parallel/sol_x2_y2_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y2_a2_b2.mtx and parallel/sol_x2_y2_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y2_a2_b3.mtx and parallel/sol_x2_y2_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y2_a3_b1.mtx and parallel/sol_x2_y2_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y2_a3_b2.mtx and parallel/sol_x2_y2_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y2_a3_b3.mtx and parallel/sol_x2_y2_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y3_a1_b1.mtx and parallel/sol_x2_y3_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y3_a1_b2.mtx and parallel/sol_x2_y3_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y3_a1_b3.mtx and parallel/sol_x2_y3_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y3_a2_b1.mtx and parallel/sol_x2_y3_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y3_a2_b2.mtx and parallel/sol_x2_y3_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y3_a2_b3.mtx and parallel/sol_x2_y3_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y3_a3_b1.mtx and parallel/sol_x2_y3_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y3_a3_b2.mtx and parallel/sol_x2_y3_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y3_a3_b3.mtx and parallel/sol_x2_y3_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y4_a1_b1.mtx and parallel/sol_x2_y4_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y4_a1_b2.mtx and parallel/sol_x2_y4_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y4_a1_b3.mtx and parallel/sol_x2_y4_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y4_a2_b1.mtx and parallel/sol_x2_y4_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y4_a2_b2.mtx and parallel/sol_x2_y4_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y4_a2_b3.mtx and parallel/sol_x2_y4_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y4_a3_b1.mtx and parallel/sol_x2_y4_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y4_a3_b2.mtx and parallel/sol_x2_y4_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x2_y4_a3_b3.mtx and parallel/sol_x2_y4_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y1_a1_b1.mtx and parallel/sol_x3_y1_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y1_a1_b2.mtx and parallel/sol_x3_y1_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y1_a1_b3.mtx and parallel/sol_x3_y1_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y1_a2_b1.mtx and parallel/sol_x3_y1_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y1_a2_b2.mtx and parallel/sol_x3_y1_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y1_a2_b3.mtx and parallel/sol_x3_y1_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y1_a3_b1.mtx and parallel/sol_x3_y1_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y1_a3_b2.mtx and parallel/sol_x3_y1_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y1_a3_b3.mtx and parallel/sol_x3_y1_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y2_a1_b1.mtx and parallel/sol_x3_y2_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y2_a1_b2.mtx and parallel/sol_x3_y2_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y2_a1_b3.mtx and parallel/sol_x3_y2_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y2_a2_b1.mtx and parallel/sol_x3_y2_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y2_a2_b2.mtx and parallel/sol_x3_y2_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y2_a2_b3.mtx and parallel/sol_x3_y2_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y2_a3_b1.mtx and parallel/sol_x3_y2_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y2_a3_b2.mtx and parallel/sol_x3_y2_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y2_a3_b3.mtx and parallel/sol_x3_y2_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y3_a1_b1.mtx and parallel/sol_x3_y3_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y3_a1_b2.mtx and parallel/sol_x3_y3_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y3_a1_b3.mtx and parallel/sol_x3_y3_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y3_a2_b1.mtx and parallel/sol_x3_y3_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y3_a2_b2.mtx and parallel/sol_x3_y3_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y3_a2_b3.mtx and parallel/sol_x3_y3_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y3_a3_b1.mtx and parallel/sol_x3_y3_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y3_a3_b2.mtx and parallel/sol_x3_y3_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y3_a3_b3.mtx and parallel/sol_x3_y3_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y4_a1_b1.mtx and parallel/sol_x3_y4_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y4_a1_b2.mtx and parallel/sol_x3_y4_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y4_a1_b3.mtx and parallel/sol_x3_y4_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y4_a2_b1.mtx and parallel/sol_x3_y4_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y4_a2_b2.mtx and parallel/sol_x3_y4_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y4_a2_b3.mtx and parallel/sol_x3_y4_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y4_a3_b1.mtx and parallel/sol_x3_y4_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y4_a3_b2.mtx and parallel/sol_x3_y4_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x3_y4_a3_b3.mtx and parallel/sol_x3_y4_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y1_a1_b1.mtx and parallel/sol_x4_y1_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y1_a1_b2.mtx and parallel/sol_x4_y1_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y1_a1_b3.mtx and parallel/sol_x4_y1_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y1_a2_b1.mtx and parallel/sol_x4_y1_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y1_a2_b2.mtx and parallel/sol_x4_y1_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y1_a2_b3.mtx and parallel/sol_x4_y1_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y1_a3_b1.mtx and parallel/sol_x4_y1_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y1_a3_b2.mtx and parallel/sol_x4_y1_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y1_a3_b3.mtx and parallel/sol_x4_y1_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y2_a1_b1.mtx and parallel/sol_x4_y2_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y2_a1_b2.mtx and parallel/sol_x4_y2_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y2_a1_b3.mtx and parallel/sol_x4_y2_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y2_a2_b1.mtx and parallel/sol_x4_y2_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y2_a2_b2.mtx and parallel/sol_x4_y2_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y2_a2_b3.mtx and parallel/sol_x4_y2_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y2_a3_b1.mtx and parallel/sol_x4_y2_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y2_a3_b2.mtx and parallel/sol_x4_y2_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y2_a3_b3.mtx and parallel/sol_x4_y2_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y3_a1_b1.mtx and parallel/sol_x4_y3_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y3_a1_b2.mtx and parallel/sol_x4_y3_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y3_a1_b3.mtx and parallel/sol_x4_y3_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y3_a2_b1.mtx and parallel/sol_x4_y3_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y3_a2_b2.mtx and parallel/sol_x4_y3_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y3_a2_b3.mtx and parallel/sol_x4_y3_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y3_a3_b1.mtx and parallel/sol_x4_y3_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y3_a3_b2.mtx and parallel/sol_x4_y3_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y3_a3_b3.mtx and parallel/sol_x4_y3_a3_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y4_a1_b1.mtx and parallel/sol_x4_y4_a1_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y4_a1_b2.mtx and parallel/sol_x4_y4_a1_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y4_a1_b3.mtx and parallel/sol_x4_y4_a1_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y4_a2_b1.mtx and parallel/sol_x4_y4_a2_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y4_a2_b2.mtx and parallel/sol_x4_y4_a2_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y4_a2_b3.mtx and parallel/sol_x4_y4_a2_b3.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y4_a3_b1.mtx and parallel/sol_x4_y4_a3_b1.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y4_a3_b2.mtx and parallel/sol_x4_y4_a3_b2.mtx: 0 differences
|
||||
Comparison between serial/sol_x4_y4_a3_b3.mtx and parallel/sol_x4_y4_a3_b3.mtx: 0 differences
|
||||
|
||||
Loading…
Reference in New Issue