├── .bazelrc ├── .bazelversion ├── .gitignore ├── BUILD ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── WORKSPACE └── paragraph ├── bridging └── hlo │ ├── BUILD │ ├── hlo_bridge.cc │ ├── hlo_compute_cost_analysis.cc │ ├── hlo_compute_cost_analysis.h │ ├── hlo_compute_cost_analysis_test.cc │ ├── hlo_converter.cc │ ├── hlo_converter.h │ ├── hlo_converter_test.cc │ └── tensorflow_patches │ ├── BUILD │ ├── build.patch │ └── tf.patch ├── data ├── README.md ├── hlo_after_optimizations_bert_32_tpuv3.txt ├── hlo_after_optimizations_bert_32_tpuv3_stats.csv ├── hlo_after_optimizations_dlrm_32_tpuv3.txt ├── hlo_after_optimizations_dlrm_32_tpuv3_stats.csv ├── hlo_after_optimizations_maskrcnn_32_tpuv3.txt ├── hlo_after_optimizations_maskrcnn_32_tpuv3_stats.csv ├── hlo_after_optimizations_nmt_32_tpuv3.txt ├── hlo_after_optimizations_nmt_32_tpuv3_stats.csv ├── hlo_after_optimizations_resnet_32_tpuv3.txt ├── hlo_after_optimizations_resnet_32_tpuv3_stats.csv ├── hlo_after_optimizations_ssd_32_tpuv3.txt ├── hlo_after_optimizations_ssd_32_tpuv3_stats.csv ├── hlo_after_optimizations_transformer_32_tpuv3.txt ├── hlo_after_optimizations_transformer_32_tpuv3_stats.csv ├── hlo_before_optimizations_bert_32_tpuv3.txt ├── hlo_before_optimizations_dlrm_32_tpuv3.txt ├── hlo_before_optimizations_maskrcnn_32_tpuv3.txt ├── hlo_before_optimizations_nmt_32_tpuv3.txt ├── hlo_before_optimizations_resnet_32_tpuv3.txt ├── hlo_before_optimizations_ssd_32_tpuv3.txt └── hlo_before_optimizations_transformer_32_tpuv3.txt ├── graph ├── BUILD ├── graph.cc ├── graph.h ├── graph.proto ├── graph_converter.cc ├── graph_test.cc ├── instruction.cc ├── instruction.h ├── instruction_test.cc ├── opcode.cc ├── opcode.h ├── opcode_test.cc ├── subroutine.cc ├── subroutine.h └── subroutine_test.cc ├── scheduling ├── BUILD ├── graph_scheduler.cc ├── graph_scheduler.h ├── graph_scheduler_test.cc ├── instruction_fsm.cc ├── instruction_fsm.h ├── instruction_fsm_test.cc ├── logger.cc ├── logger.h ├── logger_test.cc ├── subroutine_fsm.cc ├── subroutine_fsm.h └── subroutine_fsm_test.cc ├── shim ├── BUILD ├── README.md ├── macros.h ├── macros_test.cc ├── statusor.h ├── statusor_internals.h ├── statusor_test.cc ├── test_macros.h └── test_macros_test.cc ├── simulator ├── BUILD ├── simple_sim.cc ├── simple_sim.h ├── simple_sim_test.cc └── simulator.cc └── translation ├── BUILD ├── allgather ├── BUILD ├── allgather_translator.cc ├── allgather_translator.h ├── bidir_ring_allgather_translator.cc ├── bidir_ring_allgather_translator.h ├── bidir_ring_allgather_translator_test.cc ├── mesh_1d_allgather_translator.cc ├── mesh_1d_allgather_translator.h ├── mesh_1d_allgather_translator_test.cc ├── mesh_2d_allgather_translator.cc ├── mesh_2d_allgather_translator.h ├── mesh_2d_allgather_translator_test.cc ├── ring_over_2d_grid_allgather_translator.cc ├── ring_over_2d_grid_allgather_translator.h ├── ring_over_2d_grid_allgather_translator_test.cc ├── torus_2d_allgather_translator.cc ├── torus_2d_allgather_translator.h ├── torus_2d_allgather_translator_test.cc ├── unidir_ring_allgather_translator.cc ├── unidir_ring_allgather_translator.h └── unidir_ring_allgather_translator_test.cc ├── allreduce ├── BUILD ├── allreduce_translator.cc ├── allreduce_translator.h ├── bidir_ring_allreduce_translator.cc ├── bidir_ring_allreduce_translator.h ├── bidir_ring_allreduce_translator_test.cc ├── dissemination_allreduce_translator.cc ├── dissemination_allreduce_translator.h ├── dissemination_allreduce_translator_test.cc ├── mesh_1d_allreduce_translator.cc ├── mesh_1d_allreduce_translator.h ├── mesh_1d_allreduce_translator_test.cc ├── mesh_2d_allreduce_translator.cc ├── mesh_2d_allreduce_translator.h ├── mesh_2d_allreduce_translator_test.cc ├── ring_over_2d_grid_allreduce_translator.cc ├── ring_over_2d_grid_allreduce_translator.h ├── ring_over_2d_grid_allreduce_translator_test.cc ├── torus_2d_allreduce_translator.cc ├── torus_2d_allreduce_translator.h ├── torus_2d_allreduce_translator_test.cc ├── unidir_ring_allreduce_translator.cc ├── unidir_ring_allreduce_translator.h └── unidir_ring_allreduce_translator_test.cc ├── barrier ├── BUILD ├── barrier_translator.cc ├── barrier_translator.h ├── centralized_barrier_translator.cc ├── centralized_barrier_translator.h └── centralized_barrier_translator_test.cc ├── graph_translator.cc ├── recv ├── BUILD ├── push_recv_translator.cc ├── push_recv_translator.h ├── push_recv_translator_test.cc ├── recv_translator.cc └── recv_translator.h ├── reducescatter ├── BUILD ├── bidir_ring_reducescatter_translator.cc ├── bidir_ring_reducescatter_translator.h ├── bidir_ring_reducescatter_translator_test.cc ├── mesh_1d_reducescatter_translator.cc ├── mesh_1d_reducescatter_translator.h ├── mesh_1d_reducescatter_translator_test.cc ├── mesh_2d_reducescatter_translator.cc ├── mesh_2d_reducescatter_translator.h ├── mesh_2d_reducescatter_translator_test.cc ├── reducescatter_translator.cc ├── reducescatter_translator.h ├── ring_over_2d_grid_reducescatter_translator.cc ├── ring_over_2d_grid_reducescatter_translator.h ├── ring_over_2d_grid_reducescatter_translator_test.cc ├── torus_2d_reducescatter_translator.cc ├── torus_2d_reducescatter_translator.h ├── torus_2d_reducescatter_translator_test.cc ├── unidir_ring_reducescatter_translator.cc ├── unidir_ring_reducescatter_translator.h └── unidir_ring_reducescatter_translator_test.cc ├── send ├── BUILD ├── push_send_translator.cc ├── push_send_translator.h ├── push_send_translator_test.cc ├── send_translator.cc └── send_translator.h ├── sendrecv ├── BUILD ├── push_sendrecv_translator.cc ├── push_sendrecv_translator.h ├── push_sendrecv_translator_test.cc ├── sendrecv_translator.cc └── sendrecv_translator.h ├── translation.cc ├── translation.h ├── translation_map.cc ├── translation_map.h ├── translation_test.cc ├── translator.h ├── utils.cc ├── utils.h └── utils_test.cc /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 3.7.2 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bazel-* 2 | 3 | -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/BUILD -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/WORKSPACE -------------------------------------------------------------------------------- /paragraph/bridging/hlo/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/bridging/hlo/BUILD -------------------------------------------------------------------------------- /paragraph/bridging/hlo/hlo_bridge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/bridging/hlo/hlo_bridge.cc -------------------------------------------------------------------------------- /paragraph/bridging/hlo/hlo_compute_cost_analysis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/bridging/hlo/hlo_compute_cost_analysis.cc -------------------------------------------------------------------------------- /paragraph/bridging/hlo/hlo_compute_cost_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/bridging/hlo/hlo_compute_cost_analysis.h -------------------------------------------------------------------------------- /paragraph/bridging/hlo/hlo_compute_cost_analysis_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/bridging/hlo/hlo_compute_cost_analysis_test.cc -------------------------------------------------------------------------------- /paragraph/bridging/hlo/hlo_converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/bridging/hlo/hlo_converter.cc -------------------------------------------------------------------------------- /paragraph/bridging/hlo/hlo_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/bridging/hlo/hlo_converter.h -------------------------------------------------------------------------------- /paragraph/bridging/hlo/hlo_converter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/bridging/hlo/hlo_converter_test.cc -------------------------------------------------------------------------------- /paragraph/bridging/hlo/tensorflow_patches/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paragraph/bridging/hlo/tensorflow_patches/build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/bridging/hlo/tensorflow_patches/build.patch -------------------------------------------------------------------------------- /paragraph/bridging/hlo/tensorflow_patches/tf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/bridging/hlo/tensorflow_patches/tf.patch -------------------------------------------------------------------------------- /paragraph/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/README.md -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_bert_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_bert_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_bert_32_tpuv3_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_bert_32_tpuv3_stats.csv -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_dlrm_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_dlrm_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_dlrm_32_tpuv3_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_dlrm_32_tpuv3_stats.csv -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_maskrcnn_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_maskrcnn_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_maskrcnn_32_tpuv3_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_maskrcnn_32_tpuv3_stats.csv -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_nmt_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_nmt_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_nmt_32_tpuv3_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_nmt_32_tpuv3_stats.csv -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_resnet_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_resnet_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_resnet_32_tpuv3_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_resnet_32_tpuv3_stats.csv -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_ssd_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_ssd_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_ssd_32_tpuv3_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_ssd_32_tpuv3_stats.csv -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_transformer_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_transformer_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_after_optimizations_transformer_32_tpuv3_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_after_optimizations_transformer_32_tpuv3_stats.csv -------------------------------------------------------------------------------- /paragraph/data/hlo_before_optimizations_bert_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_before_optimizations_bert_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_before_optimizations_dlrm_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_before_optimizations_dlrm_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_before_optimizations_maskrcnn_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_before_optimizations_maskrcnn_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_before_optimizations_nmt_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_before_optimizations_nmt_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_before_optimizations_resnet_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_before_optimizations_resnet_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_before_optimizations_ssd_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_before_optimizations_ssd_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/data/hlo_before_optimizations_transformer_32_tpuv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/data/hlo_before_optimizations_transformer_32_tpuv3.txt -------------------------------------------------------------------------------- /paragraph/graph/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/BUILD -------------------------------------------------------------------------------- /paragraph/graph/graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/graph.cc -------------------------------------------------------------------------------- /paragraph/graph/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/graph.h -------------------------------------------------------------------------------- /paragraph/graph/graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/graph.proto -------------------------------------------------------------------------------- /paragraph/graph/graph_converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/graph_converter.cc -------------------------------------------------------------------------------- /paragraph/graph/graph_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/graph_test.cc -------------------------------------------------------------------------------- /paragraph/graph/instruction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/instruction.cc -------------------------------------------------------------------------------- /paragraph/graph/instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/instruction.h -------------------------------------------------------------------------------- /paragraph/graph/instruction_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/instruction_test.cc -------------------------------------------------------------------------------- /paragraph/graph/opcode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/opcode.cc -------------------------------------------------------------------------------- /paragraph/graph/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/opcode.h -------------------------------------------------------------------------------- /paragraph/graph/opcode_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/opcode_test.cc -------------------------------------------------------------------------------- /paragraph/graph/subroutine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/subroutine.cc -------------------------------------------------------------------------------- /paragraph/graph/subroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/subroutine.h -------------------------------------------------------------------------------- /paragraph/graph/subroutine_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/graph/subroutine_test.cc -------------------------------------------------------------------------------- /paragraph/scheduling/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/BUILD -------------------------------------------------------------------------------- /paragraph/scheduling/graph_scheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/graph_scheduler.cc -------------------------------------------------------------------------------- /paragraph/scheduling/graph_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/graph_scheduler.h -------------------------------------------------------------------------------- /paragraph/scheduling/graph_scheduler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/graph_scheduler_test.cc -------------------------------------------------------------------------------- /paragraph/scheduling/instruction_fsm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/instruction_fsm.cc -------------------------------------------------------------------------------- /paragraph/scheduling/instruction_fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/instruction_fsm.h -------------------------------------------------------------------------------- /paragraph/scheduling/instruction_fsm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/instruction_fsm_test.cc -------------------------------------------------------------------------------- /paragraph/scheduling/logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/logger.cc -------------------------------------------------------------------------------- /paragraph/scheduling/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/logger.h -------------------------------------------------------------------------------- /paragraph/scheduling/logger_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/logger_test.cc -------------------------------------------------------------------------------- /paragraph/scheduling/subroutine_fsm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/subroutine_fsm.cc -------------------------------------------------------------------------------- /paragraph/scheduling/subroutine_fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/subroutine_fsm.h -------------------------------------------------------------------------------- /paragraph/scheduling/subroutine_fsm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/scheduling/subroutine_fsm_test.cc -------------------------------------------------------------------------------- /paragraph/shim/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/shim/BUILD -------------------------------------------------------------------------------- /paragraph/shim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/shim/README.md -------------------------------------------------------------------------------- /paragraph/shim/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/shim/macros.h -------------------------------------------------------------------------------- /paragraph/shim/macros_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/shim/macros_test.cc -------------------------------------------------------------------------------- /paragraph/shim/statusor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/shim/statusor.h -------------------------------------------------------------------------------- /paragraph/shim/statusor_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/shim/statusor_internals.h -------------------------------------------------------------------------------- /paragraph/shim/statusor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/shim/statusor_test.cc -------------------------------------------------------------------------------- /paragraph/shim/test_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/shim/test_macros.h -------------------------------------------------------------------------------- /paragraph/shim/test_macros_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/shim/test_macros_test.cc -------------------------------------------------------------------------------- /paragraph/simulator/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/simulator/BUILD -------------------------------------------------------------------------------- /paragraph/simulator/simple_sim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/simulator/simple_sim.cc -------------------------------------------------------------------------------- /paragraph/simulator/simple_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/simulator/simple_sim.h -------------------------------------------------------------------------------- /paragraph/simulator/simple_sim_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/simulator/simple_sim_test.cc -------------------------------------------------------------------------------- /paragraph/simulator/simulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/simulator/simulator.cc -------------------------------------------------------------------------------- /paragraph/translation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/BUILD -------------------------------------------------------------------------------- /paragraph/translation/allgather/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/BUILD -------------------------------------------------------------------------------- /paragraph/translation/allgather/allgather_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/allgather_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/allgather_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/allgather_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allgather/bidir_ring_allgather_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/bidir_ring_allgather_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/bidir_ring_allgather_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/bidir_ring_allgather_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allgather/bidir_ring_allgather_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/bidir_ring_allgather_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/mesh_1d_allgather_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/mesh_1d_allgather_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/mesh_1d_allgather_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/mesh_1d_allgather_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allgather/mesh_1d_allgather_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/mesh_1d_allgather_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/mesh_2d_allgather_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/mesh_2d_allgather_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/mesh_2d_allgather_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/mesh_2d_allgather_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allgather/mesh_2d_allgather_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/mesh_2d_allgather_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/ring_over_2d_grid_allgather_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/ring_over_2d_grid_allgather_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/ring_over_2d_grid_allgather_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/ring_over_2d_grid_allgather_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allgather/ring_over_2d_grid_allgather_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/ring_over_2d_grid_allgather_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/torus_2d_allgather_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/torus_2d_allgather_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/torus_2d_allgather_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/torus_2d_allgather_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allgather/torus_2d_allgather_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/torus_2d_allgather_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/unidir_ring_allgather_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/unidir_ring_allgather_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allgather/unidir_ring_allgather_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/unidir_ring_allgather_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allgather/unidir_ring_allgather_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allgather/unidir_ring_allgather_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/BUILD -------------------------------------------------------------------------------- /paragraph/translation/allreduce/allreduce_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/allreduce_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/allreduce_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/allreduce_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allreduce/bidir_ring_allreduce_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/bidir_ring_allreduce_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/bidir_ring_allreduce_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/bidir_ring_allreduce_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allreduce/bidir_ring_allreduce_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/bidir_ring_allreduce_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/dissemination_allreduce_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/dissemination_allreduce_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/dissemination_allreduce_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/dissemination_allreduce_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allreduce/dissemination_allreduce_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/dissemination_allreduce_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/mesh_1d_allreduce_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/mesh_1d_allreduce_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/mesh_1d_allreduce_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/mesh_1d_allreduce_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allreduce/mesh_1d_allreduce_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/mesh_1d_allreduce_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/mesh_2d_allreduce_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/mesh_2d_allreduce_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/mesh_2d_allreduce_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/mesh_2d_allreduce_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allreduce/mesh_2d_allreduce_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/mesh_2d_allreduce_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/ring_over_2d_grid_allreduce_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/ring_over_2d_grid_allreduce_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/ring_over_2d_grid_allreduce_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/ring_over_2d_grid_allreduce_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allreduce/ring_over_2d_grid_allreduce_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/ring_over_2d_grid_allreduce_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/torus_2d_allreduce_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/torus_2d_allreduce_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/torus_2d_allreduce_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/torus_2d_allreduce_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allreduce/torus_2d_allreduce_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/torus_2d_allreduce_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/unidir_ring_allreduce_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/unidir_ring_allreduce_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/allreduce/unidir_ring_allreduce_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/unidir_ring_allreduce_translator.h -------------------------------------------------------------------------------- /paragraph/translation/allreduce/unidir_ring_allreduce_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/allreduce/unidir_ring_allreduce_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/barrier/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/barrier/BUILD -------------------------------------------------------------------------------- /paragraph/translation/barrier/barrier_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/barrier/barrier_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/barrier/barrier_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/barrier/barrier_translator.h -------------------------------------------------------------------------------- /paragraph/translation/barrier/centralized_barrier_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/barrier/centralized_barrier_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/barrier/centralized_barrier_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/barrier/centralized_barrier_translator.h -------------------------------------------------------------------------------- /paragraph/translation/barrier/centralized_barrier_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/barrier/centralized_barrier_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/graph_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/graph_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/recv/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/recv/BUILD -------------------------------------------------------------------------------- /paragraph/translation/recv/push_recv_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/recv/push_recv_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/recv/push_recv_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/recv/push_recv_translator.h -------------------------------------------------------------------------------- /paragraph/translation/recv/push_recv_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/recv/push_recv_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/recv/recv_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/recv/recv_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/recv/recv_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/recv/recv_translator.h -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/BUILD -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/bidir_ring_reducescatter_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/bidir_ring_reducescatter_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/bidir_ring_reducescatter_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/bidir_ring_reducescatter_translator.h -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/bidir_ring_reducescatter_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/bidir_ring_reducescatter_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/mesh_1d_reducescatter_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/mesh_1d_reducescatter_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/mesh_1d_reducescatter_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/mesh_1d_reducescatter_translator.h -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/mesh_1d_reducescatter_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/mesh_1d_reducescatter_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/mesh_2d_reducescatter_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/mesh_2d_reducescatter_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/mesh_2d_reducescatter_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/mesh_2d_reducescatter_translator.h -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/mesh_2d_reducescatter_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/mesh_2d_reducescatter_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/reducescatter_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/reducescatter_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/reducescatter_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/reducescatter_translator.h -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/ring_over_2d_grid_reducescatter_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/ring_over_2d_grid_reducescatter_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/ring_over_2d_grid_reducescatter_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/ring_over_2d_grid_reducescatter_translator.h -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/ring_over_2d_grid_reducescatter_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/ring_over_2d_grid_reducescatter_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/torus_2d_reducescatter_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/torus_2d_reducescatter_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/torus_2d_reducescatter_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/torus_2d_reducescatter_translator.h -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/torus_2d_reducescatter_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/torus_2d_reducescatter_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/unidir_ring_reducescatter_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/unidir_ring_reducescatter_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/unidir_ring_reducescatter_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/unidir_ring_reducescatter_translator.h -------------------------------------------------------------------------------- /paragraph/translation/reducescatter/unidir_ring_reducescatter_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/reducescatter/unidir_ring_reducescatter_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/send/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/send/BUILD -------------------------------------------------------------------------------- /paragraph/translation/send/push_send_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/send/push_send_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/send/push_send_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/send/push_send_translator.h -------------------------------------------------------------------------------- /paragraph/translation/send/push_send_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/send/push_send_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/send/send_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/send/send_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/send/send_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/send/send_translator.h -------------------------------------------------------------------------------- /paragraph/translation/sendrecv/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/sendrecv/BUILD -------------------------------------------------------------------------------- /paragraph/translation/sendrecv/push_sendrecv_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/sendrecv/push_sendrecv_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/sendrecv/push_sendrecv_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/sendrecv/push_sendrecv_translator.h -------------------------------------------------------------------------------- /paragraph/translation/sendrecv/push_sendrecv_translator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/sendrecv/push_sendrecv_translator_test.cc -------------------------------------------------------------------------------- /paragraph/translation/sendrecv/sendrecv_translator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/sendrecv/sendrecv_translator.cc -------------------------------------------------------------------------------- /paragraph/translation/sendrecv/sendrecv_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/sendrecv/sendrecv_translator.h -------------------------------------------------------------------------------- /paragraph/translation/translation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/translation.cc -------------------------------------------------------------------------------- /paragraph/translation/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/translation.h -------------------------------------------------------------------------------- /paragraph/translation/translation_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/translation_map.cc -------------------------------------------------------------------------------- /paragraph/translation/translation_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/translation_map.h -------------------------------------------------------------------------------- /paragraph/translation/translation_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/translation_test.cc -------------------------------------------------------------------------------- /paragraph/translation/translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/translator.h -------------------------------------------------------------------------------- /paragraph/translation/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/utils.cc -------------------------------------------------------------------------------- /paragraph/translation/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/utils.h -------------------------------------------------------------------------------- /paragraph/translation/utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/paragraph/HEAD/paragraph/translation/utils_test.cc --------------------------------------------------------------------------------