├── .clang-format ├── .travis.yml ├── 3rdparty └── ps-lite │ ├── CMakeLists.txt │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── cmake │ ├── External │ │ └── zmq.cmake │ ├── Modules │ │ └── FindZMQ.cmake │ └── ProtoBuf.cmake │ ├── docs │ ├── Doxyfile │ ├── Makefile │ ├── api.md │ ├── conf.py │ ├── efa.md │ ├── env.md │ ├── get_started.md │ ├── how_to.md │ ├── index.md │ ├── overview.md │ ├── requirements.txt │ ├── sphinx_util.py │ └── tutorials.md │ ├── include │ ├── dmlc │ │ ├── base.h │ │ └── logging.h │ └── ps │ │ ├── base.h │ │ ├── internal │ │ ├── assign_op.h │ │ ├── customer.h │ │ ├── env.h │ │ ├── message.h │ │ ├── parallel_kv_match.h │ │ ├── parallel_sort.h │ │ ├── postoffice.h │ │ ├── spsc_queue.h │ │ ├── threadsafe_queue.h │ │ ├── utils.h │ │ └── van.h │ │ ├── kv_app.h │ │ ├── ps.h │ │ ├── range.h │ │ ├── sarray.h │ │ └── simple_app.h │ ├── make │ ├── deps.mk │ └── ps.mk │ ├── src │ ├── customer.cc │ ├── fabric_transport.h │ ├── fabric_utils.h │ ├── fabric_van.h │ ├── meta.h │ ├── multi_van.h │ ├── network_utils.h │ ├── postoffice.cc │ ├── rdma_transport.h │ ├── rdma_utils.h │ ├── rdma_van.h │ ├── resender.h │ ├── ucx_van.h │ ├── van.cc │ ├── van_common.h │ ├── windows │ │ └── unistd.h │ └── zmq_van.h │ ├── tests │ ├── lint.py │ ├── test.mk │ ├── test.sh │ ├── test_benchmark.cc │ ├── test_benchmark_stress.cc │ ├── test_ipc_benchmark.cc │ └── travis │ │ ├── travis_before_cache.sh │ │ ├── travis_script.sh │ │ └── travis_setup_env.sh │ ├── tools │ ├── check_diff.sh │ └── format_code.sh │ └── tracker │ ├── README.md │ ├── dmlc_local.py │ ├── dmlc_mpi.py │ ├── dmlc_ssh.py │ └── tracker.py ├── CHANGELOG.rst ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── byteps.exp ├── byteps.lds ├── byteps ├── .DS_Store ├── __init__.py ├── __version__.py ├── _keras │ ├── __init__.py │ └── callbacks.py ├── common │ ├── __init__.py │ ├── common.cc │ ├── common.h │ ├── communicator.cc │ ├── communicator.h │ ├── compressor │ │ ├── common.h │ │ ├── compressor.h │ │ ├── compressor_registry.cc │ │ ├── compressor_registry.h │ │ ├── error_feedback.cc │ │ ├── error_feedback.h │ │ ├── impl │ │ │ ├── dithering.cc │ │ │ ├── dithering.h │ │ │ ├── drive.cc │ │ │ ├── drive.h │ │ │ ├── nesterov_momentum.cc │ │ │ ├── nesterov_momentum.h │ │ │ ├── onebit.cc │ │ │ ├── onebit.h │ │ │ ├── randomk.cc │ │ │ ├── randomk.h │ │ │ ├── topk.cc │ │ │ ├── topk.h │ │ │ ├── vanilla_error_feedback.cc │ │ │ └── vanilla_error_feedback.h │ │ ├── momentum.cc │ │ ├── momentum.h │ │ └── utils.h │ ├── core_loops.cc │ ├── core_loops.h │ ├── cpu_reducer.cc │ ├── cpu_reducer.h │ ├── global.cc │ ├── global.h │ ├── half.h │ ├── logging.cc │ ├── logging.h │ ├── nccl_manager.cc │ ├── nccl_manager.h │ ├── operations.cc │ ├── operations.h │ ├── p4ml_manager.h │ ├── ready_table.cc │ ├── ready_table.h │ ├── scheduled_queue.cc │ ├── scheduled_queue.h │ ├── shared_memory.cc │ ├── shared_memory.h │ └── thread_pool.h ├── keras │ ├── __init__.py │ └── callbacks.py ├── misc │ ├── __init__.py │ └── imagenet18 │ │ └── __init__.py ├── mxnet │ ├── __init__.py │ ├── adapter.cc │ ├── adapter.h │ ├── compression.py │ ├── cuda_util.cc │ ├── cuda_util.h │ ├── ops.cc │ ├── ops.h │ ├── ops.py │ ├── ready_event.cc │ ├── ready_event.h │ ├── tensor_util.cc │ ├── tensor_util.h │ └── util.h ├── server │ ├── __init__.py │ ├── queue.h │ ├── server.cc │ └── server.h ├── tensorflow │ ├── __init__.py │ ├── compression.py │ ├── distribute │ │ ├── __init__.py │ │ ├── cross_device_ops.py │ │ └── mirrored_strategy.py │ ├── keras │ │ ├── __init__.py │ │ └── callbacks.py │ ├── ops.cc │ ├── ops.h │ ├── ops.py │ └── util.py └── torch │ ├── .DS_Store │ ├── __init__.py │ ├── adapter.cc │ ├── adapter.h │ ├── compression.py │ ├── cross_barrier.py │ ├── cuda_util.cc │ ├── cuda_util.h │ ├── handle_manager.cc │ ├── handle_manager.h │ ├── ops.cc │ ├── ops.h │ ├── ops.py │ ├── parallel │ ├── __init__.py │ └── distributed.py │ ├── ready_event.cc │ ├── ready_event.h │ └── tables │ ├── .DS_Store │ ├── 10001_tablesize_42_maxval_8_qlevels_1024_ofreq_data.txt │ ├── 10001_tablesize_42_maxval_8_qlevels_1024_ofreq_recv_table.pt │ ├── 10001_tablesize_42_maxval_8_qlevels_1024_ofreq_recv_table.txt │ ├── 10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_X.pt │ ├── 10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_X.txt │ ├── 10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_p.pt │ ├── 10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_p.txt │ ├── 1001_tablesize_16_maxval_16_qlevels_32_ofreq_data.txt │ ├── 1001_tablesize_16_maxval_16_qlevels_32_ofreq_recv_table.pt │ ├── 1001_tablesize_16_maxval_16_qlevels_32_ofreq_recv_table.txt │ ├── 1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_X.pt │ ├── 1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_X.txt │ ├── 1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_p.pt │ ├── 1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_p.txt │ ├── 1001_tablesize_16_maxval_16_qlevels_64_ofreq_data.txt │ ├── 1001_tablesize_16_maxval_16_qlevels_64_ofreq_recv_table.pt │ ├── 1001_tablesize_16_maxval_16_qlevels_64_ofreq_recv_table.txt │ ├── 1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_X.pt │ ├── 1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_X.txt │ ├── 1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_p.pt │ ├── 1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_p.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_1024_ofreq_data.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_1024_ofreq_recv_table.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_1024_ofreq_recv_table.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_X.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_X.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_p.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_p.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_128_ofreq_data.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_128_ofreq_recv_table.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_128_ofreq_recv_table.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_X.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_X.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_p.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_p.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_16_ofreq_data.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_16_ofreq_recv_table.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_16_ofreq_recv_table.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_X.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_X.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_p.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_p.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_256_ofreq_data.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_256_ofreq_recv_table.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_256_ofreq_recv_table.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_X.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_X.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_p.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_p.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_32_ofreq_data.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_32_ofreq_recv_table.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_32_ofreq_recv_table.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_X.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_X.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_p.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_p.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_512_ofreq_data.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_512_ofreq_recv_table.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_512_ofreq_recv_table.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_X.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_X.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_p.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_p.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_64_ofreq_data.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_64_ofreq_recv_table.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_64_ofreq_recv_table.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_X.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_X.txt │ ├── 1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_p.pt │ ├── 1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_p.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_128_ofreq_data.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_128_ofreq_recv_table.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_128_ofreq_recv_table.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_X.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_X.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_p.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_p.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_16_ofreq_data.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_16_ofreq_recv_table.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_16_ofreq_recv_table.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_X.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_X.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_p.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_p.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_256_ofreq_data.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_256_ofreq_recv_table.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_256_ofreq_recv_table.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_X.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_X.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_p.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_p.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_32_ofreq_data.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_32_ofreq_recv_table.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_32_ofreq_recv_table.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_X.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_X.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_p.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_p.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_512_ofreq_data.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_512_ofreq_recv_table.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_512_ofreq_recv_table.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_X.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_X.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_p.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_p.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_64_ofreq_data.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_64_ofreq_recv_table.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_64_ofreq_recv_table.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_X.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_X.txt │ ├── 1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_p.pt │ ├── 1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_1024_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_1024_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_1024_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_128_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_128_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_128_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_16_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_16_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_16_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_256_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_256_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_256_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_32_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_32_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_32_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_512_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_512_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_512_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_64_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_64_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_64_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_4_qlevels_1024_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_4_qlevels_1024_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_4_qlevels_1024_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_4_qlevels_512_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_4_qlevels_512_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_4_qlevels_512_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_128_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_128_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_128_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_16_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_16_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_16_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_32_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_32_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_32_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_p.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_p.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_64_ofreq_data.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_64_ofreq_recv_table.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_64_ofreq_recv_table.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_X.pt │ ├── 1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_X.txt │ ├── 1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_p.pt │ └── 1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_p.txt ├── docs ├── DistributedDataParallel.md ├── MirroredStrategy.md ├── architecture.md ├── best-practice.md ├── cross-barrier.md ├── env.md ├── faq.md ├── gradient-compression.md ├── performance.md ├── rationale.md ├── run-on-k8s.md ├── running.md ├── step-by-step-tutorial.md ├── timeline.md └── troubleshooting.md ├── example ├── README.md └── pytorch │ ├── glue_byteps_gpt2.py │ ├── huggingface_byteps.py │ ├── model_factories.py │ ├── models │ ├── __init__.py │ ├── resnet.py │ └── vgg.py │ ├── train_cifar_byteps.py │ ├── train_imagenet_resnet_byteps.py │ ├── train_imagenet_vgg_byteps.py │ └── train_mnist_byteps.py ├── launcher ├── README.md ├── dist_launcher.py └── launch.py ├── pre_setup.py └── setup.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/.clang-format -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/ps-lite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/ps-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/LICENSE -------------------------------------------------------------------------------- /3rdparty/ps-lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/Makefile -------------------------------------------------------------------------------- /3rdparty/ps-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/README.md -------------------------------------------------------------------------------- /3rdparty/ps-lite/cmake/External/zmq.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/cmake/External/zmq.cmake -------------------------------------------------------------------------------- /3rdparty/ps-lite/cmake/Modules/FindZMQ.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/cmake/Modules/FindZMQ.cmake -------------------------------------------------------------------------------- /3rdparty/ps-lite/cmake/ProtoBuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/cmake/ProtoBuf.cmake -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/docs/Doxyfile -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/docs/Makefile -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/docs/api.md -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/docs/conf.py -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/efa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/docs/efa.md -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/docs/env.md -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/get_started.md: -------------------------------------------------------------------------------- 1 | # Get Started 2 | -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/how_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/docs/how_to.md -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/docs/index.md -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/docs/overview.md -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | breathe 2 | -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/sphinx_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/docs/sphinx_util.py -------------------------------------------------------------------------------- /3rdparty/ps-lite/docs/tutorials.md: -------------------------------------------------------------------------------- 1 | # Tutorials 2 | -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/dmlc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/dmlc/base.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/dmlc/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/dmlc/logging.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/base.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/assign_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/assign_op.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/customer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/customer.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/env.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/message.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/parallel_kv_match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/parallel_kv_match.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/parallel_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/parallel_sort.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/postoffice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/postoffice.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/spsc_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/spsc_queue.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/threadsafe_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/threadsafe_queue.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/utils.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/internal/van.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/internal/van.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/kv_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/kv_app.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/ps.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/range.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/sarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/sarray.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/include/ps/simple_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/include/ps/simple_app.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/make/deps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/make/deps.mk -------------------------------------------------------------------------------- /3rdparty/ps-lite/make/ps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/make/ps.mk -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/customer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/customer.cc -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/fabric_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/fabric_transport.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/fabric_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/fabric_utils.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/fabric_van.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/fabric_van.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/meta.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/multi_van.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/multi_van.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/network_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/network_utils.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/postoffice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/postoffice.cc -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/rdma_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/rdma_transport.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/rdma_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/rdma_utils.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/rdma_van.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/rdma_van.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/resender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/resender.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/ucx_van.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/ucx_van.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/van.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/van.cc -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/van_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/van_common.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/windows/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/windows/unistd.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/src/zmq_van.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/src/zmq_van.h -------------------------------------------------------------------------------- /3rdparty/ps-lite/tests/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tests/lint.py -------------------------------------------------------------------------------- /3rdparty/ps-lite/tests/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tests/test.mk -------------------------------------------------------------------------------- /3rdparty/ps-lite/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tests/test.sh -------------------------------------------------------------------------------- /3rdparty/ps-lite/tests/test_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tests/test_benchmark.cc -------------------------------------------------------------------------------- /3rdparty/ps-lite/tests/test_benchmark_stress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tests/test_benchmark_stress.cc -------------------------------------------------------------------------------- /3rdparty/ps-lite/tests/test_ipc_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tests/test_ipc_benchmark.cc -------------------------------------------------------------------------------- /3rdparty/ps-lite/tests/travis/travis_before_cache.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # do nothing for now 3 | ls -alLR ${CACHE_PREFIX} -------------------------------------------------------------------------------- /3rdparty/ps-lite/tests/travis/travis_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tests/travis/travis_script.sh -------------------------------------------------------------------------------- /3rdparty/ps-lite/tests/travis/travis_setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tests/travis/travis_setup_env.sh -------------------------------------------------------------------------------- /3rdparty/ps-lite/tools/check_diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tools/check_diff.sh -------------------------------------------------------------------------------- /3rdparty/ps-lite/tools/format_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tools/format_code.sh -------------------------------------------------------------------------------- /3rdparty/ps-lite/tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tracker/README.md -------------------------------------------------------------------------------- /3rdparty/ps-lite/tracker/dmlc_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tracker/dmlc_local.py -------------------------------------------------------------------------------- /3rdparty/ps-lite/tracker/dmlc_mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tracker/dmlc_mpi.py -------------------------------------------------------------------------------- /3rdparty/ps-lite/tracker/dmlc_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tracker/dmlc_ssh.py -------------------------------------------------------------------------------- /3rdparty/ps-lite/tracker/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/3rdparty/ps-lite/tracker/tracker.py -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/README.md -------------------------------------------------------------------------------- /byteps.exp: -------------------------------------------------------------------------------- 1 | *byteps* 2 | # PyTorch binding 3 | *PyInit* 4 | *initc_lib* 5 | -------------------------------------------------------------------------------- /byteps.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps.lds -------------------------------------------------------------------------------- /byteps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/.DS_Store -------------------------------------------------------------------------------- /byteps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /byteps/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/__version__.py -------------------------------------------------------------------------------- /byteps/_keras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/_keras/__init__.py -------------------------------------------------------------------------------- /byteps/_keras/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/_keras/callbacks.py -------------------------------------------------------------------------------- /byteps/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/__init__.py -------------------------------------------------------------------------------- /byteps/common/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/common.cc -------------------------------------------------------------------------------- /byteps/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/common.h -------------------------------------------------------------------------------- /byteps/common/communicator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/communicator.cc -------------------------------------------------------------------------------- /byteps/common/communicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/communicator.h -------------------------------------------------------------------------------- /byteps/common/compressor/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/common.h -------------------------------------------------------------------------------- /byteps/common/compressor/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/compressor.h -------------------------------------------------------------------------------- /byteps/common/compressor/compressor_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/compressor_registry.cc -------------------------------------------------------------------------------- /byteps/common/compressor/compressor_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/compressor_registry.h -------------------------------------------------------------------------------- /byteps/common/compressor/error_feedback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/error_feedback.cc -------------------------------------------------------------------------------- /byteps/common/compressor/error_feedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/error_feedback.h -------------------------------------------------------------------------------- /byteps/common/compressor/impl/dithering.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/dithering.cc -------------------------------------------------------------------------------- /byteps/common/compressor/impl/dithering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/dithering.h -------------------------------------------------------------------------------- /byteps/common/compressor/impl/drive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/drive.cc -------------------------------------------------------------------------------- /byteps/common/compressor/impl/drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/drive.h -------------------------------------------------------------------------------- /byteps/common/compressor/impl/nesterov_momentum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/nesterov_momentum.cc -------------------------------------------------------------------------------- /byteps/common/compressor/impl/nesterov_momentum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/nesterov_momentum.h -------------------------------------------------------------------------------- /byteps/common/compressor/impl/onebit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/onebit.cc -------------------------------------------------------------------------------- /byteps/common/compressor/impl/onebit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/onebit.h -------------------------------------------------------------------------------- /byteps/common/compressor/impl/randomk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/randomk.cc -------------------------------------------------------------------------------- /byteps/common/compressor/impl/randomk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/randomk.h -------------------------------------------------------------------------------- /byteps/common/compressor/impl/topk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/topk.cc -------------------------------------------------------------------------------- /byteps/common/compressor/impl/topk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/topk.h -------------------------------------------------------------------------------- /byteps/common/compressor/impl/vanilla_error_feedback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/vanilla_error_feedback.cc -------------------------------------------------------------------------------- /byteps/common/compressor/impl/vanilla_error_feedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/impl/vanilla_error_feedback.h -------------------------------------------------------------------------------- /byteps/common/compressor/momentum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/momentum.cc -------------------------------------------------------------------------------- /byteps/common/compressor/momentum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/momentum.h -------------------------------------------------------------------------------- /byteps/common/compressor/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/compressor/utils.h -------------------------------------------------------------------------------- /byteps/common/core_loops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/core_loops.cc -------------------------------------------------------------------------------- /byteps/common/core_loops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/core_loops.h -------------------------------------------------------------------------------- /byteps/common/cpu_reducer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/cpu_reducer.cc -------------------------------------------------------------------------------- /byteps/common/cpu_reducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/cpu_reducer.h -------------------------------------------------------------------------------- /byteps/common/global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/global.cc -------------------------------------------------------------------------------- /byteps/common/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/global.h -------------------------------------------------------------------------------- /byteps/common/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/half.h -------------------------------------------------------------------------------- /byteps/common/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/logging.cc -------------------------------------------------------------------------------- /byteps/common/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/logging.h -------------------------------------------------------------------------------- /byteps/common/nccl_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/nccl_manager.cc -------------------------------------------------------------------------------- /byteps/common/nccl_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/nccl_manager.h -------------------------------------------------------------------------------- /byteps/common/operations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/operations.cc -------------------------------------------------------------------------------- /byteps/common/operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/operations.h -------------------------------------------------------------------------------- /byteps/common/p4ml_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/p4ml_manager.h -------------------------------------------------------------------------------- /byteps/common/ready_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/ready_table.cc -------------------------------------------------------------------------------- /byteps/common/ready_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/ready_table.h -------------------------------------------------------------------------------- /byteps/common/scheduled_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/scheduled_queue.cc -------------------------------------------------------------------------------- /byteps/common/scheduled_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/scheduled_queue.h -------------------------------------------------------------------------------- /byteps/common/shared_memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/shared_memory.cc -------------------------------------------------------------------------------- /byteps/common/shared_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/shared_memory.h -------------------------------------------------------------------------------- /byteps/common/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/common/thread_pool.h -------------------------------------------------------------------------------- /byteps/keras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/keras/__init__.py -------------------------------------------------------------------------------- /byteps/keras/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/keras/callbacks.py -------------------------------------------------------------------------------- /byteps/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /byteps/misc/imagenet18/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/misc/imagenet18/__init__.py -------------------------------------------------------------------------------- /byteps/mxnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/__init__.py -------------------------------------------------------------------------------- /byteps/mxnet/adapter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/adapter.cc -------------------------------------------------------------------------------- /byteps/mxnet/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/adapter.h -------------------------------------------------------------------------------- /byteps/mxnet/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/compression.py -------------------------------------------------------------------------------- /byteps/mxnet/cuda_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/cuda_util.cc -------------------------------------------------------------------------------- /byteps/mxnet/cuda_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/cuda_util.h -------------------------------------------------------------------------------- /byteps/mxnet/ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/ops.cc -------------------------------------------------------------------------------- /byteps/mxnet/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/ops.h -------------------------------------------------------------------------------- /byteps/mxnet/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/ops.py -------------------------------------------------------------------------------- /byteps/mxnet/ready_event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/ready_event.cc -------------------------------------------------------------------------------- /byteps/mxnet/ready_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/ready_event.h -------------------------------------------------------------------------------- /byteps/mxnet/tensor_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/tensor_util.cc -------------------------------------------------------------------------------- /byteps/mxnet/tensor_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/tensor_util.h -------------------------------------------------------------------------------- /byteps/mxnet/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/mxnet/util.h -------------------------------------------------------------------------------- /byteps/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/server/__init__.py -------------------------------------------------------------------------------- /byteps/server/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/server/queue.h -------------------------------------------------------------------------------- /byteps/server/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/server/server.cc -------------------------------------------------------------------------------- /byteps/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/server/server.h -------------------------------------------------------------------------------- /byteps/tensorflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/__init__.py -------------------------------------------------------------------------------- /byteps/tensorflow/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/compression.py -------------------------------------------------------------------------------- /byteps/tensorflow/distribute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/distribute/__init__.py -------------------------------------------------------------------------------- /byteps/tensorflow/distribute/cross_device_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/distribute/cross_device_ops.py -------------------------------------------------------------------------------- /byteps/tensorflow/distribute/mirrored_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/distribute/mirrored_strategy.py -------------------------------------------------------------------------------- /byteps/tensorflow/keras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/keras/__init__.py -------------------------------------------------------------------------------- /byteps/tensorflow/keras/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/keras/callbacks.py -------------------------------------------------------------------------------- /byteps/tensorflow/ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/ops.cc -------------------------------------------------------------------------------- /byteps/tensorflow/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/ops.h -------------------------------------------------------------------------------- /byteps/tensorflow/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/ops.py -------------------------------------------------------------------------------- /byteps/tensorflow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/tensorflow/util.py -------------------------------------------------------------------------------- /byteps/torch/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/.DS_Store -------------------------------------------------------------------------------- /byteps/torch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/__init__.py -------------------------------------------------------------------------------- /byteps/torch/adapter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/adapter.cc -------------------------------------------------------------------------------- /byteps/torch/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/adapter.h -------------------------------------------------------------------------------- /byteps/torch/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/compression.py -------------------------------------------------------------------------------- /byteps/torch/cross_barrier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/cross_barrier.py -------------------------------------------------------------------------------- /byteps/torch/cuda_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/cuda_util.cc -------------------------------------------------------------------------------- /byteps/torch/cuda_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/cuda_util.h -------------------------------------------------------------------------------- /byteps/torch/handle_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/handle_manager.cc -------------------------------------------------------------------------------- /byteps/torch/handle_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/handle_manager.h -------------------------------------------------------------------------------- /byteps/torch/ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/ops.cc -------------------------------------------------------------------------------- /byteps/torch/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/ops.h -------------------------------------------------------------------------------- /byteps/torch/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/ops.py -------------------------------------------------------------------------------- /byteps/torch/parallel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/parallel/__init__.py -------------------------------------------------------------------------------- /byteps/torch/parallel/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/parallel/distributed.py -------------------------------------------------------------------------------- /byteps/torch/ready_event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/ready_event.cc -------------------------------------------------------------------------------- /byteps/torch/ready_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/ready_event.h -------------------------------------------------------------------------------- /byteps/torch/tables/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/.DS_Store -------------------------------------------------------------------------------- /byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/10001_tablesize_42_maxval_8_qlevels_1024_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_32_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_16_qlevels_64_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_1024_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_128_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_16_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_256_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_32_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_512_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_16_maxval_8_qlevels_64_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_128_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_16_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_256_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_32_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_512_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_30_maxval_16_qlevels_64_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_1024_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_128_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_16_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_256_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_32_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_512_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_16_qlevels_64_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_1024_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_4_qlevels_512_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_128_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_16_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_32_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_data.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_recv_table.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_recv_table.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_recv_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_recv_table.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_X.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_X.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_X.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_X.txt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_p.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_p.pt -------------------------------------------------------------------------------- /byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_p.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/byteps/torch/tables/1001_tablesize_34_maxval_8_qlevels_64_ofreq_sender_table_p.txt -------------------------------------------------------------------------------- /docs/DistributedDataParallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/DistributedDataParallel.md -------------------------------------------------------------------------------- /docs/MirroredStrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/MirroredStrategy.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/best-practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/best-practice.md -------------------------------------------------------------------------------- /docs/cross-barrier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/cross-barrier.md -------------------------------------------------------------------------------- /docs/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/env.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/gradient-compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/gradient-compression.md -------------------------------------------------------------------------------- /docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/performance.md -------------------------------------------------------------------------------- /docs/rationale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/rationale.md -------------------------------------------------------------------------------- /docs/run-on-k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/run-on-k8s.md -------------------------------------------------------------------------------- /docs/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/running.md -------------------------------------------------------------------------------- /docs/step-by-step-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/step-by-step-tutorial.md -------------------------------------------------------------------------------- /docs/timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/timeline.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/example/README.md -------------------------------------------------------------------------------- /example/pytorch/glue_byteps_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/example/pytorch/glue_byteps_gpt2.py -------------------------------------------------------------------------------- /example/pytorch/huggingface_byteps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/example/pytorch/huggingface_byteps.py -------------------------------------------------------------------------------- /example/pytorch/model_factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/example/pytorch/model_factories.py -------------------------------------------------------------------------------- /example/pytorch/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .resnet import * 2 | -------------------------------------------------------------------------------- /example/pytorch/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/example/pytorch/models/resnet.py -------------------------------------------------------------------------------- /example/pytorch/models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/example/pytorch/models/vgg.py -------------------------------------------------------------------------------- /example/pytorch/train_cifar_byteps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/example/pytorch/train_cifar_byteps.py -------------------------------------------------------------------------------- /example/pytorch/train_imagenet_resnet_byteps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/example/pytorch/train_imagenet_resnet_byteps.py -------------------------------------------------------------------------------- /example/pytorch/train_imagenet_vgg_byteps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/example/pytorch/train_imagenet_vgg_byteps.py -------------------------------------------------------------------------------- /example/pytorch/train_mnist_byteps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/example/pytorch/train_mnist_byteps.py -------------------------------------------------------------------------------- /launcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/launcher/README.md -------------------------------------------------------------------------------- /launcher/dist_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/launcher/dist_launcher.py -------------------------------------------------------------------------------- /launcher/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/launcher/launch.py -------------------------------------------------------------------------------- /pre_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/pre_setup.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophiaLi06/BytePS_THC/HEAD/setup.py --------------------------------------------------------------------------------