Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | Copyright (c) 2005 Eliot Dresselhaus |
| 17 | |
| 18 | Permission is hereby granted, free of charge, to any person obtaining |
| 19 | a copy of this software and associated documentation files (the |
| 20 | "Software"), to deal in the Software without restriction, including |
| 21 | without limitation the rights to use, copy, modify, merge, publish, |
| 22 | distribute, sublicense, and/or sell copies of the Software, and to |
| 23 | permit persons to whom the Software is furnished to do so, subject to |
| 24 | the following conditions: |
| 25 | |
| 26 | The above copyright notice and this permission notice shall be |
| 27 | included in all copies or substantial portions of the Software. |
| 28 | |
| 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 30 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 31 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 32 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 33 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 34 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 35 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 36 | */ |
| 37 | |
| 38 | #include <vppinfra/zvec.h> |
| 39 | #include <vppinfra/format.h> |
| 40 | #include <vppinfra/random.h> |
| 41 | |
| 42 | static int verbose; |
| 43 | #define if_verbose(format,args...) \ |
| 44 | if (verbose) { clib_warning(format, ## args); } |
| 45 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 46 | int |
| 47 | test_zvec_main (unformat_input_t * input) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | { |
| 49 | uword n_iterations; |
| 50 | uword i; |
| 51 | u32 seed; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 52 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 53 | n_iterations = 1024; |
| 54 | seed = 0; |
| 55 | |
| 56 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 57 | { |
| 58 | if (0 == unformat (input, "iter %d", &n_iterations) |
| 59 | && 0 == unformat (input, "seed %d", &seed)) |
| 60 | clib_error ("unknown input `%U'", format_unformat_error, input); |
| 61 | } |
| 62 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 63 | if_verbose ("%d iterations, seed %d\n", n_iterations, seed); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | |
| 65 | for (i = 0; i < n_iterations; i++) |
| 66 | { |
| 67 | uword coding, data, d[2], limit, n_zdata_bits[2]; |
| 68 | |
| 69 | if (seed) |
| 70 | coding = random_u32 (&seed); |
| 71 | else |
| 72 | coding = i; |
| 73 | |
| 74 | limit = coding - 1; |
| 75 | if (limit > (1 << 16)) |
| 76 | limit = 1 << 16; |
| 77 | for (data = 0; data <= limit; data++) |
| 78 | { |
| 79 | d[0] = zvec_encode (coding, data, &n_zdata_bits[0]); |
| 80 | |
| 81 | if (coding != 0) |
| 82 | ASSERT ((d[0] >> n_zdata_bits[0]) == 0); |
| 83 | |
| 84 | d[1] = zvec_decode (coding, d[0], &n_zdata_bits[1]); |
| 85 | ASSERT (data == d[1]); |
| 86 | |
| 87 | ASSERT (n_zdata_bits[0] == n_zdata_bits[1]); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | #ifdef CLIB_UNIX |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 95 | int |
| 96 | main (int argc, char *argv[]) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 97 | { |
| 98 | unformat_input_t i; |
| 99 | int ret; |
| 100 | |
Damjan Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 101 | clib_mem_init (0, 64ULL << 20); |
| 102 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 103 | verbose = (argc > 1); |
| 104 | unformat_init_command_line (&i, argv); |
| 105 | ret = test_zvec_main (&i); |
| 106 | unformat_free (&i); |
| 107 | |
| 108 | return ret; |
| 109 | } |
| 110 | #endif /* CLIB_UNIX */ |
| 111 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 112 | |
| 113 | /* |
| 114 | * fd.io coding-style-patch-verification: ON |
| 115 | * |
| 116 | * Local Variables: |
| 117 | * eval: (c-set-style "gnu") |
| 118 | * End: |
| 119 | */ |