Home
last modified time | relevance | path

Searched refs:alltoall (Results 1 – 25 of 25) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/distributed/c10d/
H A DProcessGroupWrapper.cpp504 c10::intrusive_ptr<Work> ProcessGroupWrapper::alltoall( in alltoall() function in c10d::ProcessGroupWrapper
510 return backend_->alltoall(outputTensors, inputTensors, opts); in alltoall()
H A DProcessGroupWrapper.hpp77 c10::intrusive_ptr<Work> alltoall(
H A DFakeProcessGroup.hpp153 c10::intrusive_ptr<Work> alltoall( in alltoall() function in c10d::FakeProcessGroup
H A DBackend.hpp250 virtual c10::intrusive_ptr<Work> alltoall( in alltoall() function in c10d::Backend
H A DProcessGroupMPI.hpp209 c10::intrusive_ptr<Work> alltoall(
H A DProcessGroupUCC.hpp242 c10::intrusive_ptr<Work> alltoall(
H A DProcessGroupGloo.cpp2641 void alltoall(at::Tensor& outputTensor, at::Tensor& inputTensor) { in alltoall() function in c10d::__anon2d5ad4bf1911::AsyncAlltoallWork
2649 gloo::alltoall(opts); in alltoall()
2671 alltoall(outputTensor, inputTensor); in run()
2711 alltoall(cpuOutput, cpuInput); in run()
H A DOps.cpp397 auto work = process_group->getBackend(c10::DeviceType::DEV) -> alltoall( \
H A DFunctional.cpp630 auto work = group->alltoall(outputs, inputs); in shard_dim_alltoall()
H A DProcessGroup.hpp443 virtual c10::intrusive_ptr<Work> alltoall( in alltoall() function in c10d::ProcessGroup
H A DProcessGroupNCCL.hpp620 c10::intrusive_ptr<Work> alltoall(
H A DProcessGroupMPI.cpp779 c10::intrusive_ptr<Work> ProcessGroupMPI::alltoall( in alltoall() function in c10d::ProcessGroupMPI
H A Dinit.cpp2041 &::c10d::ProcessGroup::alltoall, in c10d_init()
2487 &::c10d::Backend::alltoall, in c10d_init()
H A DProcessGroupUCC.cpp1038 c10::intrusive_ptr<Work> ProcessGroupUCC::alltoall( in alltoall() function in c10d::ProcessGroupUCC
H A DProcessGroupNCCL.cpp4257 c10::intrusive_ptr<Work> ProcessGroupNCCL::alltoall( in checkForNCCLErrorsInternal() function in c10d::ProcessGroupNCCL
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/
H A Dlayout_assignment_test.cc1454 const HloInstruction* alltoall = FindInstruction(m.get(), "alltoall"); in TEST_F() local
1455 ExpectTupleLayoutIs(alltoall->shape(), {{1, 0}, {1, 0}}); in TEST_F()
1456 ExpectLayoutIs(alltoall->operand(0)->shape(), {1, 0}); in TEST_F()
1457 ExpectLayoutIs(alltoall->operand(1)->shape(), {1, 0}); in TEST_F()
/aosp_15_r20/external/pytorch/torch/_C/
H A D_distributed_c10d.pyi475 def alltoall(
482 def alltoall(
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/stablehlo/tests/
H A Dinfer_stablehlo.mlir115 // CHECK-LABEL: func @alltoall
116 func.func @alltoall(%data: tensor<4x16xf32>) -> tensor<16x4xindex> {
H A Dops_stablehlo.mlir212 // CHECK-LABEL: func @alltoall
213 func.func @alltoall(%data: tensor<4x16xf32>) -> tensor<16x4xf32> {
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/Dialect/mhlo/
H A Dmhlo_infer_shape_type_methods.mlir115 // CHECK-LABEL: func @alltoall
116 func.func @alltoall(%data: tensor<4x16xf32>) -> tensor<16x4xindex> {
H A Dops.mlir212 // CHECK-LABEL: func @alltoall
213 func.func @alltoall(%data: tensor<4x16xf32>) -> tensor<16x4xf32> {
/aosp_15_r20/external/pytorch/torch/testing/_internal/distributed/
H A Dmulti_threaded_pg.py330 def alltoall(self, output_tensor_list, input_tensor_list, opts=AllToAllOptions()): member in ProcessLocalGroup
/aosp_15_r20/external/pytorch/torch/distributed/
H A Ddistributed_c10d.py4114 work = group.alltoall(output_tensor_list, input_tensor_list, opts)
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/client/
H A Dxla_builder.cc3214 XlaOp alltoall = this->AllToAllTuple(slices, replica_groups, layout); in AllToAllTuple() local
3220 received.push_back(this->GetTupleElement(alltoall, i)); in AllToAllTuple()
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/g3doc/
H A Doperation_semantics.md176 XlaBuilder b("alltoall");