2018-04-25 12:58:19 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright 2005-2018 ECMWF.
|
|
|
|
#
|
|
|
|
# This software is licensed under the terms of the Apache Licence Version 2.0
|
|
|
|
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
#
|
|
|
|
# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
|
|
|
|
# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
|
|
|
#
|
|
|
|
|
|
|
|
. ./include.sh
|
|
|
|
|
|
|
|
label="grib_ecc-604"
|
|
|
|
temp_dir=tempdir.${label}
|
2018-05-08 13:11:01 +00:00
|
|
|
|
|
|
|
validate()
|
|
|
|
{
|
|
|
|
echo "Checking every output file is identical..."
|
2018-05-11 10:48:23 +00:00
|
|
|
# Get checksum of first file
|
|
|
|
ck1=`cksum $OUTPUT/output_file_0-0.grib | awk '{print $1}'`
|
2018-05-08 13:11:01 +00:00
|
|
|
set +x
|
2018-05-11 10:48:23 +00:00
|
|
|
# Get checksum of all of them and sort unique
|
2018-05-08 13:11:01 +00:00
|
|
|
res=`cksum $OUTPUT/output_file_* | awk '{print $1}' | sort -u`
|
|
|
|
set -x
|
2018-05-11 10:48:23 +00:00
|
|
|
# Should be the same as the first
|
|
|
|
[ "$res" = "$ck1" ]
|
2018-05-08 13:11:01 +00:00
|
|
|
}
|
2018-04-25 12:58:19 +00:00
|
|
|
|
2018-05-11 10:48:23 +00:00
|
|
|
NUM_THREADS=6
|
|
|
|
NUM_ITER=200
|
2018-04-25 12:58:19 +00:00
|
|
|
OUTPUT=output
|
2018-05-01 13:24:42 +00:00
|
|
|
input=$ECCODES_SAMPLES_PATH/gg_sfc_grib2.tmpl
|
2018-05-11 10:48:23 +00:00
|
|
|
# input=$ECCODES_SAMPLES_PATH/gg_sfc_grib1.tmpl
|
2018-04-25 12:58:19 +00:00
|
|
|
|
2018-05-08 13:11:01 +00:00
|
|
|
rm -fr $temp_dir
|
|
|
|
mkdir -p $temp_dir
|
|
|
|
cd $temp_dir
|
|
|
|
|
2018-05-11 10:48:23 +00:00
|
|
|
# Test 01: Clone + output
|
2018-05-08 16:11:45 +00:00
|
|
|
# ------------------------
|
2018-05-08 13:11:01 +00:00
|
|
|
mkdir -p $OUTPUT
|
|
|
|
time ${test_dir}/grib_ecc-604-1 par $input $NUM_THREADS $NUM_ITER
|
|
|
|
validate
|
|
|
|
|
2018-05-08 16:11:45 +00:00
|
|
|
# Test 02: No clone + output
|
|
|
|
# --------------------------
|
2018-05-08 13:11:01 +00:00
|
|
|
rm -fr $OUTPUT
|
|
|
|
mkdir -p $OUTPUT
|
|
|
|
time ${test_dir}/grib_ecc-604-2 par $input $NUM_THREADS $NUM_ITER
|
|
|
|
validate
|
2018-05-01 13:24:42 +00:00
|
|
|
|
2018-05-11 10:48:23 +00:00
|
|
|
# Test 03: Clone + no output
|
2018-05-08 16:11:45 +00:00
|
|
|
# ---------------------------
|
|
|
|
rm -fr $OUTPUT
|
|
|
|
time ${test_dir}/grib_ecc-604-3 par $input $NUM_THREADS $NUM_ITER
|
|
|
|
|
2018-04-25 12:58:19 +00:00
|
|
|
|
|
|
|
# Clean up
|
|
|
|
cd $test_dir
|
2018-04-25 15:15:07 +00:00
|
|
|
rm -fr $temp_dir
|