Wenzel Jakob | 9e0a056 | 2016-05-05 20:33:54 +0200 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | from __future__ import print_function |
| 3 | import sys |
| 4 | sys.path.append('.') |
| 5 | |
| 6 | from example import fixed_r, fixed_c |
| 7 | from example import fixed_passthrough_r, fixed_passthrough_c |
| 8 | from example import dense_r, dense_c |
| 9 | from example import dense_passthrough_r, dense_passthrough_c |
| 10 | from example import sparse_r, sparse_c |
| 11 | from example import sparse_passthrough_r, sparse_passthrough_c |
Ben North | 4a22091 | 2016-07-05 20:03:02 +0100 | [diff] [blame] | 12 | from example import double_row, double_col |
Ben North | 7b8d9e0 | 2016-07-05 21:03:19 +0100 | [diff] [blame] | 13 | from example import double_mat_cm, double_mat_rm |
Jason Rhinelander | 5fd5074 | 2016-08-03 16:50:22 -0400 | [diff] [blame] | 14 | from example import cholesky1, cholesky2, cholesky3, cholesky4, cholesky5, cholesky6 |
Jason Rhinelander | 8657f30 | 2016-08-04 13:21:39 -0400 | [diff] [blame^] | 15 | from example import diagonal, diagonal_1, diagonal_n |
| 16 | from example import block |
Jason Rhinelander | 7de9f6c | 2016-07-08 17:44:12 -0400 | [diff] [blame] | 17 | try: |
| 18 | import numpy as np |
Jason Rhinelander | eae180c | 2016-07-12 14:16:46 -0400 | [diff] [blame] | 19 | import scipy |
Jason Rhinelander | 7de9f6c | 2016-07-08 17:44:12 -0400 | [diff] [blame] | 20 | except ImportError: |
| 21 | # NumPy missing: skip test |
| 22 | exit(99) |
Wenzel Jakob | 9e0a056 | 2016-05-05 20:33:54 +0200 | [diff] [blame] | 23 | |
| 24 | ref = np.array( |
| 25 | [[0, 3, 0, 0, 0, 11], |
| 26 | [22, 0, 0, 0, 17, 11], |
| 27 | [7, 5, 0, 1, 0, 11], |
| 28 | [0, 0, 0, 0, 0, 11], |
| 29 | [0, 0, 14, 0, 8, 11]]) |
| 30 | |
| 31 | |
| 32 | def check(mat): |
Ben North | 150a0fa | 2016-07-05 19:59:28 +0100 | [diff] [blame] | 33 | return 'OK' if np.sum(abs(mat - ref)) == 0 else 'NOT OK' |
Wenzel Jakob | 9e0a056 | 2016-05-05 20:33:54 +0200 | [diff] [blame] | 34 | |
Ben North | 676e298 | 2016-07-05 21:46:09 +0100 | [diff] [blame] | 35 | print("should_give_NOT_OK = %s" % check(ref[:, ::-1])) |
| 36 | |
Wenzel Jakob | 9e0a056 | 2016-05-05 20:33:54 +0200 | [diff] [blame] | 37 | print("fixed_r = %s" % check(fixed_r())) |
| 38 | print("fixed_c = %s" % check(fixed_c())) |
| 39 | print("pt_r(fixed_r) = %s" % check(fixed_passthrough_r(fixed_r()))) |
| 40 | print("pt_c(fixed_c) = %s" % check(fixed_passthrough_c(fixed_c()))) |
| 41 | print("pt_r(fixed_c) = %s" % check(fixed_passthrough_r(fixed_c()))) |
| 42 | print("pt_c(fixed_r) = %s" % check(fixed_passthrough_c(fixed_r()))) |
| 43 | |
| 44 | print("dense_r = %s" % check(dense_r())) |
| 45 | print("dense_c = %s" % check(dense_c())) |
| 46 | print("pt_r(dense_r) = %s" % check(dense_passthrough_r(dense_r()))) |
| 47 | print("pt_c(dense_c) = %s" % check(dense_passthrough_c(dense_c()))) |
| 48 | print("pt_r(dense_c) = %s" % check(dense_passthrough_r(dense_c()))) |
| 49 | print("pt_c(dense_r) = %s" % check(dense_passthrough_c(dense_r()))) |
| 50 | |
| 51 | print("sparse_r = %s" % check(sparse_r())) |
| 52 | print("sparse_c = %s" % check(sparse_c())) |
| 53 | print("pt_r(sparse_r) = %s" % check(sparse_passthrough_r(sparse_r()))) |
| 54 | print("pt_c(sparse_c) = %s" % check(sparse_passthrough_c(sparse_c()))) |
| 55 | print("pt_r(sparse_c) = %s" % check(sparse_passthrough_r(sparse_c()))) |
| 56 | print("pt_c(sparse_r) = %s" % check(sparse_passthrough_c(sparse_r()))) |
Ben North | 4a22091 | 2016-07-05 20:03:02 +0100 | [diff] [blame] | 57 | |
| 58 | def check_got_vs_ref(got_x, ref_x): |
| 59 | return 'OK' if np.array_equal(got_x, ref_x) else 'NOT OK' |
| 60 | |
| 61 | counting_mat = np.arange(9.0, dtype=np.float32).reshape((3, 3)) |
| 62 | first_row = counting_mat[0, :] |
| 63 | first_col = counting_mat[:, 0] |
| 64 | |
| 65 | print("double_row(first_row) = %s" % check_got_vs_ref(double_row(first_row), 2.0 * first_row)) |
| 66 | print("double_col(first_row) = %s" % check_got_vs_ref(double_col(first_row), 2.0 * first_row)) |
| 67 | print("double_row(first_col) = %s" % check_got_vs_ref(double_row(first_col), 2.0 * first_col)) |
| 68 | print("double_col(first_col) = %s" % check_got_vs_ref(double_col(first_col), 2.0 * first_col)) |
Ben North | 7b8d9e0 | 2016-07-05 21:03:19 +0100 | [diff] [blame] | 69 | |
| 70 | counting_3d = np.arange(27.0, dtype=np.float32).reshape((3, 3, 3)) |
| 71 | slices = [counting_3d[0, :, :], counting_3d[:, 0, :], counting_3d[:, :, 0]] |
| 72 | |
| 73 | for slice_idx, ref_mat in enumerate(slices): |
| 74 | print("double_mat_cm(%d) = %s" % (slice_idx, check_got_vs_ref(double_mat_cm(ref_mat), 2.0 * ref_mat))) |
| 75 | print("double_mat_rm(%d) = %s" % (slice_idx, check_got_vs_ref(double_mat_rm(ref_mat), 2.0 * ref_mat))) |
Jason Rhinelander | 5fd5074 | 2016-08-03 16:50:22 -0400 | [diff] [blame] | 76 | |
| 77 | i = 1 |
| 78 | for chol in [cholesky1, cholesky2, cholesky3, cholesky4, cholesky5, cholesky6]: |
| 79 | mymat = chol(np.array([[1,2,4], [2,13,23], [4,23,77]])) |
| 80 | print("cholesky" + str(i) + " " + ("OK" if (mymat == np.array([[1,0,0], [2,3,0], [4,5,6]])).all() else "NOT OKAY")) |
| 81 | i += 1 |
| 82 | |
Jason Rhinelander | 8657f30 | 2016-08-04 13:21:39 -0400 | [diff] [blame^] | 83 | print("diagonal() %s" % ("OK" if (diagonal(ref) == ref.diagonal()).all() else "FAILED")) |
| 84 | print("diagonal_1() %s" % ("OK" if (diagonal_1(ref) == ref.diagonal(1)).all() else "FAILED")) |
| 85 | for i in range(-5, 7): |
| 86 | print("diagonal_n(%d) %s" % (i, "OK" if (diagonal_n(ref, i) == ref.diagonal(i)).all() else "FAILED")) |
| 87 | |
| 88 | print("block(2,1,3,3) %s" % ("OK" if (block(ref, 2, 1, 3, 3) == ref[2:5, 1:4]).all() else "FAILED")) |
| 89 | print("block(1,4,4,2) %s" % ("OK" if (block(ref, 1, 4, 4, 2) == ref[1:, 4:]).all() else "FAILED")) |
| 90 | print("block(1,4,3,2) %s" % ("OK" if (block(ref, 1, 4, 3, 2) == ref[1:4, 4:]).all() else "FAILED")) |