├── .gitattributes ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── embedding_bag ├── 2021 ├── fbgemm_t856_bs65536.pt.gz ├── fbgemm_t856_bs65536_0.pt.gz ├── fbgemm_t856_bs65536_1.pt.gz ├── fbgemm_t856_bs65536_10.pt.gz ├── fbgemm_t856_bs65536_11.pt.gz ├── fbgemm_t856_bs65536_12.pt.gz ├── fbgemm_t856_bs65536_13.pt.gz ├── fbgemm_t856_bs65536_14.pt.gz ├── fbgemm_t856_bs65536_15.pt.gz ├── fbgemm_t856_bs65536_2.pt.gz ├── fbgemm_t856_bs65536_3.pt.gz ├── fbgemm_t856_bs65536_4.pt.gz ├── fbgemm_t856_bs65536_5.pt.gz ├── fbgemm_t856_bs65536_6.pt.gz ├── fbgemm_t856_bs65536_7.pt.gz ├── fbgemm_t856_bs65536_8.pt.gz ├── fbgemm_t856_bs65536_9.pt.gz └── locality_stats.txt └── 2022 ├── fbgemm_t788_bs131072_0.pt.gz ├── fbgemm_t788_bs131072_1.pt.gz ├── fbgemm_t788_bs131072_10.pt.gz ├── fbgemm_t788_bs131072_11.pt.gz ├── fbgemm_t788_bs131072_12.pt.gz ├── fbgemm_t788_bs131072_13.pt.gz ├── fbgemm_t788_bs131072_14.pt.gz ├── fbgemm_t788_bs131072_15.pt.gz ├── fbgemm_t788_bs131072_2.pt.gz ├── fbgemm_t788_bs131072_3.pt.gz ├── fbgemm_t788_bs131072_4.pt.gz ├── fbgemm_t788_bs131072_5.pt.gz ├── fbgemm_t788_bs131072_6.pt.gz ├── fbgemm_t788_bs131072_7.pt.gz ├── fbgemm_t788_bs131072_8.pt.gz ├── fbgemm_t788_bs131072_9.pt.gz └── locality_stats.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pt filter=lfs diff=lfs merge=lfs -text 2 | *.gz filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | Facebook has adopted a Code of Conduct that we expect project participants to adhere to. 4 | Please read the [full text](https://code.fb.com/codeofconduct/) 5 | so that you can understand what actions will and will not be tolerated. 6 | 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to DLRM datasets 2 | We want to make contributing to this project as easy and transparent as 3 | possible. 4 | 5 | ## Pull Requests 6 | We actively welcome your pull requests. 7 | 8 | 1. Fork the repo and create your branch from `main`. 9 | 2. If you've added code that should be tested, add tests. 10 | 3. If you've changed APIs, update the documentation. 11 | 4. Ensure the test suite passes. 12 | 5. Make sure your code lints. 13 | 6. If you haven't already, complete the Contributor License Agreement ("CLA"). 14 | 15 | ## Contributor License Agreement ("CLA") 16 | In order to accept your pull request, we need you to submit a CLA. You only need 17 | to do this once to work on any of Facebook's open source projects. 18 | 19 | Complete your CLA here: 20 | 21 | ## Issues 22 | We use GitHub issues to track public bugs. Please ensure your description is 23 | clear and has sufficient instructions to be able to reproduce the issue. 24 | 25 | Facebook has a [bounty program](https://www.facebook.com/whitehat/) for the safe 26 | disclosure of security bugs. In those cases, please go through the process 27 | outlined on that page and do not file a public issue. 28 | 29 | ## Coding Style 30 | * 2 spaces for indentation rather than tabs 31 | * 80 character line length 32 | * In general, please maintain a consistent style with the rest of the code 33 | 34 | ## License 35 | By contributing to DLRM datasets, you agree that your contributions will be licensed 36 | under the LICENSE file in the root directory of this source tree. 37 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Facebook, Inc. and its affiliates. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Embedding lookup synthetic dataset 2 | ## Description 3 | A synthetic dataset comprised of input data for embedding lookup layers arising 4 | in recommendation models, such as [DLRM](https://github.com/facebookresearch/dlrm), 5 | that shares memory access reuse patterns similar to those arising in Meta 6 | production recommendation workloads. 7 | 8 | ``` 9 | Emb_out(F) Emb_in(E) Indices(I) Lengths(L) Weights(W) [optional] 10 | ------------ /-- ------------ - - - --\ 11 | | | | | | | | | | | | | 12 | | | = Op < | | , | | , | | , | | > 13 | | | | | | | | | | | | | 14 | ------------ | | | | | - | | | 15 | | | | | | | | | 16 | | ____________ | | | | | 17 | | | | | | | 18 | | | | | | | 19 | \-- _ _ --/ 20 | ``` 21 | 22 | Each output embedding is the result of combining input embedding at locations 23 | specified by values in the Indices vector and aggregated according to the values 24 | in the Lengths vector (optionally weighted by values in the Weights vector). 25 | 26 | Mathematically, each output embedding vector is computed as 27 | ``` 28 | F_i = \sum_{j \in range(L_i) + P_{i}} E_{I_j} * W_{I_j} 29 | ``` 30 | where `P_i` denotes the prefix sum of `L` up to index `i` (or "Offsets"): `P_i = \sum_{j \in range(i-1)} L_j`. 31 | In practice, the Lengths vector is stored in the form of Offsets to reduce complexity of the operator. 32 | 33 | ## Usage 34 | The synthetic dataset provided in this project serves as sample inputs for the Indices and Offsets vectors; 35 | the corresponding Lengths vector is provided for correctness validation as well. Each `pt` file contains an 36 | independently generated synthetic dataset with batch size and the number of tables specified in the filename. 37 | For example, the dataset `fbgemm_t856_bs65536.pt.gz` represents a single batch of 65536 samples for 856 tables. 38 | To load the synthetic dataset, 39 | 40 | ```python 41 | import gzip 42 | import torch 43 | 44 | with gzip.open("../dlrm_datasets/embedding_bag/2021/fbgemm_t856_bs65536.pt.gz") as f: 45 | indices, offsets, lengths = torch.load(f) 46 | ``` 47 | 48 | The intent of this data is to support researchers and system designers with data representative of the memory access patterns observed during training of Meta's production ads models in order to offer guidance for their work in improving software computing solutions and hardware design. 49 | 50 | ### FBGemm 51 | These datasets serve as input to the [`split_table_batched_embeddings`](https://github.com/pytorch/FBGEMM/blob/main/fbgemm_gpu/bench/split_table_batched_embeddings_benchmark.py) 52 | benchmark, a part of the [FBGemm project](https://github.com/pytorch/FBGEMM). For those interested 53 | in benchmarking subsets of the tables provided in the dataset, a 54 | [batch execution script](https://github.com/pytorch/FBGEMM/tree/main/fbgemm_gpu/bench/scripts) has 55 | been added to the project as well. 56 | 57 | ## Reuse pattern 58 | Datasets in this project are accompanied by the observed reuse factor of unique 59 | indices found in the dataset, represented as a histogram. Consider the following 60 | histogram of reuse factors: 61 | 62 | ``` 63 | Reuse factor: Proportion of data in bin 64 | (0, 1]: 0.069 65 | (1, 2]: 0.044 66 | (2, 4]: 0.068 67 | (4, 8]: 0.101 68 | (8, 16]: 0.121 69 | (16, 32]: 0.104 70 | (32, 64]: 0.073 71 | (64, 128]: 0.058 72 | (128, 256]: 0.052 73 | (256, 512]: 0.050 74 | (512, 1024]: 0.049 75 | (1024, 2048]: 0.048 76 | (2048, 4096]: 0.048 77 | (4096, 8192]: 0.043 78 | (8192, 16384]: 0.031 79 | (16384, 32768]: 0.023 80 | (32768+: 0.019 81 | ``` 82 | 83 | Each bin reflects a range of reuse factors and the value corresponds to the 84 | proportion of data found to have the given reuse factor. Datasets in this project 85 | have been chosen as their reuse factor distributions reflect those found in production 86 | workloads. 87 | 88 | Lengths vector values are not held to as high of a standard; however, synthetic data for this vector 89 | is also designed to align closely with values arising in production. 90 | 91 | ## Source data 92 | The production data used as source for this synthetic data is post-hashed data and has been de-identified to 93 | further preserve its integrity. 94 | 95 | License 96 | ------- 97 | This source code is licensed under the MIT license found in the 98 | LICENSE file in the root directory of this source tree. 99 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d4d3ca295fade795cbf973d9b29e721b7c76a2130684582d9f4ab579c95e772 3 | size 2398183998 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_0.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8d2e7eb4f26b85daf8e95075486d740734a3233459c0b227cb7f3196d9d49cdc 3 | size 1174963458 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_1.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17a76b72dd1bd5f338b8e8aa609efbfe785d88bca55398d466d5e5191fe3b321 3 | size 1175261296 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_10.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1dcb701d1fee791b40843c864df99ff95b01c42ecb4925231d4c0f2e36a2643 3 | size 1175070108 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_11.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0a39d13cad4c8df4c56241f37dd7e8a2e7f7157153afaa5d7d357dec7a48c19 3 | size 1175474551 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_12.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:266842231605b69cff15bd698b83c5de4c970f13fea2e5b4614188c0cea1cbdf 3 | size 1175048861 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_13.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8668818ab0388b9d8136fbb17b745bb09fe82828b97613244bc0846d7047b18 3 | size 1175532521 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_14.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3fdf341a5152fba91d4daecd9b2852f80563ffeca4373d2b14ad02fb6de20b24 3 | size 1175173839 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_15.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be6300f7a055a159fae3388215722c34b61d7d48bc861023b7aad78ee535b284 3 | size 1175092271 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_2.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6460f05538f5073fc61944094456e51566fc174b1dacf2d3aedfcefc71271792 3 | size 1175056411 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_3.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b56678f003e1bdfae050d631f69a2ef461eb54fe2ca1c05ba3718add910fb9b 3 | size 1175286772 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_4.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44a997791535224f7a58e4e448f416f5c2f4ad9342fba7d688bef2c8b101af71 3 | size 1175540079 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_5.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6494ab731aa0e00db66419cc4c329dac455bf3ad3f0135bb635ddfdfc551e8d4 3 | size 1175485258 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_6.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6983974d428211b3db1446ca3752ccb7646bcd09eaa3143f1c7f0d22568b1b87 3 | size 1175554665 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_7.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f9155d6f856bd7dfe4f726cab7db97db546eaf49be73806d5b80164545f8e9a3 3 | size 1175219681 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_8.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1a01fe69b2750ccd764e862a490a213b592396c8f8f7d51d2dbb6065ca844fe 3 | size 1175341572 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/fbgemm_t856_bs65536_9.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d63ffd2524a853edda91ef85596c9520a6825d9ea650a73637ae27e3cf91d4d0 3 | size 1175374357 4 | -------------------------------------------------------------------------------- /embedding_bag/2021/locality_stats.txt: -------------------------------------------------------------------------------- 1 | fbgemm_t856_bs65536.pt 2 | Locality stats after processing 1 batches of size 65536 3 | Avg # of indices: 887017990 4 | Avg # of unique cols: 128435723 5 | Avg col size: 6.9 6 | Histogram of col sizes: 7 | (0, 1]: 0.473 8 | (1, 2]: 0.152 9 | (2, 4]: 0.139 10 | (4, 8]: 0.112 11 | (8, 16]: 0.072 12 | (16, 32]: 0.032 13 | (32, 64]: 0.011 14 | (64, 128]: 0.005 15 | (128, 256]: 0.002 16 | (256, 512]: 0.001 17 | (512, 1024]: 0.000 18 | (1024, 2048]: 0.000 19 | (2048, 4096]: 0.000 20 | (4096, 8192]: 0.000 21 | (8192, 16384]: 0.000 22 | (16384, 32768]: 0.000 23 | (32768+: 0.000 24 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 25 | ['0.000', '0.473', '0.625', '0.764', '0.876', '0.948', '0.980', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 26 | Ratio of index distribution at different column sizes: 27 | (0, 1]: 0.069 28 | (1, 2]: 0.044 29 | (2, 4]: 0.068 30 | (4, 8]: 0.101 31 | (8, 16]: 0.121 32 | (16, 32]: 0.104 33 | (32, 64]: 0.073 34 | (64, 128]: 0.058 35 | (128, 256]: 0.052 36 | (256, 512]: 0.050 37 | (512, 1024]: 0.049 38 | (1024, 2048]: 0.048 39 | (2048, 4096]: 0.048 40 | (4096, 8192]: 0.043 41 | (8192, 16384]: 0.031 42 | (16384, 32768]: 0.023 43 | (32768+: 0.019 44 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 45 | ['0.000', '0.069', '0.112', '0.181', '0.281', '0.402', '0.506', '0.580', '0.637', '0.689', '0.739', '0.787', '0.835', '0.883', '0.926', '0.957', '0.981', '1.000'] 46 | 47 | fbgemm_t856_bs65536_0.pt 48 | Locality stats after processing 1 batches of size 65536 49 | Avg # of indices: 468084223 50 | Avg # of unique cols: 61644628 51 | Avg col size: 7.6 52 | Histogram of col sizes: 53 | (0, 1]: 0.423 54 | (1, 2]: 0.165 55 | (2, 4]: 0.167 56 | (4, 8]: 0.121 57 | (8, 16]: 0.073 58 | (16, 32]: 0.031 59 | (32, 64]: 0.011 60 | (64, 128]: 0.004 61 | (128, 256]: 0.002 62 | (256, 512]: 0.001 63 | (512, 1024]: 0.001 64 | (1024, 2048]: 0.000 65 | (2048, 4096]: 0.000 66 | (4096, 8192]: 0.000 67 | (8192, 16384]: 0.000 68 | (16384, 32768]: 0.000 69 | (32768+: 0.000 70 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 71 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 72 | Ratio of index distribution at different column sizes: 73 | (0, 1]: 0.056 74 | (1, 2]: 0.043 75 | (2, 4]: 0.075 76 | (4, 8]: 0.099 77 | (8, 16]: 0.112 78 | (16, 32]: 0.091 79 | (32, 64]: 0.064 80 | (64, 128]: 0.052 81 | (128, 256]: 0.049 82 | (256, 512]: 0.050 83 | (512, 1024]: 0.054 84 | (1024, 2048]: 0.058 85 | (2048, 4096]: 0.061 86 | (4096, 8192]: 0.052 87 | (8192, 16384]: 0.038 88 | (16384, 32768]: 0.026 89 | (32768+: 0.020 90 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 91 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.475', '0.539', '0.591', '0.640', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 92 | 93 | fbgemm_t856_bs65536_1.pt 94 | Locality stats after processing 1 batches of size 65536 95 | Avg # of indices: 468182911 96 | Avg # of unique cols: 61659055 97 | Avg col size: 7.6 98 | Histogram of col sizes: 99 | (0, 1]: 0.423 100 | (1, 2]: 0.165 101 | (2, 4]: 0.167 102 | (4, 8]: 0.121 103 | (8, 16]: 0.073 104 | (16, 32]: 0.031 105 | (32, 64]: 0.011 106 | (64, 128]: 0.004 107 | (128, 256]: 0.002 108 | (256, 512]: 0.001 109 | (512, 1024]: 0.001 110 | (1024, 2048]: 0.000 111 | (2048, 4096]: 0.000 112 | (4096, 8192]: 0.000 113 | (8192, 16384]: 0.000 114 | (16384, 32768]: 0.000 115 | (32768+: 0.000 116 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 117 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 118 | Ratio of index distribution at different column sizes: 119 | (0, 1]: 0.056 120 | (1, 2]: 0.043 121 | (2, 4]: 0.075 122 | (4, 8]: 0.099 123 | (8, 16]: 0.112 124 | (16, 32]: 0.091 125 | (32, 64]: 0.064 126 | (64, 128]: 0.052 127 | (128, 256]: 0.049 128 | (256, 512]: 0.050 129 | (512, 1024]: 0.054 130 | (1024, 2048]: 0.058 131 | (2048, 4096]: 0.060 132 | (4096, 8192]: 0.052 133 | (8192, 16384]: 0.038 134 | (16384, 32768]: 0.026 135 | (32768+: 0.020 136 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 137 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.476', '0.539', '0.592', '0.641', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 138 | 139 | fbgemm_t856_bs65536_2.pt 140 | Locality stats after processing 1 batches of size 65536 141 | Avg # of indices: 468077254 142 | Avg # of unique cols: 61657355 143 | Avg col size: 7.6 144 | Histogram of col sizes: 145 | (0, 1]: 0.423 146 | (1, 2]: 0.165 147 | (2, 4]: 0.167 148 | (4, 8]: 0.121 149 | (8, 16]: 0.073 150 | (16, 32]: 0.031 151 | (32, 64]: 0.011 152 | (64, 128]: 0.004 153 | (128, 256]: 0.002 154 | (256, 512]: 0.001 155 | (512, 1024]: 0.001 156 | (1024, 2048]: 0.000 157 | (2048, 4096]: 0.000 158 | (4096, 8192]: 0.000 159 | (8192, 16384]: 0.000 160 | (16384, 32768]: 0.000 161 | (32768+: 0.000 162 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 163 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 164 | Ratio of index distribution at different column sizes: 165 | (0, 1]: 0.056 166 | (1, 2]: 0.043 167 | (2, 4]: 0.075 168 | (4, 8]: 0.099 169 | (8, 16]: 0.112 170 | (16, 32]: 0.091 171 | (32, 64]: 0.064 172 | (64, 128]: 0.052 173 | (128, 256]: 0.049 174 | (256, 512]: 0.050 175 | (512, 1024]: 0.054 176 | (1024, 2048]: 0.058 177 | (2048, 4096]: 0.061 178 | (4096, 8192]: 0.052 179 | (8192, 16384]: 0.038 180 | (16384, 32768]: 0.026 181 | (32768+: 0.020 182 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 183 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.476', '0.539', '0.591', '0.640', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 184 | 185 | fbgemm_t856_bs65536_3.pt 186 | Locality stats after processing 1 batches of size 65536 187 | Avg # of indices: 468165888 188 | Avg # of unique cols: 61660428 189 | Avg col size: 7.6 190 | Histogram of col sizes: 191 | (0, 1]: 0.423 192 | (1, 2]: 0.165 193 | (2, 4]: 0.167 194 | (4, 8]: 0.121 195 | (8, 16]: 0.073 196 | (16, 32]: 0.031 197 | (32, 64]: 0.011 198 | (64, 128]: 0.004 199 | (128, 256]: 0.002 200 | (256, 512]: 0.001 201 | (512, 1024]: 0.001 202 | (1024, 2048]: 0.000 203 | (2048, 4096]: 0.000 204 | (4096, 8192]: 0.000 205 | (8192, 16384]: 0.000 206 | (16384, 32768]: 0.000 207 | (32768+: 0.000 208 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 209 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 210 | Ratio of index distribution at different column sizes: 211 | (0, 1]: 0.056 212 | (1, 2]: 0.043 213 | (2, 4]: 0.075 214 | (4, 8]: 0.099 215 | (8, 16]: 0.112 216 | (16, 32]: 0.091 217 | (32, 64]: 0.064 218 | (64, 128]: 0.052 219 | (128, 256]: 0.049 220 | (256, 512]: 0.050 221 | (512, 1024]: 0.054 222 | (1024, 2048]: 0.058 223 | (2048, 4096]: 0.061 224 | (4096, 8192]: 0.052 225 | (8192, 16384]: 0.038 226 | (16384, 32768]: 0.026 227 | (32768+: 0.020 228 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 229 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.476', '0.539', '0.592', '0.641', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 230 | 231 | fbgemm_t856_bs65536_4.pt 232 | Locality stats after processing 1 batches of size 65536 233 | Avg # of indices: 468246494 234 | Avg # of unique cols: 61655198 235 | Avg col size: 7.6 236 | Histogram of col sizes: 237 | (0, 1]: 0.423 238 | (1, 2]: 0.165 239 | (2, 4]: 0.167 240 | (4, 8]: 0.121 241 | (8, 16]: 0.073 242 | (16, 32]: 0.031 243 | (32, 64]: 0.011 244 | (64, 128]: 0.004 245 | (128, 256]: 0.002 246 | (256, 512]: 0.001 247 | (512, 1024]: 0.001 248 | (1024, 2048]: 0.000 249 | (2048, 4096]: 0.000 250 | (4096, 8192]: 0.000 251 | (8192, 16384]: 0.000 252 | (16384, 32768]: 0.000 253 | (32768+: 0.000 254 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 255 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 256 | Ratio of index distribution at different column sizes: 257 | (0, 1]: 0.056 258 | (1, 2]: 0.043 259 | (2, 4]: 0.075 260 | (4, 8]: 0.099 261 | (8, 16]: 0.112 262 | (16, 32]: 0.091 263 | (32, 64]: 0.064 264 | (64, 128]: 0.052 265 | (128, 256]: 0.049 266 | (256, 512]: 0.050 267 | (512, 1024]: 0.054 268 | (1024, 2048]: 0.058 269 | (2048, 4096]: 0.061 270 | (4096, 8192]: 0.052 271 | (8192, 16384]: 0.038 272 | (16384, 32768]: 0.026 273 | (32768+: 0.020 274 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 275 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.476', '0.539', '0.592', '0.641', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 276 | 277 | fbgemm_t856_bs65536_5.pt 278 | Locality stats after processing 1 batches of size 65536 279 | Avg # of indices: 468239312 280 | Avg # of unique cols: 61655089 281 | Avg col size: 7.6 282 | Histogram of col sizes: 283 | (0, 1]: 0.423 284 | (1, 2]: 0.165 285 | (2, 4]: 0.167 286 | (4, 8]: 0.121 287 | (8, 16]: 0.073 288 | (16, 32]: 0.031 289 | (32, 64]: 0.011 290 | (64, 128]: 0.004 291 | (128, 256]: 0.002 292 | (256, 512]: 0.001 293 | (512, 1024]: 0.001 294 | (1024, 2048]: 0.000 295 | (2048, 4096]: 0.000 296 | (4096, 8192]: 0.000 297 | (8192, 16384]: 0.000 298 | (16384, 32768]: 0.000 299 | (32768+: 0.000 300 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 301 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 302 | Ratio of index distribution at different column sizes: 303 | (0, 1]: 0.056 304 | (1, 2]: 0.043 305 | (2, 4]: 0.075 306 | (4, 8]: 0.099 307 | (8, 16]: 0.112 308 | (16, 32]: 0.091 309 | (32, 64]: 0.064 310 | (64, 128]: 0.052 311 | (128, 256]: 0.049 312 | (256, 512]: 0.050 313 | (512, 1024]: 0.054 314 | (1024, 2048]: 0.058 315 | (2048, 4096]: 0.060 316 | (4096, 8192]: 0.052 317 | (8192, 16384]: 0.038 318 | (16384, 32768]: 0.026 319 | (32768+: 0.020 320 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 321 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.476', '0.539', '0.592', '0.641', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 322 | 323 | fbgemm_t856_bs65536_6.pt 324 | Locality stats after processing 1 batches of size 65536 325 | Avg # of indices: 468250737 326 | Avg # of unique cols: 61653276 327 | Avg col size: 7.6 328 | Histogram of col sizes: 329 | (0, 1]: 0.423 330 | (1, 2]: 0.165 331 | (2, 4]: 0.167 332 | (4, 8]: 0.121 333 | (8, 16]: 0.073 334 | (16, 32]: 0.031 335 | (32, 64]: 0.011 336 | (64, 128]: 0.004 337 | (128, 256]: 0.002 338 | (256, 512]: 0.001 339 | (512, 1024]: 0.001 340 | (1024, 2048]: 0.000 341 | (2048, 4096]: 0.000 342 | (4096, 8192]: 0.000 343 | (8192, 16384]: 0.000 344 | (16384, 32768]: 0.000 345 | (32768+: 0.000 346 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 347 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 348 | Ratio of index distribution at different column sizes: 349 | (0, 1]: 0.056 350 | (1, 2]: 0.043 351 | (2, 4]: 0.075 352 | (4, 8]: 0.099 353 | (8, 16]: 0.112 354 | (16, 32]: 0.091 355 | (32, 64]: 0.064 356 | (64, 128]: 0.052 357 | (128, 256]: 0.049 358 | (256, 512]: 0.050 359 | (512, 1024]: 0.054 360 | (1024, 2048]: 0.058 361 | (2048, 4096]: 0.061 362 | (4096, 8192]: 0.052 363 | (8192, 16384]: 0.038 364 | (16384, 32768]: 0.026 365 | (32768+: 0.020 366 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 367 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.476', '0.539', '0.592', '0.641', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 368 | 369 | fbgemm_t856_bs65536_7.pt 370 | Locality stats after processing 1 batches of size 65536 371 | Avg # of indices: 468186839 372 | Avg # of unique cols: 61650963 373 | Avg col size: 7.6 374 | Histogram of col sizes: 375 | (0, 1]: 0.423 376 | (1, 2]: 0.165 377 | (2, 4]: 0.167 378 | (4, 8]: 0.121 379 | (8, 16]: 0.073 380 | (16, 32]: 0.031 381 | (32, 64]: 0.011 382 | (64, 128]: 0.004 383 | (128, 256]: 0.002 384 | (256, 512]: 0.001 385 | (512, 1024]: 0.001 386 | (1024, 2048]: 0.000 387 | (2048, 4096]: 0.000 388 | (4096, 8192]: 0.000 389 | (8192, 16384]: 0.000 390 | (16384, 32768]: 0.000 391 | (32768+: 0.000 392 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 393 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 394 | Ratio of index distribution at different column sizes: 395 | (0, 1]: 0.056 396 | (1, 2]: 0.043 397 | (2, 4]: 0.075 398 | (4, 8]: 0.099 399 | (8, 16]: 0.112 400 | (16, 32]: 0.091 401 | (32, 64]: 0.064 402 | (64, 128]: 0.052 403 | (128, 256]: 0.049 404 | (256, 512]: 0.050 405 | (512, 1024]: 0.054 406 | (1024, 2048]: 0.058 407 | (2048, 4096]: 0.061 408 | (4096, 8192]: 0.052 409 | (8192, 16384]: 0.038 410 | (16384, 32768]: 0.026 411 | (32768+: 0.020 412 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 413 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.475', '0.539', '0.591', '0.640', '0.691', '0.745', '0.803', '0.863', '0.916', '0.954', '0.980', '1.000'] 414 | 415 | fbgemm_t856_bs65536_8.pt 416 | Locality stats after processing 1 batches of size 65536 417 | Avg # of indices: 468238298 418 | Avg # of unique cols: 61646655 419 | Avg col size: 7.6 420 | Histogram of col sizes: 421 | (0, 1]: 0.423 422 | (1, 2]: 0.165 423 | (2, 4]: 0.167 424 | (4, 8]: 0.121 425 | (8, 16]: 0.073 426 | (16, 32]: 0.031 427 | (32, 64]: 0.011 428 | (64, 128]: 0.004 429 | (128, 256]: 0.002 430 | (256, 512]: 0.001 431 | (512, 1024]: 0.001 432 | (1024, 2048]: 0.000 433 | (2048, 4096]: 0.000 434 | (4096, 8192]: 0.000 435 | (8192, 16384]: 0.000 436 | (16384, 32768]: 0.000 437 | (32768+: 0.000 438 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 439 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 440 | Ratio of index distribution at different column sizes: 441 | (0, 1]: 0.056 442 | (1, 2]: 0.043 443 | (2, 4]: 0.075 444 | (4, 8]: 0.099 445 | (8, 16]: 0.112 446 | (16, 32]: 0.091 447 | (32, 64]: 0.064 448 | (64, 128]: 0.052 449 | (128, 256]: 0.049 450 | (256, 512]: 0.050 451 | (512, 1024]: 0.054 452 | (1024, 2048]: 0.058 453 | (2048, 4096]: 0.061 454 | (4096, 8192]: 0.052 455 | (8192, 16384]: 0.038 456 | (16384, 32768]: 0.026 457 | (32768+: 0.020 458 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 459 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.384', '0.475', '0.539', '0.591', '0.640', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 460 | 461 | fbgemm_t856_bs65536_9.pt 462 | Locality stats after processing 1 batches of size 65536 463 | Avg # of indices: 468193886 464 | Avg # of unique cols: 61657881 465 | Avg col size: 7.6 466 | Histogram of col sizes: 467 | (0, 1]: 0.423 468 | (1, 2]: 0.165 469 | (2, 4]: 0.167 470 | (4, 8]: 0.121 471 | (8, 16]: 0.073 472 | (16, 32]: 0.031 473 | (32, 64]: 0.011 474 | (64, 128]: 0.004 475 | (128, 256]: 0.002 476 | (256, 512]: 0.001 477 | (512, 1024]: 0.001 478 | (1024, 2048]: 0.000 479 | (2048, 4096]: 0.000 480 | (4096, 8192]: 0.000 481 | (8192, 16384]: 0.000 482 | (16384, 32768]: 0.000 483 | (32768+: 0.000 484 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 485 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 486 | Ratio of index distribution at different column sizes: 487 | (0, 1]: 0.056 488 | (1, 2]: 0.043 489 | (2, 4]: 0.075 490 | (4, 8]: 0.099 491 | (8, 16]: 0.112 492 | (16, 32]: 0.091 493 | (32, 64]: 0.064 494 | (64, 128]: 0.052 495 | (128, 256]: 0.049 496 | (256, 512]: 0.050 497 | (512, 1024]: 0.054 498 | (1024, 2048]: 0.058 499 | (2048, 4096]: 0.061 500 | (4096, 8192]: 0.052 501 | (8192, 16384]: 0.038 502 | (16384, 32768]: 0.026 503 | (32768+: 0.020 504 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 505 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.476', '0.539', '0.592', '0.641', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 506 | 507 | fbgemm_t856_bs65536_10.pt 508 | Locality stats after processing 1 batches of size 65536 509 | Avg # of indices: 468162871 510 | Avg # of unique cols: 61648368 511 | Avg col size: 7.6 512 | Histogram of col sizes: 513 | (0, 1]: 0.423 514 | (1, 2]: 0.165 515 | (2, 4]: 0.167 516 | (4, 8]: 0.121 517 | (8, 16]: 0.073 518 | (16, 32]: 0.031 519 | (32, 64]: 0.011 520 | (64, 128]: 0.004 521 | (128, 256]: 0.002 522 | (256, 512]: 0.001 523 | (512, 1024]: 0.001 524 | (1024, 2048]: 0.000 525 | (2048, 4096]: 0.000 526 | (4096, 8192]: 0.000 527 | (8192, 16384]: 0.000 528 | (16384, 32768]: 0.000 529 | (32768+: 0.000 530 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 531 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 532 | Ratio of index distribution at different column sizes: 533 | (0, 1]: 0.056 534 | (1, 2]: 0.043 535 | (2, 4]: 0.075 536 | (4, 8]: 0.099 537 | (8, 16]: 0.112 538 | (16, 32]: 0.091 539 | (32, 64]: 0.064 540 | (64, 128]: 0.052 541 | (128, 256]: 0.049 542 | (256, 512]: 0.050 543 | (512, 1024]: 0.054 544 | (1024, 2048]: 0.058 545 | (2048, 4096]: 0.061 546 | (4096, 8192]: 0.052 547 | (8192, 16384]: 0.038 548 | (16384, 32768]: 0.026 549 | (32768+: 0.020 550 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 551 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.475', '0.539', '0.591', '0.640', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 552 | 553 | fbgemm_t856_bs65536_11.pt 554 | Locality stats after processing 1 batches of size 65536 555 | Avg # of indices: 468277587 556 | Avg # of unique cols: 61653879 557 | Avg col size: 7.6 558 | Histogram of col sizes: 559 | (0, 1]: 0.423 560 | (1, 2]: 0.165 561 | (2, 4]: 0.167 562 | (4, 8]: 0.121 563 | (8, 16]: 0.073 564 | (16, 32]: 0.031 565 | (32, 64]: 0.011 566 | (64, 128]: 0.004 567 | (128, 256]: 0.002 568 | (256, 512]: 0.001 569 | (512, 1024]: 0.001 570 | (1024, 2048]: 0.000 571 | (2048, 4096]: 0.000 572 | (4096, 8192]: 0.000 573 | (8192, 16384]: 0.000 574 | (16384, 32768]: 0.000 575 | (32768+: 0.000 576 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 577 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 578 | Ratio of index distribution at different column sizes: 579 | (0, 1]: 0.056 580 | (1, 2]: 0.043 581 | (2, 4]: 0.075 582 | (4, 8]: 0.099 583 | (8, 16]: 0.112 584 | (16, 32]: 0.091 585 | (32, 64]: 0.064 586 | (64, 128]: 0.052 587 | (128, 256]: 0.049 588 | (256, 512]: 0.050 589 | (512, 1024]: 0.054 590 | (1024, 2048]: 0.058 591 | (2048, 4096]: 0.061 592 | (4096, 8192]: 0.052 593 | (8192, 16384]: 0.038 594 | (16384, 32768]: 0.026 595 | (32768+: 0.020 596 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 597 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.475', '0.539', '0.591', '0.640', '0.691', '0.745', '0.803', '0.863', '0.916', '0.954', '0.980', '1.000'] 598 | 599 | fbgemm_t856_bs65536_12.pt 600 | Locality stats after processing 1 batches of size 65536 601 | Avg # of indices: 468097613 602 | Avg # of unique cols: 61651957 603 | Avg col size: 7.6 604 | Histogram of col sizes: 605 | (0, 1]: 0.423 606 | (1, 2]: 0.165 607 | (2, 4]: 0.167 608 | (4, 8]: 0.121 609 | (8, 16]: 0.073 610 | (16, 32]: 0.031 611 | (32, 64]: 0.011 612 | (64, 128]: 0.004 613 | (128, 256]: 0.002 614 | (256, 512]: 0.001 615 | (512, 1024]: 0.001 616 | (1024, 2048]: 0.000 617 | (2048, 4096]: 0.000 618 | (4096, 8192]: 0.000 619 | (8192, 16384]: 0.000 620 | (16384, 32768]: 0.000 621 | (32768+: 0.000 622 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 623 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 624 | Ratio of index distribution at different column sizes: 625 | (0, 1]: 0.056 626 | (1, 2]: 0.043 627 | (2, 4]: 0.075 628 | (4, 8]: 0.099 629 | (8, 16]: 0.112 630 | (16, 32]: 0.091 631 | (32, 64]: 0.064 632 | (64, 128]: 0.052 633 | (128, 256]: 0.049 634 | (256, 512]: 0.050 635 | (512, 1024]: 0.054 636 | (1024, 2048]: 0.058 637 | (2048, 4096]: 0.060 638 | (4096, 8192]: 0.052 639 | (8192, 16384]: 0.038 640 | (16384, 32768]: 0.026 641 | (32768+: 0.020 642 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 643 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.476', '0.539', '0.592', '0.641', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 644 | 645 | fbgemm_t856_bs65536_13.pt 646 | Locality stats after processing 1 batches of size 65536 647 | Avg # of indices: 468324632 648 | Avg # of unique cols: 61654254 649 | Avg col size: 7.6 650 | Histogram of col sizes: 651 | (0, 1]: 0.423 652 | (1, 2]: 0.165 653 | (2, 4]: 0.167 654 | (4, 8]: 0.121 655 | (8, 16]: 0.073 656 | (16, 32]: 0.031 657 | (32, 64]: 0.011 658 | (64, 128]: 0.004 659 | (128, 256]: 0.002 660 | (256, 512]: 0.001 661 | (512, 1024]: 0.001 662 | (1024, 2048]: 0.000 663 | (2048, 4096]: 0.000 664 | (4096, 8192]: 0.000 665 | (8192, 16384]: 0.000 666 | (16384, 32768]: 0.000 667 | (32768+: 0.000 668 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 669 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 670 | Ratio of index distribution at different column sizes: 671 | (0, 1]: 0.056 672 | (1, 2]: 0.043 673 | (2, 4]: 0.075 674 | (4, 8]: 0.099 675 | (8, 16]: 0.112 676 | (16, 32]: 0.091 677 | (32, 64]: 0.064 678 | (64, 128]: 0.052 679 | (128, 256]: 0.049 680 | (256, 512]: 0.050 681 | (512, 1024]: 0.054 682 | (1024, 2048]: 0.058 683 | (2048, 4096]: 0.060 684 | (4096, 8192]: 0.053 685 | (8192, 16384]: 0.038 686 | (16384, 32768]: 0.026 687 | (32768+: 0.020 688 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 689 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.384', '0.475', '0.539', '0.591', '0.640', '0.691', '0.745', '0.803', '0.863', '0.916', '0.954', '0.980', '1.000'] 690 | 691 | fbgemm_t856_bs65536_14.pt 692 | Locality stats after processing 1 batches of size 65536 693 | Avg # of indices: 468185691 694 | Avg # of unique cols: 61642618 695 | Avg col size: 7.6 696 | Histogram of col sizes: 697 | (0, 1]: 0.423 698 | (1, 2]: 0.165 699 | (2, 4]: 0.167 700 | (4, 8]: 0.121 701 | (8, 16]: 0.073 702 | (16, 32]: 0.031 703 | (32, 64]: 0.011 704 | (64, 128]: 0.004 705 | (128, 256]: 0.002 706 | (256, 512]: 0.001 707 | (512, 1024]: 0.001 708 | (1024, 2048]: 0.000 709 | (2048, 4096]: 0.000 710 | (4096, 8192]: 0.000 711 | (8192, 16384]: 0.000 712 | (16384, 32768]: 0.000 713 | (32768+: 0.000 714 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 715 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 716 | Ratio of index distribution at different column sizes: 717 | (0, 1]: 0.056 718 | (1, 2]: 0.043 719 | (2, 4]: 0.075 720 | (4, 8]: 0.099 721 | (8, 16]: 0.112 722 | (16, 32]: 0.091 723 | (32, 64]: 0.064 724 | (64, 128]: 0.052 725 | (128, 256]: 0.049 726 | (256, 512]: 0.050 727 | (512, 1024]: 0.054 728 | (1024, 2048]: 0.058 729 | (2048, 4096]: 0.061 730 | (4096, 8192]: 0.052 731 | (8192, 16384]: 0.038 732 | (16384, 32768]: 0.026 733 | (32768+: 0.020 734 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 735 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.475', '0.539', '0.591', '0.640', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 736 | 737 | fbgemm_t856_bs65536_15.pt 738 | Locality stats after processing 1 batches of size 65536 739 | Avg # of indices: 468071733 740 | Avg # of unique cols: 61653996 741 | Avg col size: 7.6 742 | Histogram of col sizes: 743 | (0, 1]: 0.423 744 | (1, 2]: 0.165 745 | (2, 4]: 0.167 746 | (4, 8]: 0.121 747 | (8, 16]: 0.073 748 | (16, 32]: 0.031 749 | (32, 64]: 0.011 750 | (64, 128]: 0.004 751 | (128, 256]: 0.002 752 | (256, 512]: 0.001 753 | (512, 1024]: 0.001 754 | (1024, 2048]: 0.000 755 | (2048, 4096]: 0.000 756 | (4096, 8192]: 0.000 757 | (8192, 16384]: 0.000 758 | (16384, 32768]: 0.000 759 | (32768+: 0.000 760 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 761 | ['0.000', '0.423', '0.588', '0.755', '0.876', '0.949', '0.980', '0.991', '0.996', '0.998', '0.999', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 762 | Ratio of index distribution at different column sizes: 763 | (0, 1]: 0.056 764 | (1, 2]: 0.043 765 | (2, 4]: 0.075 766 | (4, 8]: 0.099 767 | (8, 16]: 0.112 768 | (16, 32]: 0.091 769 | (32, 64]: 0.064 770 | (64, 128]: 0.052 771 | (128, 256]: 0.049 772 | (256, 512]: 0.050 773 | (512, 1024]: 0.054 774 | (1024, 2048]: 0.058 775 | (2048, 4096]: 0.061 776 | (4096, 8192]: 0.052 777 | (8192, 16384]: 0.038 778 | (16384, 32768]: 0.026 779 | (32768+: 0.020 780 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 781 | ['0.000', '0.056', '0.099', '0.174', '0.273', '0.385', '0.476', '0.539', '0.592', '0.641', '0.691', '0.745', '0.803', '0.864', '0.916', '0.954', '0.980', '1.000'] 782 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_0.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9bc126e27bd6715b844cd61b81ae87ed26f437a2a67d0fde486b0ea17ca99c91 3 | size 3464855926 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_1.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f51161758629f902c53dc134dc5f9ae99250d2bafc73d1be8991d38157c0204 3 | size 3465621730 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_10.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a4984d40bf8f94f65e66f31ce1bffe7700d36150dc1e5f7e2ec595a8d7ba6f7 3 | size 3465118300 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_11.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44e869a3806fa39478596b8043ebce074b636e709e22cb5711515ebbb620352c 3 | size 3465505252 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_12.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9390eb18eb9d9e7eb95140106eb25039da1644c4914a91d8b64a950ce9df7ff 3 | size 3465937233 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_13.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bde135bb64a362a053486d6693af5f27c89873bf59cd71d9b128ca6b7f5110a4 3 | size 3465917918 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_14.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc795ad3be53b0f336793b9b9264c685b2cc52ac10cc2f6118ac00251d390611 3 | size 3465555599 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_15.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7fc271e06f8ff95389292c72222bae371492db597d9e8bb683fa1f6a486047f 3 | size 3465289906 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_2.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b786037bc459cd8764b2996d6bc5eb3b227f0e3548d8ed38b0d3b0689bde311 3 | size 3465400837 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_3.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ae43e02f3de5de7992b1593579d0a09d5cde483949a85eb54bdff4471ee2788 3 | size 3466022570 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_4.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f8b626e590f748e172f61ac255ceaa644439b702779ac4dc8d812c131ac3009 3 | size 3465770575 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_5.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6815a7d39bf9e3b0c2c89224278f4cc780251ab409c2cfab457242d2cb1edd00 3 | size 3466073908 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_6.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d664990fb30675fd4049aacd3463caaa1f981141f755e52a84b93503c28aa794 3 | size 3465367888 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_7.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:356edc77af34272361ae20e85746306541c742eaa7f726acc9770d4ac494048d 3 | size 3465701111 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_8.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c140545dfaaccf290b26db529e955546c8735947cd2777c83e35209ef102e8ce 3 | size 3465792298 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/fbgemm_t788_bs131072_9.pt.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:912f82f945db75cfa4e9bf177633f55a58d30a2f743ea3e017043f22630651eb 3 | size 3465877148 4 | -------------------------------------------------------------------------------- /embedding_bag/2022/locality_stats.txt: -------------------------------------------------------------------------------- 1 | fbgemm_t788_bs131072_0.pt 2 | Locality stats after processing 1 batches of size 131072 3 | Avg # of indices: 1405163864 4 | Avg # of unique cols: 110259238 5 | Avg col size: 12.7 6 | Histogram of col sizes: 7 | (0, 1]: 0.342 8 | (1, 2]: 0.144 9 | (2, 4]: 0.149 10 | (4, 8]: 0.138 11 | (8, 16]: 0.112 12 | (16, 32]: 0.068 13 | (32, 64]: 0.029 14 | (64, 128]: 0.010 15 | (128, 256]: 0.004 16 | (256, 512]: 0.002 17 | (512, 1024]: 0.001 18 | (1024, 2048]: 0.001 19 | (2048, 4096]: 0.000 20 | (4096, 8192]: 0.000 21 | (8192, 16384]: 0.000 22 | (16384, 32768]: 0.000 23 | (32768+: 0.000 24 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 25 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 26 | Ratio of index distribution at different column sizes: 27 | (0, 1]: 0.027 28 | (1, 2]: 0.023 29 | (2, 4]: 0.040 30 | (4, 8]: 0.068 31 | (8, 16]: 0.105 32 | (16, 32]: 0.120 33 | (32, 64]: 0.099 34 | (64, 128]: 0.070 35 | (128, 256]: 0.059 36 | (256, 512]: 0.054 37 | (512, 1024]: 0.040 38 | (1024, 2048]: 0.072 39 | (2048, 4096]: 0.064 40 | (4096, 8192]: 0.047 41 | (8192, 16384]: 0.021 42 | (16384, 32768]: 0.017 43 | (32768+: 0.076 44 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 45 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.924', '1.000'] 46 | 47 | fbgemm_t788_bs131072_1.pt 48 | Locality stats after processing 1 batches of size 131072 49 | Avg # of indices: 1405427753 50 | Avg # of unique cols: 110261235 51 | Avg col size: 12.7 52 | Histogram of col sizes: 53 | (0, 1]: 0.342 54 | (1, 2]: 0.144 55 | (2, 4]: 0.149 56 | (4, 8]: 0.138 57 | (8, 16]: 0.112 58 | (16, 32]: 0.068 59 | (32, 64]: 0.029 60 | (64, 128]: 0.010 61 | (128, 256]: 0.004 62 | (256, 512]: 0.002 63 | (512, 1024]: 0.001 64 | (1024, 2048]: 0.001 65 | (2048, 4096]: 0.000 66 | (4096, 8192]: 0.000 67 | (8192, 16384]: 0.000 68 | (16384, 32768]: 0.000 69 | (32768+: 0.000 70 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 71 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 72 | Ratio of index distribution at different column sizes: 73 | (0, 1]: 0.027 74 | (1, 2]: 0.023 75 | (2, 4]: 0.040 76 | (4, 8]: 0.068 77 | (8, 16]: 0.105 78 | (16, 32]: 0.120 79 | (32, 64]: 0.099 80 | (64, 128]: 0.070 81 | (128, 256]: 0.059 82 | (256, 512]: 0.054 83 | (512, 1024]: 0.040 84 | (1024, 2048]: 0.072 85 | (2048, 4096]: 0.064 86 | (4096, 8192]: 0.047 87 | (8192, 16384]: 0.021 88 | (16384, 32768]: 0.017 89 | (32768+: 0.075 90 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 91 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.551', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 92 | 93 | fbgemm_t788_bs131072_2.pt 94 | Locality stats after processing 1 batches of size 131072 95 | Avg # of indices: 1405375026 96 | Avg # of unique cols: 110261027 97 | Avg col size: 12.7 98 | Histogram of col sizes: 99 | (0, 1]: 0.342 100 | (1, 2]: 0.144 101 | (2, 4]: 0.149 102 | (4, 8]: 0.138 103 | (8, 16]: 0.112 104 | (16, 32]: 0.068 105 | (32, 64]: 0.029 106 | (64, 128]: 0.010 107 | (128, 256]: 0.004 108 | (256, 512]: 0.002 109 | (512, 1024]: 0.001 110 | (1024, 2048]: 0.001 111 | (2048, 4096]: 0.000 112 | (4096, 8192]: 0.000 113 | (8192, 16384]: 0.000 114 | (16384, 32768]: 0.000 115 | (32768+: 0.000 116 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 117 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 118 | Ratio of index distribution at different column sizes: 119 | (0, 1]: 0.027 120 | (1, 2]: 0.023 121 | (2, 4]: 0.040 122 | (4, 8]: 0.068 123 | (8, 16]: 0.105 124 | (16, 32]: 0.120 125 | (32, 64]: 0.099 126 | (64, 128]: 0.070 127 | (128, 256]: 0.059 128 | (256, 512]: 0.054 129 | (512, 1024]: 0.040 130 | (1024, 2048]: 0.072 131 | (2048, 4096]: 0.064 132 | (4096, 8192]: 0.047 133 | (8192, 16384]: 0.021 134 | (16384, 32768]: 0.017 135 | (32768+: 0.075 136 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 137 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 138 | 139 | fbgemm_t788_bs131072_3.pt 140 | Locality stats after processing 1 batches of size 131072 141 | Avg # of indices: 1405622038 142 | Avg # of unique cols: 110263146 143 | Avg col size: 12.7 144 | Histogram of col sizes: 145 | (0, 1]: 0.342 146 | (1, 2]: 0.144 147 | (2, 4]: 0.149 148 | (4, 8]: 0.138 149 | (8, 16]: 0.112 150 | (16, 32]: 0.068 151 | (32, 64]: 0.029 152 | (64, 128]: 0.010 153 | (128, 256]: 0.004 154 | (256, 512]: 0.002 155 | (512, 1024]: 0.001 156 | (1024, 2048]: 0.001 157 | (2048, 4096]: 0.000 158 | (4096, 8192]: 0.000 159 | (8192, 16384]: 0.000 160 | (16384, 32768]: 0.000 161 | (32768+: 0.000 162 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 163 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 164 | Ratio of index distribution at different column sizes: 165 | (0, 1]: 0.027 166 | (1, 2]: 0.023 167 | (2, 4]: 0.040 168 | (4, 8]: 0.068 169 | (8, 16]: 0.105 170 | (16, 32]: 0.120 171 | (32, 64]: 0.099 172 | (64, 128]: 0.070 173 | (128, 256]: 0.059 174 | (256, 512]: 0.054 175 | (512, 1024]: 0.040 176 | (1024, 2048]: 0.072 177 | (2048, 4096]: 0.064 178 | (4096, 8192]: 0.047 179 | (8192, 16384]: 0.021 180 | (16384, 32768]: 0.017 181 | (32768+: 0.075 182 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 183 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 184 | 185 | fbgemm_t788_bs131072_4.pt 186 | Locality stats after processing 1 batches of size 131072 187 | Avg # of indices: 1405481561 188 | Avg # of unique cols: 110258310 189 | Avg col size: 12.7 190 | Histogram of col sizes: 191 | (0, 1]: 0.342 192 | (1, 2]: 0.144 193 | (2, 4]: 0.149 194 | (4, 8]: 0.138 195 | (8, 16]: 0.112 196 | (16, 32]: 0.068 197 | (32, 64]: 0.029 198 | (64, 128]: 0.010 199 | (128, 256]: 0.004 200 | (256, 512]: 0.002 201 | (512, 1024]: 0.001 202 | (1024, 2048]: 0.001 203 | (2048, 4096]: 0.000 204 | (4096, 8192]: 0.000 205 | (8192, 16384]: 0.000 206 | (16384, 32768]: 0.000 207 | (32768+: 0.000 208 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 209 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 210 | Ratio of index distribution at different column sizes: 211 | (0, 1]: 0.027 212 | (1, 2]: 0.023 213 | (2, 4]: 0.040 214 | (4, 8]: 0.068 215 | (8, 16]: 0.105 216 | (16, 32]: 0.120 217 | (32, 64]: 0.099 218 | (64, 128]: 0.070 219 | (128, 256]: 0.059 220 | (256, 512]: 0.054 221 | (512, 1024]: 0.040 222 | (1024, 2048]: 0.072 223 | (2048, 4096]: 0.064 224 | (4096, 8192]: 0.047 225 | (8192, 16384]: 0.021 226 | (16384, 32768]: 0.017 227 | (32768+: 0.075 228 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 229 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 230 | 231 | fbgemm_t788_bs131072_5.pt 232 | Locality stats after processing 1 batches of size 131072 233 | Avg # of indices: 1405586493 234 | Avg # of unique cols: 110258017 235 | Avg col size: 12.7 236 | Histogram of col sizes: 237 | (0, 1]: 0.342 238 | (1, 2]: 0.144 239 | (2, 4]: 0.149 240 | (4, 8]: 0.138 241 | (8, 16]: 0.112 242 | (16, 32]: 0.068 243 | (32, 64]: 0.029 244 | (64, 128]: 0.010 245 | (128, 256]: 0.004 246 | (256, 512]: 0.002 247 | (512, 1024]: 0.001 248 | (1024, 2048]: 0.001 249 | (2048, 4096]: 0.000 250 | (4096, 8192]: 0.000 251 | (8192, 16384]: 0.000 252 | (16384, 32768]: 0.000 253 | (32768+: 0.000 254 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 255 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 256 | Ratio of index distribution at different column sizes: 257 | (0, 1]: 0.027 258 | (1, 2]: 0.023 259 | (2, 4]: 0.040 260 | (4, 8]: 0.068 261 | (8, 16]: 0.105 262 | (16, 32]: 0.120 263 | (32, 64]: 0.099 264 | (64, 128]: 0.070 265 | (128, 256]: 0.059 266 | (256, 512]: 0.054 267 | (512, 1024]: 0.040 268 | (1024, 2048]: 0.071 269 | (2048, 4096]: 0.064 270 | (4096, 8192]: 0.047 271 | (8192, 16384]: 0.021 272 | (16384, 32768]: 0.018 273 | (32768+: 0.075 274 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 275 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 276 | 277 | fbgemm_t788_bs131072_6.pt 278 | Locality stats after processing 1 batches of size 131072 279 | Avg # of indices: 1405386179 280 | Avg # of unique cols: 110261692 281 | Avg col size: 12.7 282 | Histogram of col sizes: 283 | (0, 1]: 0.342 284 | (1, 2]: 0.144 285 | (2, 4]: 0.149 286 | (4, 8]: 0.138 287 | (8, 16]: 0.112 288 | (16, 32]: 0.068 289 | (32, 64]: 0.029 290 | (64, 128]: 0.010 291 | (128, 256]: 0.004 292 | (256, 512]: 0.002 293 | (512, 1024]: 0.001 294 | (1024, 2048]: 0.001 295 | (2048, 4096]: 0.000 296 | (4096, 8192]: 0.000 297 | (8192, 16384]: 0.000 298 | (16384, 32768]: 0.000 299 | (32768+: 0.000 300 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 301 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 302 | Ratio of index distribution at different column sizes: 303 | (0, 1]: 0.027 304 | (1, 2]: 0.023 305 | (2, 4]: 0.040 306 | (4, 8]: 0.068 307 | (8, 16]: 0.105 308 | (16, 32]: 0.120 309 | (32, 64]: 0.099 310 | (64, 128]: 0.070 311 | (128, 256]: 0.059 312 | (256, 512]: 0.054 313 | (512, 1024]: 0.040 314 | (1024, 2048]: 0.072 315 | (2048, 4096]: 0.064 316 | (4096, 8192]: 0.047 317 | (8192, 16384]: 0.021 318 | (16384, 32768]: 0.017 319 | (32768+: 0.075 320 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 321 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 322 | 323 | fbgemm_t788_bs131072_7.pt 324 | Locality stats after processing 1 batches of size 131072 325 | Avg # of indices: 1405473114 326 | Avg # of unique cols: 110256010 327 | Avg col size: 12.7 328 | Histogram of col sizes: 329 | (0, 1]: 0.342 330 | (1, 2]: 0.144 331 | (2, 4]: 0.149 332 | (4, 8]: 0.138 333 | (8, 16]: 0.112 334 | (16, 32]: 0.068 335 | (32, 64]: 0.029 336 | (64, 128]: 0.010 337 | (128, 256]: 0.004 338 | (256, 512]: 0.002 339 | (512, 1024]: 0.001 340 | (1024, 2048]: 0.001 341 | (2048, 4096]: 0.000 342 | (4096, 8192]: 0.000 343 | (8192, 16384]: 0.000 344 | (16384, 32768]: 0.000 345 | (32768+: 0.000 346 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 347 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 348 | Ratio of index distribution at different column sizes: 349 | (0, 1]: 0.027 350 | (1, 2]: 0.023 351 | (2, 4]: 0.040 352 | (4, 8]: 0.068 353 | (8, 16]: 0.105 354 | (16, 32]: 0.120 355 | (32, 64]: 0.099 356 | (64, 128]: 0.070 357 | (128, 256]: 0.059 358 | (256, 512]: 0.054 359 | (512, 1024]: 0.040 360 | (1024, 2048]: 0.072 361 | (2048, 4096]: 0.064 362 | (4096, 8192]: 0.047 363 | (8192, 16384]: 0.021 364 | (16384, 32768]: 0.017 365 | (32768+: 0.075 366 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 367 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 368 | 369 | fbgemm_t788_bs131072_8.pt 370 | Locality stats after processing 1 batches of size 131072 371 | Avg # of indices: 1405469430 372 | Avg # of unique cols: 110267896 373 | Avg col size: 12.7 374 | Histogram of col sizes: 375 | (0, 1]: 0.342 376 | (1, 2]: 0.144 377 | (2, 4]: 0.149 378 | (4, 8]: 0.138 379 | (8, 16]: 0.112 380 | (16, 32]: 0.068 381 | (32, 64]: 0.029 382 | (64, 128]: 0.010 383 | (128, 256]: 0.004 384 | (256, 512]: 0.002 385 | (512, 1024]: 0.001 386 | (1024, 2048]: 0.001 387 | (2048, 4096]: 0.000 388 | (4096, 8192]: 0.000 389 | (8192, 16384]: 0.000 390 | (16384, 32768]: 0.000 391 | (32768+: 0.000 392 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 393 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 394 | Ratio of index distribution at different column sizes: 395 | (0, 1]: 0.027 396 | (1, 2]: 0.023 397 | (2, 4]: 0.040 398 | (4, 8]: 0.068 399 | (8, 16]: 0.105 400 | (16, 32]: 0.120 401 | (32, 64]: 0.099 402 | (64, 128]: 0.070 403 | (128, 256]: 0.059 404 | (256, 512]: 0.054 405 | (512, 1024]: 0.040 406 | (1024, 2048]: 0.072 407 | (2048, 4096]: 0.064 408 | (4096, 8192]: 0.047 409 | (8192, 16384]: 0.021 410 | (16384, 32768]: 0.017 411 | (32768+: 0.075 412 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 413 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 414 | 415 | fbgemm_t788_bs131072_9.pt 416 | Locality stats after processing 1 batches of size 131072 417 | Avg # of indices: 1405514307 418 | Avg # of unique cols: 110262594 419 | Avg col size: 12.7 420 | Histogram of col sizes: 421 | (0, 1]: 0.342 422 | (1, 2]: 0.144 423 | (2, 4]: 0.149 424 | (4, 8]: 0.138 425 | (8, 16]: 0.112 426 | (16, 32]: 0.068 427 | (32, 64]: 0.029 428 | (64, 128]: 0.010 429 | (128, 256]: 0.004 430 | (256, 512]: 0.002 431 | (512, 1024]: 0.001 432 | (1024, 2048]: 0.001 433 | (2048, 4096]: 0.000 434 | (4096, 8192]: 0.000 435 | (8192, 16384]: 0.000 436 | (16384, 32768]: 0.000 437 | (32768+: 0.000 438 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 439 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 440 | Ratio of index distribution at different column sizes: 441 | (0, 1]: 0.027 442 | (1, 2]: 0.023 443 | (2, 4]: 0.040 444 | (4, 8]: 0.068 445 | (8, 16]: 0.105 446 | (16, 32]: 0.120 447 | (32, 64]: 0.099 448 | (64, 128]: 0.070 449 | (128, 256]: 0.059 450 | (256, 512]: 0.054 451 | (512, 1024]: 0.040 452 | (1024, 2048]: 0.072 453 | (2048, 4096]: 0.064 454 | (4096, 8192]: 0.047 455 | (8192, 16384]: 0.021 456 | (16384, 32768]: 0.017 457 | (32768+: 0.075 458 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 459 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 460 | 461 | fbgemm_t788_bs131072_10.pt 462 | Locality stats after processing 1 batches of size 131072 463 | Avg # of indices: 1405273977 464 | Avg # of unique cols: 110255754 465 | Avg col size: 12.7 466 | Histogram of col sizes: 467 | (0, 1]: 0.342 468 | (1, 2]: 0.144 469 | (2, 4]: 0.149 470 | (4, 8]: 0.138 471 | (8, 16]: 0.112 472 | (16, 32]: 0.068 473 | (32, 64]: 0.029 474 | (64, 128]: 0.010 475 | (128, 256]: 0.004 476 | (256, 512]: 0.002 477 | (512, 1024]: 0.001 478 | (1024, 2048]: 0.001 479 | (2048, 4096]: 0.000 480 | (4096, 8192]: 0.000 481 | (8192, 16384]: 0.000 482 | (16384, 32768]: 0.000 483 | (32768+: 0.000 484 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 485 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 486 | Ratio of index distribution at different column sizes: 487 | (0, 1]: 0.027 488 | (1, 2]: 0.023 489 | (2, 4]: 0.040 490 | (4, 8]: 0.068 491 | (8, 16]: 0.105 492 | (16, 32]: 0.120 493 | (32, 64]: 0.099 494 | (64, 128]: 0.070 495 | (128, 256]: 0.059 496 | (256, 512]: 0.054 497 | (512, 1024]: 0.040 498 | (1024, 2048]: 0.071 499 | (2048, 4096]: 0.064 500 | (4096, 8192]: 0.047 501 | (8192, 16384]: 0.021 502 | (16384, 32768]: 0.017 503 | (32768+: 0.075 504 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 505 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 506 | 507 | fbgemm_t788_bs131072_11.pt 508 | Locality stats after processing 1 batches of size 131072 509 | Avg # of indices: 1405411028 510 | Avg # of unique cols: 110260701 511 | Avg col size: 12.7 512 | Histogram of col sizes: 513 | (0, 1]: 0.342 514 | (1, 2]: 0.144 515 | (2, 4]: 0.149 516 | (4, 8]: 0.138 517 | (8, 16]: 0.112 518 | (16, 32]: 0.068 519 | (32, 64]: 0.029 520 | (64, 128]: 0.010 521 | (128, 256]: 0.004 522 | (256, 512]: 0.002 523 | (512, 1024]: 0.001 524 | (1024, 2048]: 0.001 525 | (2048, 4096]: 0.000 526 | (4096, 8192]: 0.000 527 | (8192, 16384]: 0.000 528 | (16384, 32768]: 0.000 529 | (32768+: 0.000 530 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 531 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 532 | Ratio of index distribution at different column sizes: 533 | (0, 1]: 0.027 534 | (1, 2]: 0.023 535 | (2, 4]: 0.040 536 | (4, 8]: 0.068 537 | (8, 16]: 0.105 538 | (16, 32]: 0.120 539 | (32, 64]: 0.099 540 | (64, 128]: 0.070 541 | (128, 256]: 0.059 542 | (256, 512]: 0.054 543 | (512, 1024]: 0.040 544 | (1024, 2048]: 0.072 545 | (2048, 4096]: 0.064 546 | (4096, 8192]: 0.047 547 | (8192, 16384]: 0.021 548 | (16384, 32768]: 0.017 549 | (32768+: 0.075 550 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 551 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 552 | 553 | fbgemm_t788_bs131072_12.pt 554 | Locality stats after processing 1 batches of size 131072 555 | Avg # of indices: 1405566581 556 | Avg # of unique cols: 110260731 557 | Avg col size: 12.7 558 | Histogram of col sizes: 559 | (0, 1]: 0.342 560 | (1, 2]: 0.144 561 | (2, 4]: 0.149 562 | (4, 8]: 0.138 563 | (8, 16]: 0.112 564 | (16, 32]: 0.068 565 | (32, 64]: 0.029 566 | (64, 128]: 0.010 567 | (128, 256]: 0.004 568 | (256, 512]: 0.002 569 | (512, 1024]: 0.001 570 | (1024, 2048]: 0.001 571 | (2048, 4096]: 0.000 572 | (4096, 8192]: 0.000 573 | (8192, 16384]: 0.000 574 | (16384, 32768]: 0.000 575 | (32768+: 0.000 576 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 577 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 578 | Ratio of index distribution at different column sizes: 579 | (0, 1]: 0.027 580 | (1, 2]: 0.023 581 | (2, 4]: 0.040 582 | (4, 8]: 0.068 583 | (8, 16]: 0.105 584 | (16, 32]: 0.120 585 | (32, 64]: 0.099 586 | (64, 128]: 0.070 587 | (128, 256]: 0.059 588 | (256, 512]: 0.054 589 | (512, 1024]: 0.040 590 | (1024, 2048]: 0.071 591 | (2048, 4096]: 0.064 592 | (4096, 8192]: 0.047 593 | (8192, 16384]: 0.021 594 | (16384, 32768]: 0.017 595 | (32768+: 0.075 596 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 597 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 598 | 599 | fbgemm_t788_bs131072_13.pt 600 | Locality stats after processing 1 batches of size 131072 601 | Avg # of indices: 1405580495 602 | Avg # of unique cols: 110247585 603 | Avg col size: 12.7 604 | Histogram of col sizes: 605 | (0, 1]: 0.342 606 | (1, 2]: 0.144 607 | (2, 4]: 0.149 608 | (4, 8]: 0.138 609 | (8, 16]: 0.112 610 | (16, 32]: 0.068 611 | (32, 64]: 0.029 612 | (64, 128]: 0.010 613 | (128, 256]: 0.004 614 | (256, 512]: 0.002 615 | (512, 1024]: 0.001 616 | (1024, 2048]: 0.001 617 | (2048, 4096]: 0.000 618 | (4096, 8192]: 0.000 619 | (8192, 16384]: 0.000 620 | (16384, 32768]: 0.000 621 | (32768+: 0.000 622 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 623 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 624 | Ratio of index distribution at different column sizes: 625 | (0, 1]: 0.027 626 | (1, 2]: 0.023 627 | (2, 4]: 0.040 628 | (4, 8]: 0.068 629 | (8, 16]: 0.105 630 | (16, 32]: 0.120 631 | (32, 64]: 0.099 632 | (64, 128]: 0.070 633 | (128, 256]: 0.059 634 | (256, 512]: 0.054 635 | (512, 1024]: 0.040 636 | (1024, 2048]: 0.072 637 | (2048, 4096]: 0.064 638 | (4096, 8192]: 0.047 639 | (8192, 16384]: 0.021 640 | (16384, 32768]: 0.017 641 | (32768+: 0.075 642 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 643 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 644 | 645 | fbgemm_t788_bs131072_14.pt 646 | Locality stats after processing 1 batches of size 131072 647 | Avg # of indices: 1405450617 648 | Avg # of unique cols: 110260960 649 | Avg col size: 12.7 650 | Histogram of col sizes: 651 | (0, 1]: 0.342 652 | (1, 2]: 0.144 653 | (2, 4]: 0.149 654 | (4, 8]: 0.138 655 | (8, 16]: 0.112 656 | (16, 32]: 0.068 657 | (32, 64]: 0.029 658 | (64, 128]: 0.010 659 | (128, 256]: 0.004 660 | (256, 512]: 0.002 661 | (512, 1024]: 0.001 662 | (1024, 2048]: 0.001 663 | (2048, 4096]: 0.000 664 | (4096, 8192]: 0.000 665 | (8192, 16384]: 0.000 666 | (16384, 32768]: 0.000 667 | (32768+: 0.000 668 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 669 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 670 | Ratio of index distribution at different column sizes: 671 | (0, 1]: 0.027 672 | (1, 2]: 0.023 673 | (2, 4]: 0.040 674 | (4, 8]: 0.068 675 | (8, 16]: 0.105 676 | (16, 32]: 0.120 677 | (32, 64]: 0.099 678 | (64, 128]: 0.070 679 | (128, 256]: 0.059 680 | (256, 512]: 0.054 681 | (512, 1024]: 0.040 682 | (1024, 2048]: 0.072 683 | (2048, 4096]: 0.064 684 | (4096, 8192]: 0.047 685 | (8192, 16384]: 0.021 686 | (16384, 32768]: 0.018 687 | (32768+: 0.075 688 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 689 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 690 | 691 | fbgemm_t788_bs131072_15.pt 692 | Locality stats after processing 1 batches of size 131072 693 | Avg # of indices: 1405354672 694 | Avg # of unique cols: 110263419 695 | Avg col size: 12.7 696 | Histogram of col sizes: 697 | (0, 1]: 0.342 698 | (1, 2]: 0.144 699 | (2, 4]: 0.149 700 | (4, 8]: 0.138 701 | (8, 16]: 0.112 702 | (16, 32]: 0.068 703 | (32, 64]: 0.029 704 | (64, 128]: 0.010 705 | (128, 256]: 0.004 706 | (256, 512]: 0.002 707 | (512, 1024]: 0.001 708 | (1024, 2048]: 0.001 709 | (2048, 4096]: 0.000 710 | (4096, 8192]: 0.000 711 | (8192, 16384]: 0.000 712 | (16384, 32768]: 0.000 713 | (32768+: 0.000 714 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 715 | ['0.000', '0.342', '0.486', '0.635', '0.773', '0.886', '0.953', '0.982', '0.992', '0.996', '0.998', '0.999', '1.000', '1.000', '1.000', '1.000', '1.000', '1.000'] 716 | Ratio of index distribution at different column sizes: 717 | (0, 1]: 0.027 718 | (1, 2]: 0.023 719 | (2, 4]: 0.040 720 | (4, 8]: 0.068 721 | (8, 16]: 0.105 722 | (16, 32]: 0.120 723 | (32, 64]: 0.099 724 | (64, 128]: 0.070 725 | (128, 256]: 0.059 726 | (256, 512]: 0.054 727 | (512, 1024]: 0.040 728 | (1024, 2048]: 0.071 729 | (2048, 4096]: 0.064 730 | (4096, 8192]: 0.047 731 | (8192, 16384]: 0.021 732 | (16384, 32768]: 0.017 733 | (32768+: 0.075 734 | [0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768] 735 | ['0.000', '0.027', '0.049', '0.089', '0.157', '0.262', '0.382', '0.481', '0.550', '0.610', '0.664', '0.704', '0.775', '0.839', '0.886', '0.907', '0.925', '1.000'] 736 | --------------------------------------------------------------------------------