aboutsummaryrefslogtreecommitdiff
path: root/unittest/compare_floats.c
diff options
context:
space:
mode:
authorAuthor Name <[email protected]>2023-07-07 12:20:59 +0930
committerDavid Rowe <[email protected]>2023-07-07 12:29:06 +0930
commitac7c48b4dee99d4c772f133d70d8d1b38262fcd2 (patch)
treea2d0ace57a9c0e2e5b611c4987f6fed1b38b81e7 /unittest/compare_floats.c
shallow zip-file copy from codec2 e9d726bf20
Diffstat (limited to 'unittest/compare_floats.c')
-rw-r--r--unittest/compare_floats.c89
1 files changed, 89 insertions, 0 deletions
diff --git a/unittest/compare_floats.c b/unittest/compare_floats.c
new file mode 100644
index 0000000..572ce16
--- /dev/null
+++ b/unittest/compare_floats.c
@@ -0,0 +1,89 @@
+/* compare floats - a test utility */
+
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <getopt.h>
+#include <math.h>
+#include <errno.h>
+
+/* Declarations */
+
+/* Globals */
+
+/* Main */
+
+int main(int argc, char *argv[]) {
+
+ char usage[] = "Usage: %s [-t tolerance] file1 file2\n";
+
+ float tol = .001;
+
+ int opt;
+ while ((opt = getopt(argc, argv, "t:")) != -1) {
+ switch (opt) {
+ case 't':
+ tol = atof(optarg);
+ break;
+ default:
+ fprintf(stderr, usage, argv[0]);
+ exit(1);
+ }
+ }
+
+ if ((optind + 2) > argc) {
+ fprintf(stderr, usage, argv[0]);
+ exit(1);
+ }
+ char *fname1 = argv[optind++];
+ char *fname2 = argv[optind++];
+
+ FILE *f1 = fopen(fname1, "rb");
+ if (f1 == NULL) {
+ fprintf(stderr, "Error opening file1 \"%s\": ", fname1);
+ perror(NULL);
+ exit(1);
+ }
+
+ FILE *f2 = fopen(fname2, "rb");
+ if (f2 == NULL) {
+ fprintf(stderr, "Error opening file2 \"%s\": ", fname2);
+ perror(NULL);
+ exit(1);
+ }
+
+ float data1, data2;
+ int count = 0;
+ int errors = 0;
+ double rms_sum = 0;
+
+ while (fread(&data1, sizeof(float), 1, f1)) {
+ if (!fread(&data2, sizeof(float), 1, f2)) {
+ fprintf(stderr, "Error: file2 is shorter!");
+ exit(1);
+ }
+ float err = fabsf((data1 - data2) / data1);
+ if (err > tol) {
+ errors ++;
+ printf("%d %g %g %g\n", count, data1, data2, err);
+ }
+ rms_sum += (err * err);
+ count ++;
+ }
+ if (fread(&data2, sizeof(float), 1, f2)) {
+ fprintf(stderr, "Error: file1 is shorter\n");
+ exit(1);
+ }
+
+ if (errors) {
+ printf("Fail: %d errors\n", errors);
+ printf(" rms error = %g\n", ((double)rms_sum/count));
+ exit(1);
+ }
+ else printf("Pass\n");
+ exit(0);
+
+ } // main
+
+
+/* vi:set ts=4 et sts=4: */