├── .clang-format ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── doc_request.md │ ├── feature_request.md │ └── question.md └── workflows │ ├── coverity.yml │ └── slack-pr.yaml ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INSTALL.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── ccl.map ├── cmake ├── FindIntelSYCL.cmake ├── FindIntelSYCL_level_zero.cmake ├── FindNUMA.cmake ├── FindSYCL.cmake ├── SYCL.cmake ├── ccl ├── helpers.cmake ├── setvars.sh.in ├── templates │ ├── oneCCLConfig.cmake.in │ └── oneCCLConfigVersion.cmake.in └── vars.sh.in ├── deps ├── hwloc │ ├── include │ │ ├── hwloc.h │ │ └── hwloc │ │ │ ├── autogen │ │ │ └── config.h │ │ │ ├── bitmap.h │ │ │ ├── cpukinds.h │ │ │ ├── deprecated.h │ │ │ ├── diff.h │ │ │ ├── distances.h │ │ │ ├── export.h │ │ │ ├── helper.h │ │ │ ├── inlines.h │ │ │ ├── memattrs.h │ │ │ └── rename.h │ └── lib │ │ └── libhwloc.a ├── itt │ ├── include │ │ └── ittnotify.h │ └── lib64 │ │ ├── libittnotify.a │ │ └── tracing_functions.so ├── level_zero │ └── include │ │ ├── layers │ │ ├── zel_tracing_api.h │ │ └── zel_tracing_register_cb.h │ │ ├── ze_api.h │ │ └── zes_api.h ├── mpi │ ├── bin │ │ ├── hydra_bstrap_proxy │ │ ├── hydra_nameserver │ │ ├── hydra_pmi_proxy │ │ ├── mpicc │ │ ├── mpicxx │ │ ├── mpiexec │ │ ├── mpiexec.hydra │ │ ├── mpigcc │ │ ├── mpigxx │ │ ├── mpiicc │ │ ├── mpiicpc │ │ ├── mpiicpx │ │ ├── mpiicx │ │ └── mpirun │ ├── include │ │ ├── mpi.h │ │ ├── mpicxx.h │ │ └── mpio.h │ ├── lib │ │ ├── libmpi.so │ │ ├── libmpi.so.12 │ │ ├── libmpi.so.12.0 │ │ ├── libmpi.so.12.0.0 │ │ ├── libmpicxx.so │ │ ├── libmpicxx.so.12 │ │ ├── libmpicxx.so.12.0 │ │ ├── libmpicxx.so.12.0.0 │ │ ├── libmpifort.so │ │ ├── libmpifort.so.12 │ │ ├── libmpifort.so.12.0 │ │ └── libmpifort.so.12.0.0 │ ├── licensing │ │ ├── license.txt │ │ └── third-party-programs.txt │ └── opt │ │ └── mpi │ │ └── etc │ │ ├── tuning_clx-ap_ofi.dat │ │ ├── tuning_clx-ap_shm-ofi.dat │ │ ├── tuning_clx-ap_shm.dat │ │ ├── tuning_emr_shm-ofi.dat │ │ ├── tuning_emr_shm-ofi_psm3_100.dat │ │ ├── tuning_emr_shm-ofi_psm3_200.dat │ │ ├── tuning_emr_shm.dat │ │ ├── tuning_generic_ofi.dat │ │ ├── tuning_generic_ofi_mlx_hcoll.dat │ │ ├── tuning_generic_shm-ofi.dat │ │ ├── tuning_generic_shm-ofi_mlx_hcoll.dat │ │ ├── tuning_generic_shm.dat │ │ ├── tuning_gnr_shm-ofi.dat │ │ ├── tuning_gnr_shm-ofi_thread-split.dat │ │ ├── tuning_gnr_shm.dat │ │ ├── tuning_gnr_shm_thread-split.dat │ │ ├── tuning_icx_ofi_mlx.dat │ │ ├── tuning_icx_shm-ofi_efa.dat │ │ ├── tuning_icx_shm-ofi_efa_100_x2.dat │ │ ├── tuning_icx_shm-ofi_mlx.dat │ │ ├── tuning_icx_shm-ofi_mlx_100.dat │ │ ├── tuning_icx_shm-ofi_psm3.dat │ │ ├── tuning_icx_shm-ofi_psm3_200.dat │ │ ├── tuning_icx_shm-ofi_tcp.dat │ │ ├── tuning_icx_shm.dat │ │ ├── tuning_icx_shm_efa.dat │ │ ├── tuning_icx_shm_efa_100_x2.dat │ │ ├── tuning_icx_shm_tcp.dat │ │ ├── tuning_skx_ofi.dat │ │ ├── tuning_skx_ofi_efa.dat │ │ ├── tuning_skx_ofi_psm3.dat │ │ ├── tuning_skx_ofi_tcp-ofi-rxm.dat │ │ ├── tuning_skx_shm-ofi.dat │ │ ├── tuning_skx_shm-ofi_efa.dat │ │ ├── tuning_skx_shm-ofi_psm3.dat │ │ ├── tuning_skx_shm-ofi_tcp-ofi-rxm.dat │ │ ├── tuning_skx_shm-ofi_tcp.dat │ │ ├── tuning_skx_shm.dat │ │ ├── tuning_spr_shm-ofi.dat │ │ ├── tuning_spr_shm-ofi_cxi.dat │ │ ├── tuning_spr_shm-ofi_tcp.dat │ │ ├── tuning_spr_shm.dat │ │ ├── tuning_spr_shm_cxi.dat │ │ ├── tuning_spr_shm_tcp.dat │ │ ├── tuning_srf_shm-ofi.dat │ │ └── tuning_srf_shm.dat ├── ofi │ ├── bin │ │ └── fi_info │ ├── include │ │ └── rdma │ │ │ ├── fabric.h │ │ │ ├── fi_atomic.h │ │ │ ├── fi_cm.h │ │ │ ├── fi_collective.h │ │ │ ├── fi_domain.h │ │ │ ├── fi_endpoint.h │ │ │ ├── fi_eq.h │ │ │ ├── fi_errno.h │ │ │ ├── fi_ext.h │ │ │ ├── fi_rma.h │ │ │ ├── fi_tagged.h │ │ │ ├── fi_trigger.h │ │ │ └── providers │ │ │ ├── fi_log.h │ │ │ ├── fi_peer.h │ │ │ └── fi_prov.h │ └── lib │ │ ├── libfabric.so │ │ ├── libfabric.so.1 │ │ └── prov │ │ ├── libpsm3-fi.so │ │ ├── libpsmx2-fi.so │ │ ├── librxm-fi.so │ │ ├── libshm-fi.so │ │ ├── libtcp-fi.so │ │ ├── libverbs-1.1-fi.so │ │ └── libverbs-1.12-fi.so ├── pmix │ ├── include │ │ ├── pmix.h │ │ ├── pmix_common.h │ │ ├── pmix_deprecated.h │ │ └── pmix_version.h │ └── update_pmix.sh └── umf │ ├── include │ ├── umf.h │ └── umf │ │ ├── base.h │ │ ├── ipc.h │ │ ├── memory_pool.h │ │ ├── memory_pool_ops.h │ │ ├── memory_provider.h │ │ ├── memory_provider_gpu.h │ │ ├── memory_provider_ops.h │ │ ├── mempolicy.h │ │ ├── memspace.h │ │ ├── memtarget.h │ │ ├── pools │ │ ├── pool_disjoint.h │ │ ├── pool_jemalloc.h │ │ ├── pool_proxy.h │ │ └── pool_scalable.h │ │ ├── providers │ │ ├── provider_coarse.h │ │ ├── provider_cuda.h │ │ ├── provider_devdax_memory.h │ │ ├── provider_file_memory.h │ │ ├── provider_fixed_memory.h │ │ ├── provider_level_zero.h │ │ └── provider_os_memory.h │ │ └── proxy_lib_new_delete.h │ └── update_umf.sh ├── doc ├── Dockerfile ├── Doxyfile ├── build_doc.md ├── build_doc.sh ├── build_doc_by_docker.sh ├── requirements.txt ├── rst │ ├── Makefile │ ├── Readme.txt │ ├── make.bat │ └── source │ │ ├── _static │ │ ├── favicons.png │ │ ├── oneAPI-rgb-rev-100.png │ │ └── style.css │ │ ├── _templates │ │ ├── footer.html │ │ └── layout.html │ │ ├── advanced-configuration.rst │ │ ├── advanced-configuration │ │ ├── collective-algorithms-selection.rst │ │ ├── dmabuf.rst │ │ ├── images │ │ │ └── unordered_coll.png │ │ ├── low-precision-datatypes.rst │ │ ├── operation-caching.rst │ │ ├── operation-fusion.rst │ │ └── operation-prioritization.rst │ │ ├── api.rst │ │ ├── api │ │ ├── concepts.rst │ │ ├── concepts │ │ │ ├── communicator.rst │ │ │ ├── context.rst │ │ │ ├── device.rst │ │ │ ├── event.rst │ │ │ ├── kvs.rst │ │ │ └── stream.rst │ │ ├── initialization.rst │ │ ├── operations.rst │ │ └── operations │ │ │ ├── collective-operations.rst │ │ │ ├── collective-operations │ │ │ ├── allgather.rst │ │ │ ├── allgatherv.rst │ │ │ ├── allreduce.rst │ │ │ ├── alltoall.rst │ │ │ ├── alltoallv.rst │ │ │ ├── barrier.rst │ │ │ ├── broadcast.rst │ │ │ ├── group-call.rst │ │ │ ├── reduce-scatter.rst │ │ │ └── reduce.rst │ │ │ ├── datatypes.rst │ │ │ └── point-to-point.rst │ │ ├── benchmark-guide │ │ ├── benchmark-point-to-point.rst │ │ └── benchmark.rst │ │ ├── conf.py │ │ ├── env-variables.rst │ │ ├── general-configuration.rst │ │ ├── general-configuration │ │ ├── operation-execution.rst │ │ └── transport-selection.rst │ │ ├── index.rst │ │ ├── introduction.rst │ │ ├── introduction │ │ ├── cmake-configuration.rst │ │ ├── installation.rst │ │ ├── sample.cpp │ │ └── sample.rst │ │ ├── legal.rst │ │ ├── programming-model.rst │ │ ├── programming-model │ │ ├── device-communication.rst │ │ └── host-communication.rst │ │ └── release-notes.rst └── update_requirements.sh ├── examples ├── CMakeLists.txt ├── benchmark │ ├── CMakeLists.txt │ ├── include │ │ ├── benchmark.hpp │ │ ├── coll.hpp │ │ ├── config.hpp │ │ ├── cpu_coll.hpp │ │ ├── lp.hpp │ │ ├── sycl_coll.hpp │ │ ├── transport.hpp │ │ └── types.hpp │ └── src │ │ ├── allgather │ │ ├── allgather_strategy.hpp │ │ ├── cpu_allgather_coll.hpp │ │ └── sycl_allgather_coll.hpp │ │ ├── allgatherv │ │ ├── allgatherv_strategy.hpp │ │ ├── cpu_allgatherv_coll.hpp │ │ └── sycl_allgatherv_coll.hpp │ │ ├── allreduce │ │ ├── allreduce_strategy.hpp │ │ ├── cpu_allreduce_coll.hpp │ │ └── sycl_allreduce_coll.hpp │ │ ├── alltoall │ │ ├── alltoall_strategy.hpp │ │ ├── cpu_alltoall_coll.hpp │ │ └── sycl_alltoall_coll.hpp │ │ ├── alltoallv │ │ ├── alltoallv_strategy.hpp │ │ ├── cpu_alltoallv_coll.hpp │ │ └── sycl_alltoallv_coll.hpp │ │ ├── bcast │ │ ├── bcast_strategy.hpp │ │ ├── cpu_bcast_coll.hpp │ │ └── sycl_bcast_coll.hpp │ │ ├── benchmark.cpp │ │ ├── declarations.hpp │ │ ├── reduce │ │ ├── cpu_reduce_coll.hpp │ │ ├── reduce_strategy.hpp │ │ └── sycl_reduce_coll.hpp │ │ ├── reduce_scatter │ │ ├── cpu_reduce_scatter_coll.hpp │ │ ├── reduce_scatter_strategy.hpp │ │ └── sycl_reduce_scatter_coll.hpp │ │ └── transport_impl.hpp ├── common │ ├── CMakeLists.txt │ └── version.cpp ├── cpu │ ├── CMakeLists.txt │ ├── cpu_allgather_test.cpp │ ├── cpu_allgatherv_test.cpp │ ├── cpu_allreduce_bf16_test.cpp │ ├── cpu_allreduce_test.cpp │ └── cpu_broadcast_test.cpp ├── external_launcher │ ├── CMakeLists.txt │ ├── external_launcher.cpp │ ├── run.sh │ └── run_binary.sh ├── include │ ├── base.hpp │ ├── base_utils.hpp │ ├── bf16.hpp │ ├── store.hpp │ └── sycl_base.hpp ├── pt2pt │ ├── CMakeLists.txt │ ├── include │ │ ├── pt2pt_base.hpp │ │ ├── pt2pt_transport.hpp │ │ └── types.hpp │ └── src │ │ ├── ccl_bw.cpp │ │ └── ccl_latency.cpp ├── run_new.sh └── sycl │ ├── CMakeLists.txt │ ├── sycl_allgather_test.cpp │ ├── sycl_allgatherv_custom_usm_test.cpp │ ├── sycl_allgatherv_inplace_test.cpp │ ├── sycl_allgatherv_inplace_usm_test.cpp │ ├── sycl_allgatherv_test.cpp │ ├── sycl_allgatherv_usm_comm_split.cpp │ ├── sycl_allgatherv_usm_test.cpp │ ├── sycl_allreduce_inplace_usm_test.cpp │ ├── sycl_allreduce_test.cpp │ ├── sycl_allreduce_usm_comm_split.cpp │ ├── sycl_allreduce_usm_test.cpp │ ├── sycl_alltoall_test.cpp │ ├── sycl_alltoall_usm_test.cpp │ ├── sycl_alltoallv_inplace_usm_test.cpp │ ├── sycl_alltoallv_test.cpp │ ├── sycl_alltoallv_usm_test.cpp │ ├── sycl_bcast_usm_test.cpp │ ├── sycl_broadcast_test.cpp │ ├── sycl_broadcast_usm_test.cpp │ ├── sycl_reduce_inplace_usm_test.cpp │ ├── sycl_reduce_scatter_inplace_usm_test.cpp │ ├── sycl_reduce_scatter_test.cpp │ ├── sycl_reduce_scatter_usm_comm_split.cpp │ ├── sycl_reduce_scatter_usm_test.cpp │ ├── sycl_reduce_test.cpp │ └── sycl_reduce_usm_test.cpp ├── include └── oneapi │ ├── ccl.hpp │ └── ccl │ ├── aliases.hpp │ ├── api_functions.hpp │ ├── coll_attr.hpp │ ├── coll_attr_ids.hpp │ ├── coll_attr_ids_traits.hpp │ ├── comm_attr.hpp │ ├── comm_attr_ids.hpp │ ├── comm_attr_ids_traits.hpp │ ├── comm_split_attr.hpp │ ├── comm_split_attr_ids.hpp │ ├── comm_split_attr_ids_traits.hpp │ ├── communicator.hpp │ ├── config.h.in │ ├── context.hpp │ ├── context_attr_ids.hpp │ ├── context_attr_ids_traits.hpp │ ├── datatype_attr.hpp │ ├── datatype_attr_ids.hpp │ ├── datatype_attr_ids_traits.hpp │ ├── device.hpp │ ├── device_attr_ids.hpp │ ├── device_attr_ids_traits.hpp │ ├── device_type_traits.hpp │ ├── device_types.hpp │ ├── environment.hpp │ ├── event.hpp │ ├── exception.hpp │ ├── init_attr.hpp │ ├── init_attr_ids.hpp │ ├── init_attr_ids_traits.hpp │ ├── kvs.hpp │ ├── kvs_attr.hpp │ ├── kvs_attr_ids.hpp │ ├── kvs_attr_ids_traits.hpp │ ├── lp_types.hpp │ ├── native_device_api │ ├── empty │ │ ├── context.hpp │ │ ├── device.hpp │ │ ├── event.hpp │ │ ├── export.hpp │ │ ├── platform.hpp │ │ ├── primitives.hpp │ │ └── queue.hpp │ ├── export_api.hpp │ └── sycl │ │ └── export.hpp │ ├── stream.hpp │ ├── stream_attr_ids.hpp │ ├── stream_attr_ids_traits.hpp │ ├── string.hpp │ ├── type_traits.hpp │ ├── types.hpp │ └── types_policy.hpp ├── pkgconfig ├── ccl │ └── cpu │ │ └── lib │ │ └── template.pc └── template.pc ├── src ├── CMakeLists.txt ├── MT │ └── shared_resource.hpp ├── atl │ ├── atl_base_comm.cpp │ ├── atl_base_comm.hpp │ ├── atl_base_transport.cpp │ ├── atl_base_transport.hpp │ ├── atl_def.cpp │ ├── atl_def.h │ ├── mpi │ │ ├── atl_mpi.cpp │ │ ├── atl_mpi.hpp │ │ ├── atl_mpi_comm.cpp │ │ ├── atl_mpi_comm.hpp │ │ ├── atl_mpi_ctx.cpp │ │ └── atl_mpi_ctx.hpp │ ├── ofi │ │ ├── atl_ofi.cpp │ │ ├── atl_ofi.hpp │ │ ├── atl_ofi_comm.cpp │ │ ├── atl_ofi_comm.hpp │ │ ├── atl_ofi_helper.cpp │ │ └── atl_ofi_helper.hpp │ └── util │ │ └── pm │ │ ├── codec │ │ └── pm_rt_codec.h │ │ ├── pm_rt.h │ │ ├── pmi_resizable_rt │ │ ├── pmi_resizable │ │ │ ├── def.h │ │ │ ├── helper.hpp │ │ │ ├── kvs │ │ │ │ ├── ikvs_wrapper.h │ │ │ │ ├── internal_kvs.cpp │ │ │ │ ├── internal_kvs.h │ │ │ │ ├── internal_kvs_server.cpp │ │ │ │ ├── internal_kvs_server.hpp │ │ │ │ ├── kvs_common_attr.hpp │ │ │ │ ├── users_kvs.cpp │ │ │ │ └── users_kvs.h │ │ │ ├── kvs_keeper.cpp │ │ │ ├── kvs_keeper.hpp │ │ │ ├── pmi_listener.hpp │ │ │ └── shift_list.hpp │ │ ├── pmi_resizable_simple.cpp │ │ ├── pmi_resizable_simple.h │ │ ├── pmi_resizable_simple_internal.cpp │ │ └── pmi_resizable_simple_internal.h │ │ └── pmi_rt │ │ ├── pmi │ │ ├── CMakeLists.txt │ │ ├── mpl.h │ │ ├── pmi.h │ │ ├── simple_pmi.c │ │ ├── simple_pmiutil.c │ │ └── simple_pmiutil.h │ │ ├── pmi_rt.c │ │ ├── pmi_simple.cpp │ │ └── pmi_simple.h ├── ccl_api_functions.cpp ├── ccl_api_functions_generators.hpp ├── ccl_app_api_coll_attr.cpp ├── ccl_app_api_comm_attr.cpp ├── ccl_app_api_comm_split_attr.cpp ├── ccl_app_api_datatype_attr.cpp ├── ccl_app_api_event.cpp ├── ccl_app_api_init_attr.cpp ├── ccl_app_api_kvs_attr.cpp ├── ccl_cpp_communicator.cpp ├── ccl_cpp_context.cpp ├── ccl_cpp_device.cpp ├── ccl_cpp_environment.cpp ├── ccl_cpp_kvs.cpp ├── ccl_cpp_stream.cpp ├── ccl_cpp_utils.cpp ├── ccl_empty_attr.cpp ├── ccl_empty_coll_attr.cpp ├── ccl_empty_comm_attr.cpp ├── ccl_empty_comm_split_attr.cpp ├── ccl_empty_init_attr.cpp ├── ccl_empty_kvs_attr.cpp ├── ccl_empty_stream.cpp ├── coll │ ├── algorithms │ │ ├── algorithm_utils.cpp │ │ ├── algorithm_utils.hpp │ │ ├── algorithms.hpp │ │ ├── allgather.cpp │ │ ├── allgatherv │ │ │ ├── allgatherv.cpp │ │ │ └── sycl │ │ │ │ ├── .clang-format │ │ │ │ ├── allgatherv_large_sycl.cpp │ │ │ │ ├── allgatherv_large_sycl_impl.hpp │ │ │ │ ├── allgatherv_medium_sycl.cpp │ │ │ │ ├── allgatherv_medium_sycl.hpp │ │ │ │ ├── allgatherv_pcie.cpp │ │ │ │ ├── allgatherv_pcie.hpp │ │ │ │ ├── allgatherv_ring.hpp │ │ │ │ ├── allgatherv_scaleout_sycl.cpp │ │ │ │ ├── allgatherv_small_sycl.cpp │ │ │ │ ├── allgatherv_small_sycl.hpp │ │ │ │ ├── allgatherv_small_sycl_impl.hpp │ │ │ │ ├── allgatherv_sycl.cpp │ │ │ │ └── allgatherv_sycl.hpp │ │ ├── allreduce │ │ │ ├── allreduce.cpp │ │ │ ├── allreduce_rma.cpp │ │ │ ├── allreduce_rma.hpp │ │ │ └── sycl │ │ │ │ ├── allreduce_large_sycl.cpp │ │ │ │ ├── allreduce_large_sycl.hpp │ │ │ │ ├── allreduce_large_sycl_bf16.cpp │ │ │ │ ├── allreduce_large_sycl_fp16.cpp │ │ │ │ ├── allreduce_large_sycl_fp32.cpp │ │ │ │ ├── allreduce_large_sycl_impl.hpp │ │ │ │ ├── allreduce_large_sycl_int32.cpp │ │ │ │ ├── allreduce_medium_sycl.cpp │ │ │ │ ├── allreduce_medium_sycl.hpp │ │ │ │ ├── allreduce_medium_sycl_bf16.cpp │ │ │ │ ├── allreduce_medium_sycl_fp16.cpp │ │ │ │ ├── allreduce_medium_sycl_fp32.cpp │ │ │ │ ├── allreduce_medium_sycl_int32.cpp │ │ │ │ ├── allreduce_pcie.cpp │ │ │ │ ├── allreduce_pcie.hpp │ │ │ │ ├── allreduce_rabenseifner.hpp │ │ │ │ ├── allreduce_ring.hpp │ │ │ │ ├── allreduce_ring_ll256.cpp │ │ │ │ ├── allreduce_ring_ll256.hpp │ │ │ │ ├── allreduce_scaleout_sycl.cpp │ │ │ │ ├── allreduce_small_sycl.cpp │ │ │ │ ├── allreduce_small_sycl.hpp │ │ │ │ ├── allreduce_small_sycl_impl.hpp │ │ │ │ ├── allreduce_small_sycl_noesimd.hpp │ │ │ │ ├── allreduce_sycl.cpp │ │ │ │ └── allreduce_sycl.hpp │ │ ├── alltoall │ │ │ ├── alltoall.cpp │ │ │ └── sycl │ │ │ │ ├── alltoall_large_sycl.cpp │ │ │ │ ├── alltoall_large_sycl.hpp │ │ │ │ ├── alltoall_large_sycl_impl.hpp │ │ │ │ ├── alltoall_ll256.hpp │ │ │ │ ├── alltoall_sycl.cpp │ │ │ │ └── alltoall_sycl.hpp │ │ ├── alltoallv.cpp │ │ ├── barrier │ │ │ └── barrier.cpp │ │ ├── broadcast │ │ │ ├── bcast.cpp │ │ │ ├── broadcast.cpp │ │ │ ├── mpi_bcast_invoke.hpp │ │ │ └── sycl │ │ │ │ ├── broadcast_large_sycl.cpp │ │ │ │ ├── broadcast_large_sycl_impl.hpp │ │ │ │ ├── broadcast_scaleout_sycl.cpp │ │ │ │ ├── broadcast_small_sycl.cpp │ │ │ │ ├── broadcast_small_sycl_impl.hpp │ │ │ │ ├── broadcast_sycl.cpp │ │ │ │ └── broadcast_sycl.hpp │ │ ├── double_tree_ops.cpp │ │ ├── recv │ │ │ ├── recv.cpp │ │ │ └── sycl │ │ │ │ ├── recv_sycl.cpp │ │ │ │ └── recv_sycl.hpp │ │ ├── reduce.cpp │ │ ├── reduce_scatter │ │ │ ├── reduce_scatter.cpp │ │ │ └── sycl │ │ │ │ ├── .clang-format │ │ │ │ ├── reduce_scatter_large_sycl.cpp │ │ │ │ ├── reduce_scatter_large_sycl.hpp │ │ │ │ ├── reduce_scatter_large_sycl_bf16.cpp │ │ │ │ ├── reduce_scatter_large_sycl_fp16.cpp │ │ │ │ ├── reduce_scatter_large_sycl_fp32.cpp │ │ │ │ ├── reduce_scatter_large_sycl_impl.hpp │ │ │ │ ├── reduce_scatter_large_sycl_int32.cpp │ │ │ │ ├── reduce_scatter_medium_sycl.cpp │ │ │ │ ├── reduce_scatter_medium_sycl.hpp │ │ │ │ ├── reduce_scatter_pcie.cpp │ │ │ │ ├── reduce_scatter_pcie.hpp │ │ │ │ ├── reduce_scatter_ring.hpp │ │ │ │ ├── reduce_scatter_scaleout_sycl.cpp │ │ │ │ ├── reduce_scatter_small_sycl.cpp │ │ │ │ ├── reduce_scatter_small_sycl.hpp │ │ │ │ ├── reduce_scatter_small_sycl_impl.hpp │ │ │ │ ├── reduce_scatter_sycl.cpp │ │ │ │ └── reduce_scatter_sycl.hpp │ │ ├── send │ │ │ ├── send.cpp │ │ │ └── sycl │ │ │ │ ├── send_sycl.cpp │ │ │ │ └── send_sycl.hpp │ │ └── utils │ │ │ ├── rt64.hpp │ │ │ ├── rt64_128.hpp │ │ │ ├── sycl_coll_base.cpp │ │ │ ├── sycl_coll_base.hpp │ │ │ ├── sycl_kernels.hpp │ │ │ ├── sycl_ll256.cpp │ │ │ ├── sycl_ll256.hpp │ │ │ ├── sycl_pipe_send.cpp │ │ │ ├── sycl_selection.cpp │ │ │ ├── sycl_selection.hpp │ │ │ ├── transmit │ │ │ ├── ring_transmit.hpp │ │ │ └── transmit.hpp │ │ │ └── tvisa │ │ │ └── include │ │ │ ├── gateway.hpp │ │ │ ├── gen_visa_templates.hpp │ │ │ ├── list_raw_loads.list │ │ │ ├── list_raw_prefetches.list │ │ │ ├── list_raw_stores.list │ │ │ ├── list_ugm_loads.list │ │ │ ├── list_ugm_prefetches.list │ │ │ ├── list_ugm_stores.list │ │ │ ├── lsc.hpp │ │ │ ├── lsc_untyped_list.hpp │ │ │ ├── regmap.hpp │ │ │ ├── set_zero.hpp │ │ │ └── systolic.hpp │ ├── attr │ │ ├── ccl_allgather_op_attr.cpp │ │ ├── ccl_allgather_op_attr.hpp │ │ ├── ccl_allgatherv_op_attr.cpp │ │ ├── ccl_allgatherv_op_attr.hpp │ │ ├── ccl_allreduce_op_attr.cpp │ │ ├── ccl_allreduce_op_attr.hpp │ │ ├── ccl_alltoall_op_attr.cpp │ │ ├── ccl_alltoall_op_attr.hpp │ │ ├── ccl_alltoallv_op_attr.cpp │ │ ├── ccl_alltoallv_op_attr.hpp │ │ ├── ccl_attrs.hpp │ │ ├── ccl_barrier_op_attr.cpp │ │ ├── ccl_barrier_op_attr.hpp │ │ ├── ccl_bcast_op_attr.cpp │ │ ├── ccl_bcast_op_attr.hpp │ │ ├── ccl_common_op_attrs.cpp │ │ ├── ccl_common_op_attrs.hpp │ │ ├── ccl_pt2pt_op_attr.cpp │ │ ├── ccl_pt2pt_op_attr.hpp │ │ ├── ccl_reduce_op_attr.cpp │ │ ├── ccl_reduce_op_attr.hpp │ │ ├── ccl_reduce_scatter_op_attr.cpp │ │ └── ccl_reduce_scatter_op_attr.hpp │ ├── coll.cpp │ ├── coll.hpp │ ├── coll_check.cpp │ ├── coll_check.hpp │ ├── coll_param.cpp │ ├── coll_param.hpp │ ├── coll_util.cpp │ ├── coll_util.hpp │ ├── group │ │ ├── group.cpp │ │ └── group.hpp │ ├── reduction │ │ ├── reduction.cpp │ │ └── reduction.hpp │ └── selection │ │ ├── selection.cpp │ │ ├── selection.hpp │ │ ├── selector.hpp │ │ ├── selector_allgather.cpp │ │ ├── selector_allgatherv.cpp │ │ ├── selector_allreduce.cpp │ │ ├── selector_alltoall.cpp │ │ ├── selector_alltoallv.cpp │ │ ├── selector_barrier.cpp │ │ ├── selector_bcast.cpp │ │ ├── selector_helper.hpp │ │ ├── selector_impl.hpp │ │ ├── selector_recv.cpp │ │ ├── selector_reduce.cpp │ │ ├── selector_reduce_scatter.cpp │ │ ├── selector_send.cpp │ │ └── selector_wrapper.hpp ├── coll_attr_creation_impl.hpp ├── coll_attr_impl.hpp ├── comm │ ├── atl_tag.cpp │ ├── atl_tag.hpp │ ├── comm.cpp │ ├── comm.hpp │ ├── comm_common_attr.hpp │ ├── comm_impl.hpp │ ├── comm_interface.hpp │ ├── comm_selector.cpp │ ├── comm_selector.hpp │ ├── comm_split_common_attr.hpp │ ├── mt_comm.cpp │ ├── stub_comm.cpp │ └── stub_comm.hpp ├── comm_attr_impl.hpp ├── comm_split_attr_impl.hpp ├── common │ ├── api_wrapper │ │ ├── api_wrapper.cpp │ │ ├── api_wrapper.hpp │ │ ├── mpi_api_wrapper.cpp │ │ ├── mpi_api_wrapper.hpp │ │ ├── ofi_api_wrapper.cpp │ │ ├── ofi_api_wrapper.hpp │ │ ├── openmp_wrapper.cpp │ │ ├── openmp_wrapper.hpp │ │ ├── pmix_api_wrapper.cpp │ │ ├── pmix_api_wrapper.hpp │ │ ├── umf_api_wrapper.cpp │ │ ├── umf_api_wrapper.hpp │ │ ├── ze_api_wrapper.cpp │ │ └── ze_api_wrapper.hpp │ ├── context │ │ ├── context.cpp │ │ └── context.hpp │ ├── datatype │ │ ├── datatype.cpp │ │ ├── datatype.hpp │ │ └── datatype_attr.hpp │ ├── device │ │ ├── device.cpp │ │ └── device.hpp │ ├── env │ │ ├── .clang-format │ │ ├── env.cpp │ │ ├── env.hpp │ │ ├── env_parser.cpp │ │ ├── env_parser.hpp │ │ ├── vars.hpp │ │ └── vars_experimental.hpp │ ├── event │ │ ├── ccl_event.cpp │ │ ├── ccl_event.hpp │ │ ├── ccl_event_attr_ids.hpp │ │ ├── ccl_event_attr_ids_traits.hpp │ │ └── impls │ │ │ ├── empty_event.hpp │ │ │ ├── event_impl.hpp │ │ │ ├── host_event.cpp │ │ │ ├── host_event.hpp │ │ │ ├── native_event.cpp │ │ │ ├── native_event.hpp │ │ │ └── stub_event.hpp │ ├── framework │ │ ├── framework.cpp │ │ └── framework.hpp │ ├── global │ │ ├── global.cpp │ │ ├── global.hpp │ │ └── ze │ │ │ ├── ze_data.cpp │ │ │ ├── ze_data.hpp │ │ │ ├── ze_fd_manager.cpp │ │ │ └── ze_fd_manager.hpp │ ├── log │ │ ├── log.cpp │ │ └── log.hpp │ ├── request │ │ ├── request.cpp │ │ └── request.hpp │ ├── stream │ │ ├── stream.cpp │ │ ├── stream.hpp │ │ ├── stream_selector.hpp │ │ └── stream_selector_impl.hpp │ └── utils │ │ ├── buffer.hpp │ │ ├── comm_profile.cpp │ │ ├── comm_profile.hpp │ │ ├── enums.hpp │ │ ├── exchange_utils.cpp │ │ ├── exchange_utils.hpp │ │ ├── fd_info.cpp │ │ ├── fd_info.hpp │ │ ├── hash.hpp │ │ ├── memcpy.cpp │ │ ├── memcpy.hpp │ │ ├── profile.cpp │ │ ├── profile.hpp │ │ ├── spinlock.cpp │ │ ├── spinlock.hpp │ │ ├── sycl_utils.cpp │ │ ├── sycl_utils.hpp │ │ ├── sync_object.hpp │ │ ├── tree.hpp │ │ ├── tuple.hpp │ │ ├── utils.cpp │ │ ├── utils.hpp │ │ ├── version.cpp │ │ ├── version.hpp │ │ ├── yield.cpp │ │ └── yield.hpp ├── communicator_impl.hpp ├── comp │ ├── bf16 │ │ ├── bf16.cpp │ │ ├── bf16.hpp │ │ ├── bf16_intrisics.cpp │ │ ├── bf16_intrisics.hpp │ │ └── bf16_utils.hpp │ ├── comp.cpp │ ├── comp.hpp │ └── fp16 │ │ ├── fp16.cpp │ │ ├── fp16.hpp │ │ ├── fp16_intrisics.cpp │ │ ├── fp16_intrisics.hpp │ │ └── fp16_utils.hpp ├── context_impl.hpp ├── datatype_attr_impl.hpp ├── device_impl.hpp ├── environment_impl.hpp ├── exec │ ├── exec.cpp │ ├── exec.hpp │ └── thread │ │ ├── base_thread.cpp │ │ ├── base_thread.hpp │ │ ├── listener.cpp │ │ ├── listener.hpp │ │ ├── service_worker.cpp │ │ ├── service_worker.hpp │ │ ├── worker.cpp │ │ └── worker.hpp ├── ext │ ├── CMakeLists.txt │ └── openmp │ │ ├── CMakeLists.txt │ │ └── openmp_ext.cpp ├── fusion │ ├── fusion.cpp │ └── fusion.hpp ├── hwloc │ ├── hwloc_wrapper.cpp │ └── hwloc_wrapper.hpp ├── init_attr_impl.hpp ├── internal_types.hpp ├── kernels │ ├── bf16.h │ ├── common.h │ ├── fp16.h │ ├── kernels.cl │ └── kernels.spv ├── kvs_attr_impl.hpp ├── kvs_impl.hpp ├── native_device_api │ └── sycl │ │ └── export.cpp ├── parallelizer │ ├── parallelizer.cpp │ └── parallelizer.hpp ├── sched │ ├── buffer │ │ ├── buffer_cache.cpp │ │ ├── buffer_cache.hpp │ │ ├── buffer_manager.cpp │ │ └── buffer_manager.hpp │ ├── cache │ │ ├── cache.cpp │ │ ├── cache.hpp │ │ ├── key.cpp │ │ ├── key.hpp │ │ ├── recycle_storage.cpp │ │ └── recycle_storage.hpp │ ├── entry │ │ ├── ack_accept_entry.hpp │ │ ├── ack_report_entry.hpp │ │ ├── coll │ │ │ ├── coll_entry.cpp │ │ │ ├── coll_entry.hpp │ │ │ └── direct │ │ │ │ ├── allgatherv_entry.hpp │ │ │ │ ├── allreduce_entry.hpp │ │ │ │ ├── alltoall_entry.hpp │ │ │ │ ├── alltoallv_entry.hpp │ │ │ │ ├── barrier_entry.hpp │ │ │ │ ├── base_coll_entry.hpp │ │ │ │ ├── bcast_entry.hpp │ │ │ │ ├── reduce_entry.hpp │ │ │ │ └── reduce_scatter_entry.hpp │ │ ├── copy │ │ │ ├── copy_entry.cpp │ │ │ ├── copy_entry.hpp │ │ │ ├── copy_helper.cpp │ │ │ └── copy_helper.hpp │ │ ├── deps_entry.cpp │ │ ├── deps_entry.hpp │ │ ├── deregister_entry.hpp │ │ ├── entry.cpp │ │ ├── entry.hpp │ │ ├── factory │ │ │ ├── chunked_entry_factory.cpp │ │ │ ├── chunked_entry_factory.hpp │ │ │ ├── entry_factory.h │ │ │ └── entry_factory.hpp │ │ ├── function_entry.hpp │ │ ├── postponed_fields.hpp │ │ ├── probe_entry.hpp │ │ ├── recv_copy_entry.cpp │ │ ├── recv_copy_entry.hpp │ │ ├── recv_entry.hpp │ │ ├── recv_reduce_entry.hpp │ │ ├── reduce_local_entry.cpp │ │ ├── reduce_local_entry.hpp │ │ ├── register_entry.hpp │ │ ├── send_entry.hpp │ │ ├── subsched_entry.hpp │ │ ├── sync_entry.hpp │ │ ├── wait_value_entry.hpp │ │ ├── write_entry.hpp │ │ └── ze │ │ │ ├── allreduce │ │ │ ├── ze_a2a_allreduce_entry.cpp │ │ │ ├── ze_a2a_allreduce_entry.hpp │ │ │ ├── ze_onesided_allreduce_entry.cpp │ │ │ └── ze_onesided_allreduce_entry.hpp │ │ │ ├── cache │ │ │ ├── ze_cache.cpp │ │ │ ├── ze_cache.hpp │ │ │ ├── ze_device_cache.cpp │ │ │ └── ze_device_cache.hpp │ │ │ ├── ze_a2a_allgatherv_entry.cpp │ │ │ ├── ze_a2a_allgatherv_entry.hpp │ │ │ ├── ze_a2a_pipeline_reduce_scatter_entry.cpp │ │ │ ├── ze_a2a_pipeline_reduce_scatter_entry.hpp │ │ │ ├── ze_a2a_reduce_scatter_entry.cpp │ │ │ ├── ze_a2a_reduce_scatter_entry.hpp │ │ │ ├── ze_alltoallv_entry.cpp │ │ │ ├── ze_alltoallv_entry.hpp │ │ │ ├── ze_barrier_entry.cpp │ │ │ ├── ze_barrier_entry.hpp │ │ │ ├── ze_base_entry.cpp │ │ │ ├── ze_base_entry.hpp │ │ │ ├── ze_call.cpp │ │ │ ├── ze_call.hpp │ │ │ ├── ze_cmdlist_event_signal_entry.cpp │ │ │ ├── ze_cmdlist_event_signal_entry.hpp │ │ │ ├── ze_cmdlist_timestamp.cpp │ │ │ ├── ze_cmdlist_timestamp.hpp │ │ │ ├── ze_command.cpp │ │ │ ├── ze_command.hpp │ │ │ ├── ze_copy_entry.cpp │ │ │ ├── ze_copy_entry.hpp │ │ │ ├── ze_dummy_entry.cpp │ │ │ ├── ze_dummy_entry.hpp │ │ │ ├── ze_event_signal_entry.cpp │ │ │ ├── ze_event_signal_entry.hpp │ │ │ ├── ze_event_wait_entry.cpp │ │ │ ├── ze_event_wait_entry.hpp │ │ │ ├── ze_execute_cmdlists_entry.hpp │ │ │ ├── ze_handle_exchange_entry.cpp │ │ │ ├── ze_handle_exchange_entry.hpp │ │ │ ├── ze_kernel.cpp │ │ │ ├── ze_kernel.hpp │ │ │ ├── ze_membarrier_entry.cpp │ │ │ ├── ze_membarrier_entry.hpp │ │ │ ├── ze_onesided_reduce_entry.cpp │ │ │ ├── ze_onesided_reduce_entry.hpp │ │ │ ├── ze_primitives.cpp │ │ │ ├── ze_primitives.hpp │ │ │ ├── ze_pt2pt_barrier_entry.cpp │ │ │ ├── ze_pt2pt_barrier_entry.hpp │ │ │ ├── ze_reduce_local_entry.cpp │ │ │ └── ze_reduce_local_entry.hpp │ ├── queue │ │ ├── flow_control.cpp │ │ ├── flow_control.hpp │ │ ├── queue.cpp │ │ ├── queue.hpp │ │ ├── strict_queue.cpp │ │ └── strict_queue.hpp │ ├── sched.cpp │ ├── sched.hpp │ ├── sched_base.cpp │ ├── sched_base.hpp │ ├── sched_group.cpp │ ├── sched_group.hpp │ ├── sched_restart_manager.cpp │ ├── sched_restart_manager.hpp │ ├── sched_timer.cpp │ ├── sched_timer.hpp │ └── ze │ │ ├── ze_event_manager.cpp │ │ ├── ze_event_manager.hpp │ │ ├── ze_handle_manager.cpp │ │ ├── ze_handle_manager.hpp │ │ ├── ze_ipc_event_pool_manager.cpp │ │ ├── ze_ipc_event_pool_manager.hpp │ │ ├── ze_list_manager.cpp │ │ └── ze_list_manager.hpp ├── stream_impl.hpp ├── stub_kvs_impl.cpp ├── stub_kvs_impl.hpp ├── topology │ ├── mt_topo_manager.cpp │ ├── topo_manager.cpp │ └── topo_manager.hpp ├── types_generator_defines.hpp ├── umf │ ├── ipc.cpp │ └── ipc.hpp └── unordered_coll │ ├── unordered_coll.cpp │ └── unordered_coll.hpp ├── tests ├── functional │ ├── CMakeLists.txt │ ├── allgather_test.cpp │ ├── allgatherv_test.cpp │ ├── allreduce_test.cpp │ ├── alltoall_test.cpp │ ├── alltoallv_test.cpp │ ├── bcast_test.cpp │ ├── broadcast_test.cpp │ ├── conf.cpp │ ├── conf.hpp │ ├── lp.cpp │ ├── lp.hpp │ ├── lp_impl.hpp │ ├── reduce_scatter_test.cpp │ ├── reduce_test.cpp │ ├── run.sh │ ├── test.hpp │ ├── test_impl.hpp │ ├── transport.cpp │ ├── transport.hpp │ └── utils.hpp └── googletest-release-1.8.1 │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile.am │ ├── README.md │ └── googletest │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.md │ ├── cmake │ ├── Config.cmake.in │ ├── gtest.pc.in │ ├── gtest_main.pc.in │ └── internal_utils.cmake │ ├── include │ └── gtest │ │ ├── gtest-death-test.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-param-test.h.pump │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ └── internal │ │ ├── custom │ │ ├── README.md │ │ ├── gtest-port.h │ │ ├── gtest-printers.h │ │ └── gtest.h │ │ ├── gtest-death-test-internal.h │ │ ├── gtest-filepath.h │ │ ├── gtest-internal.h │ │ ├── gtest-linked_ptr.h │ │ ├── gtest-param-util-generated.h │ │ ├── gtest-param-util-generated.h.pump │ │ ├── gtest-param-util.h │ │ ├── gtest-port-arch.h │ │ ├── gtest-port.h │ │ ├── gtest-string.h │ │ ├── gtest-tuple.h │ │ ├── gtest-tuple.h.pump │ │ ├── gtest-type-util.h │ │ └── gtest-type-util.h.pump │ └── src │ ├── gtest-all.cc │ ├── gtest-death-test.cc │ ├── gtest-filepath.cc │ ├── gtest-internal-inl.h │ ├── gtest-port.cc │ ├── gtest-printers.cc │ ├── gtest-test-part.cc │ ├── gtest-typed-test.cc │ ├── gtest.cc │ └── gtest_main.cc └── third-party-programs.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/.github/ISSUE_TEMPLATE/doc_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/coverity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/.github/workflows/coverity.yml -------------------------------------------------------------------------------- /.github/workflows/slack-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/.github/workflows/slack-pr.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ccl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/ccl.map -------------------------------------------------------------------------------- /cmake/FindIntelSYCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/FindIntelSYCL.cmake -------------------------------------------------------------------------------- /cmake/FindIntelSYCL_level_zero.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/FindIntelSYCL_level_zero.cmake -------------------------------------------------------------------------------- /cmake/FindNUMA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/FindNUMA.cmake -------------------------------------------------------------------------------- /cmake/FindSYCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/FindSYCL.cmake -------------------------------------------------------------------------------- /cmake/SYCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/SYCL.cmake -------------------------------------------------------------------------------- /cmake/ccl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/ccl -------------------------------------------------------------------------------- /cmake/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/helpers.cmake -------------------------------------------------------------------------------- /cmake/setvars.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/setvars.sh.in -------------------------------------------------------------------------------- /cmake/templates/oneCCLConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/templates/oneCCLConfig.cmake.in -------------------------------------------------------------------------------- /cmake/templates/oneCCLConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/templates/oneCCLConfigVersion.cmake.in -------------------------------------------------------------------------------- /cmake/vars.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/cmake/vars.sh.in -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/autogen/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/autogen/config.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/bitmap.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/cpukinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/cpukinds.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/deprecated.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/diff.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/distances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/distances.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/export.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/helper.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/inlines.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/memattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/memattrs.h -------------------------------------------------------------------------------- /deps/hwloc/include/hwloc/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/include/hwloc/rename.h -------------------------------------------------------------------------------- /deps/hwloc/lib/libhwloc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/hwloc/lib/libhwloc.a -------------------------------------------------------------------------------- /deps/itt/include/ittnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/itt/include/ittnotify.h -------------------------------------------------------------------------------- /deps/itt/lib64/libittnotify.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/itt/lib64/libittnotify.a -------------------------------------------------------------------------------- /deps/itt/lib64/tracing_functions.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/itt/lib64/tracing_functions.so -------------------------------------------------------------------------------- /deps/level_zero/include/layers/zel_tracing_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/level_zero/include/layers/zel_tracing_api.h -------------------------------------------------------------------------------- /deps/level_zero/include/layers/zel_tracing_register_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/level_zero/include/layers/zel_tracing_register_cb.h -------------------------------------------------------------------------------- /deps/level_zero/include/ze_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/level_zero/include/ze_api.h -------------------------------------------------------------------------------- /deps/level_zero/include/zes_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/level_zero/include/zes_api.h -------------------------------------------------------------------------------- /deps/mpi/bin/hydra_bstrap_proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/hydra_bstrap_proxy -------------------------------------------------------------------------------- /deps/mpi/bin/hydra_nameserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/hydra_nameserver -------------------------------------------------------------------------------- /deps/mpi/bin/hydra_pmi_proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/hydra_pmi_proxy -------------------------------------------------------------------------------- /deps/mpi/bin/mpicc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpicc -------------------------------------------------------------------------------- /deps/mpi/bin/mpicxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpicxx -------------------------------------------------------------------------------- /deps/mpi/bin/mpiexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpiexec -------------------------------------------------------------------------------- /deps/mpi/bin/mpiexec.hydra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpiexec.hydra -------------------------------------------------------------------------------- /deps/mpi/bin/mpigcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpigcc -------------------------------------------------------------------------------- /deps/mpi/bin/mpigxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpigxx -------------------------------------------------------------------------------- /deps/mpi/bin/mpiicc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpiicc -------------------------------------------------------------------------------- /deps/mpi/bin/mpiicpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpiicpc -------------------------------------------------------------------------------- /deps/mpi/bin/mpiicpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpiicpx -------------------------------------------------------------------------------- /deps/mpi/bin/mpiicx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpiicx -------------------------------------------------------------------------------- /deps/mpi/bin/mpirun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/bin/mpirun -------------------------------------------------------------------------------- /deps/mpi/include/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/include/mpi.h -------------------------------------------------------------------------------- /deps/mpi/include/mpicxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/include/mpicxx.h -------------------------------------------------------------------------------- /deps/mpi/include/mpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/include/mpio.h -------------------------------------------------------------------------------- /deps/mpi/lib/libmpi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpi.so -------------------------------------------------------------------------------- /deps/mpi/lib/libmpi.so.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpi.so.12 -------------------------------------------------------------------------------- /deps/mpi/lib/libmpi.so.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpi.so.12.0 -------------------------------------------------------------------------------- /deps/mpi/lib/libmpi.so.12.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpi.so.12.0.0 -------------------------------------------------------------------------------- /deps/mpi/lib/libmpicxx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpicxx.so -------------------------------------------------------------------------------- /deps/mpi/lib/libmpicxx.so.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpicxx.so.12 -------------------------------------------------------------------------------- /deps/mpi/lib/libmpicxx.so.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpicxx.so.12.0 -------------------------------------------------------------------------------- /deps/mpi/lib/libmpicxx.so.12.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpicxx.so.12.0.0 -------------------------------------------------------------------------------- /deps/mpi/lib/libmpifort.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpifort.so -------------------------------------------------------------------------------- /deps/mpi/lib/libmpifort.so.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpifort.so.12 -------------------------------------------------------------------------------- /deps/mpi/lib/libmpifort.so.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpifort.so.12.0 -------------------------------------------------------------------------------- /deps/mpi/lib/libmpifort.so.12.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/lib/libmpifort.so.12.0.0 -------------------------------------------------------------------------------- /deps/mpi/licensing/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/licensing/license.txt -------------------------------------------------------------------------------- /deps/mpi/licensing/third-party-programs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/licensing/third-party-programs.txt -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_clx-ap_ofi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_clx-ap_ofi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_clx-ap_shm-ofi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_clx-ap_shm-ofi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_clx-ap_shm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_clx-ap_shm.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_emr_shm-ofi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_emr_shm-ofi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_emr_shm-ofi_psm3_100.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_emr_shm-ofi_psm3_100.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_emr_shm-ofi_psm3_200.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_emr_shm-ofi_psm3_200.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_emr_shm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_emr_shm.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_generic_ofi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_generic_ofi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_generic_ofi_mlx_hcoll.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_generic_ofi_mlx_hcoll.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_generic_shm-ofi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_generic_shm-ofi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_generic_shm-ofi_mlx_hcoll.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_generic_shm-ofi_mlx_hcoll.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_generic_shm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_generic_shm.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_gnr_shm-ofi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_gnr_shm-ofi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_gnr_shm-ofi_thread-split.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_gnr_shm-ofi_thread-split.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_gnr_shm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_gnr_shm.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_gnr_shm_thread-split.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_gnr_shm_thread-split.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_ofi_mlx.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_ofi_mlx.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_efa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_efa.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_efa_100_x2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_efa_100_x2.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_mlx.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_mlx.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_mlx_100.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_mlx_100.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_psm3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_psm3.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_psm3_200.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_psm3_200.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_tcp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm-ofi_tcp.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm_efa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm_efa.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm_efa_100_x2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm_efa_100_x2.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_icx_shm_tcp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_icx_shm_tcp.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_skx_ofi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_skx_ofi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_skx_ofi_efa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_skx_ofi_efa.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_skx_ofi_psm3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_skx_ofi_psm3.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_skx_ofi_tcp-ofi-rxm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_skx_ofi_tcp-ofi-rxm.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_skx_shm-ofi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_skx_shm-ofi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_skx_shm-ofi_efa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_skx_shm-ofi_efa.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_skx_shm-ofi_psm3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_skx_shm-ofi_psm3.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_skx_shm-ofi_tcp-ofi-rxm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_skx_shm-ofi_tcp-ofi-rxm.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_skx_shm-ofi_tcp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_skx_shm-ofi_tcp.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_skx_shm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_skx_shm.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_spr_shm-ofi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_spr_shm-ofi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_spr_shm-ofi_cxi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_spr_shm-ofi_cxi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_spr_shm-ofi_tcp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_spr_shm-ofi_tcp.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_spr_shm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_spr_shm.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_spr_shm_cxi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_spr_shm_cxi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_spr_shm_tcp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_spr_shm_tcp.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_srf_shm-ofi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_srf_shm-ofi.dat -------------------------------------------------------------------------------- /deps/mpi/opt/mpi/etc/tuning_srf_shm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/mpi/opt/mpi/etc/tuning_srf_shm.dat -------------------------------------------------------------------------------- /deps/ofi/bin/fi_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/bin/fi_info -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fabric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fabric.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_atomic.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_cm.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_collective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_collective.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_domain.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_endpoint.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_eq.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_errno.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_ext.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_rma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_rma.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_tagged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_tagged.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/fi_trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/fi_trigger.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/providers/fi_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/providers/fi_log.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/providers/fi_peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/providers/fi_peer.h -------------------------------------------------------------------------------- /deps/ofi/include/rdma/providers/fi_prov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/include/rdma/providers/fi_prov.h -------------------------------------------------------------------------------- /deps/ofi/lib/libfabric.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/lib/libfabric.so -------------------------------------------------------------------------------- /deps/ofi/lib/libfabric.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/lib/libfabric.so.1 -------------------------------------------------------------------------------- /deps/ofi/lib/prov/libpsm3-fi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/lib/prov/libpsm3-fi.so -------------------------------------------------------------------------------- /deps/ofi/lib/prov/libpsmx2-fi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/lib/prov/libpsmx2-fi.so -------------------------------------------------------------------------------- /deps/ofi/lib/prov/librxm-fi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/lib/prov/librxm-fi.so -------------------------------------------------------------------------------- /deps/ofi/lib/prov/libshm-fi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/lib/prov/libshm-fi.so -------------------------------------------------------------------------------- /deps/ofi/lib/prov/libtcp-fi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/lib/prov/libtcp-fi.so -------------------------------------------------------------------------------- /deps/ofi/lib/prov/libverbs-1.1-fi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/lib/prov/libverbs-1.1-fi.so -------------------------------------------------------------------------------- /deps/ofi/lib/prov/libverbs-1.12-fi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/ofi/lib/prov/libverbs-1.12-fi.so -------------------------------------------------------------------------------- /deps/pmix/include/pmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/pmix/include/pmix.h -------------------------------------------------------------------------------- /deps/pmix/include/pmix_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/pmix/include/pmix_common.h -------------------------------------------------------------------------------- /deps/pmix/include/pmix_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/pmix/include/pmix_deprecated.h -------------------------------------------------------------------------------- /deps/pmix/include/pmix_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/pmix/include/pmix_version.h -------------------------------------------------------------------------------- /deps/pmix/update_pmix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/pmix/update_pmix.sh -------------------------------------------------------------------------------- /deps/umf/include/umf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf.h -------------------------------------------------------------------------------- /deps/umf/include/umf/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/base.h -------------------------------------------------------------------------------- /deps/umf/include/umf/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/ipc.h -------------------------------------------------------------------------------- /deps/umf/include/umf/memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/memory_pool.h -------------------------------------------------------------------------------- /deps/umf/include/umf/memory_pool_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/memory_pool_ops.h -------------------------------------------------------------------------------- /deps/umf/include/umf/memory_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/memory_provider.h -------------------------------------------------------------------------------- /deps/umf/include/umf/memory_provider_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/memory_provider_gpu.h -------------------------------------------------------------------------------- /deps/umf/include/umf/memory_provider_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/memory_provider_ops.h -------------------------------------------------------------------------------- /deps/umf/include/umf/mempolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/mempolicy.h -------------------------------------------------------------------------------- /deps/umf/include/umf/memspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/memspace.h -------------------------------------------------------------------------------- /deps/umf/include/umf/memtarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/memtarget.h -------------------------------------------------------------------------------- /deps/umf/include/umf/pools/pool_disjoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/pools/pool_disjoint.h -------------------------------------------------------------------------------- /deps/umf/include/umf/pools/pool_jemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/pools/pool_jemalloc.h -------------------------------------------------------------------------------- /deps/umf/include/umf/pools/pool_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/pools/pool_proxy.h -------------------------------------------------------------------------------- /deps/umf/include/umf/pools/pool_scalable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/pools/pool_scalable.h -------------------------------------------------------------------------------- /deps/umf/include/umf/providers/provider_coarse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/providers/provider_coarse.h -------------------------------------------------------------------------------- /deps/umf/include/umf/providers/provider_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/providers/provider_cuda.h -------------------------------------------------------------------------------- /deps/umf/include/umf/providers/provider_devdax_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/providers/provider_devdax_memory.h -------------------------------------------------------------------------------- /deps/umf/include/umf/providers/provider_file_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/providers/provider_file_memory.h -------------------------------------------------------------------------------- /deps/umf/include/umf/providers/provider_fixed_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/providers/provider_fixed_memory.h -------------------------------------------------------------------------------- /deps/umf/include/umf/providers/provider_level_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/providers/provider_level_zero.h -------------------------------------------------------------------------------- /deps/umf/include/umf/providers/provider_os_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/providers/provider_os_memory.h -------------------------------------------------------------------------------- /deps/umf/include/umf/proxy_lib_new_delete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/include/umf/proxy_lib_new_delete.h -------------------------------------------------------------------------------- /deps/umf/update_umf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/deps/umf/update_umf.sh -------------------------------------------------------------------------------- /doc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/Dockerfile -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/build_doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/build_doc.md -------------------------------------------------------------------------------- /doc/build_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/build_doc.sh -------------------------------------------------------------------------------- /doc/build_doc_by_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/build_doc_by_docker.sh -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/rst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/Makefile -------------------------------------------------------------------------------- /doc/rst/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/Readme.txt -------------------------------------------------------------------------------- /doc/rst/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/make.bat -------------------------------------------------------------------------------- /doc/rst/source/_static/favicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/_static/favicons.png -------------------------------------------------------------------------------- /doc/rst/source/_static/oneAPI-rgb-rev-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/_static/oneAPI-rgb-rev-100.png -------------------------------------------------------------------------------- /doc/rst/source/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/_static/style.css -------------------------------------------------------------------------------- /doc/rst/source/_templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/_templates/footer.html -------------------------------------------------------------------------------- /doc/rst/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/_templates/layout.html -------------------------------------------------------------------------------- /doc/rst/source/advanced-configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/advanced-configuration.rst -------------------------------------------------------------------------------- /doc/rst/source/advanced-configuration/dmabuf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/advanced-configuration/dmabuf.rst -------------------------------------------------------------------------------- /doc/rst/source/advanced-configuration/operation-fusion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/advanced-configuration/operation-fusion.rst -------------------------------------------------------------------------------- /doc/rst/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api.rst -------------------------------------------------------------------------------- /doc/rst/source/api/concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/concepts.rst -------------------------------------------------------------------------------- /doc/rst/source/api/concepts/communicator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/concepts/communicator.rst -------------------------------------------------------------------------------- /doc/rst/source/api/concepts/context.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/concepts/context.rst -------------------------------------------------------------------------------- /doc/rst/source/api/concepts/device.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/concepts/device.rst -------------------------------------------------------------------------------- /doc/rst/source/api/concepts/event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/concepts/event.rst -------------------------------------------------------------------------------- /doc/rst/source/api/concepts/kvs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/concepts/kvs.rst -------------------------------------------------------------------------------- /doc/rst/source/api/concepts/stream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/concepts/stream.rst -------------------------------------------------------------------------------- /doc/rst/source/api/initialization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/initialization.rst -------------------------------------------------------------------------------- /doc/rst/source/api/operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/operations.rst -------------------------------------------------------------------------------- /doc/rst/source/api/operations/collective-operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/operations/collective-operations.rst -------------------------------------------------------------------------------- /doc/rst/source/api/operations/datatypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/operations/datatypes.rst -------------------------------------------------------------------------------- /doc/rst/source/api/operations/point-to-point.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/api/operations/point-to-point.rst -------------------------------------------------------------------------------- /doc/rst/source/benchmark-guide/benchmark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/benchmark-guide/benchmark.rst -------------------------------------------------------------------------------- /doc/rst/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/conf.py -------------------------------------------------------------------------------- /doc/rst/source/env-variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/env-variables.rst -------------------------------------------------------------------------------- /doc/rst/source/general-configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/general-configuration.rst -------------------------------------------------------------------------------- /doc/rst/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/index.rst -------------------------------------------------------------------------------- /doc/rst/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/introduction.rst -------------------------------------------------------------------------------- /doc/rst/source/introduction/cmake-configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/introduction/cmake-configuration.rst -------------------------------------------------------------------------------- /doc/rst/source/introduction/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/introduction/installation.rst -------------------------------------------------------------------------------- /doc/rst/source/introduction/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/introduction/sample.cpp -------------------------------------------------------------------------------- /doc/rst/source/introduction/sample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/introduction/sample.rst -------------------------------------------------------------------------------- /doc/rst/source/legal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/legal.rst -------------------------------------------------------------------------------- /doc/rst/source/programming-model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/programming-model.rst -------------------------------------------------------------------------------- /doc/rst/source/programming-model/host-communication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/programming-model/host-communication.rst -------------------------------------------------------------------------------- /doc/rst/source/release-notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/rst/source/release-notes.rst -------------------------------------------------------------------------------- /doc/update_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/doc/update_requirements.sh -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /examples/benchmark/include/benchmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/include/benchmark.hpp -------------------------------------------------------------------------------- /examples/benchmark/include/coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/include/coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/include/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/include/config.hpp -------------------------------------------------------------------------------- /examples/benchmark/include/cpu_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/include/cpu_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/include/lp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/include/lp.hpp -------------------------------------------------------------------------------- /examples/benchmark/include/sycl_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/include/sycl_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/include/transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/include/transport.hpp -------------------------------------------------------------------------------- /examples/benchmark/include/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/include/types.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/allgather/allgather_strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/allgather/allgather_strategy.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/allgather/cpu_allgather_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/allgather/cpu_allgather_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/allgather/sycl_allgather_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/allgather/sycl_allgather_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/allreduce/allreduce_strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/allreduce/allreduce_strategy.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/allreduce/cpu_allreduce_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/allreduce/cpu_allreduce_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/allreduce/sycl_allreduce_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/allreduce/sycl_allreduce_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/alltoall/alltoall_strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/alltoall/alltoall_strategy.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/alltoall/cpu_alltoall_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/alltoall/cpu_alltoall_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/alltoall/sycl_alltoall_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/alltoall/sycl_alltoall_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/alltoallv/alltoallv_strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/alltoallv/alltoallv_strategy.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/alltoallv/cpu_alltoallv_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/alltoallv/cpu_alltoallv_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/alltoallv/sycl_alltoallv_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/alltoallv/sycl_alltoallv_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/bcast/bcast_strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/bcast/bcast_strategy.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/bcast/cpu_bcast_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/bcast/cpu_bcast_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/bcast/sycl_bcast_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/bcast/sycl_bcast_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/benchmark.cpp -------------------------------------------------------------------------------- /examples/benchmark/src/declarations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/declarations.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/reduce/cpu_reduce_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/reduce/cpu_reduce_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/reduce/reduce_strategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/reduce/reduce_strategy.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/reduce/sycl_reduce_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/reduce/sycl_reduce_coll.hpp -------------------------------------------------------------------------------- /examples/benchmark/src/transport_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/benchmark/src/transport_impl.hpp -------------------------------------------------------------------------------- /examples/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/common/CMakeLists.txt -------------------------------------------------------------------------------- /examples/common/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/common/version.cpp -------------------------------------------------------------------------------- /examples/cpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/cpu/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cpu/cpu_allgather_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/cpu/cpu_allgather_test.cpp -------------------------------------------------------------------------------- /examples/cpu/cpu_allgatherv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/cpu/cpu_allgatherv_test.cpp -------------------------------------------------------------------------------- /examples/cpu/cpu_allreduce_bf16_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/cpu/cpu_allreduce_bf16_test.cpp -------------------------------------------------------------------------------- /examples/cpu/cpu_allreduce_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/cpu/cpu_allreduce_test.cpp -------------------------------------------------------------------------------- /examples/cpu/cpu_broadcast_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/cpu/cpu_broadcast_test.cpp -------------------------------------------------------------------------------- /examples/external_launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/external_launcher/CMakeLists.txt -------------------------------------------------------------------------------- /examples/external_launcher/external_launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/external_launcher/external_launcher.cpp -------------------------------------------------------------------------------- /examples/external_launcher/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/external_launcher/run.sh -------------------------------------------------------------------------------- /examples/external_launcher/run_binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/external_launcher/run_binary.sh -------------------------------------------------------------------------------- /examples/include/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/include/base.hpp -------------------------------------------------------------------------------- /examples/include/base_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/include/base_utils.hpp -------------------------------------------------------------------------------- /examples/include/bf16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/include/bf16.hpp -------------------------------------------------------------------------------- /examples/include/store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/include/store.hpp -------------------------------------------------------------------------------- /examples/include/sycl_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/include/sycl_base.hpp -------------------------------------------------------------------------------- /examples/pt2pt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/pt2pt/CMakeLists.txt -------------------------------------------------------------------------------- /examples/pt2pt/include/pt2pt_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/pt2pt/include/pt2pt_base.hpp -------------------------------------------------------------------------------- /examples/pt2pt/include/pt2pt_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/pt2pt/include/pt2pt_transport.hpp -------------------------------------------------------------------------------- /examples/pt2pt/include/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/pt2pt/include/types.hpp -------------------------------------------------------------------------------- /examples/pt2pt/src/ccl_bw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/pt2pt/src/ccl_bw.cpp -------------------------------------------------------------------------------- /examples/pt2pt/src/ccl_latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/pt2pt/src/ccl_latency.cpp -------------------------------------------------------------------------------- /examples/run_new.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/run_new.sh -------------------------------------------------------------------------------- /examples/sycl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/CMakeLists.txt -------------------------------------------------------------------------------- /examples/sycl/sycl_allgather_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allgather_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_allgatherv_custom_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allgatherv_custom_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_allgatherv_inplace_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allgatherv_inplace_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_allgatherv_inplace_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allgatherv_inplace_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_allgatherv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allgatherv_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_allgatherv_usm_comm_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allgatherv_usm_comm_split.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_allgatherv_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allgatherv_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_allreduce_inplace_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allreduce_inplace_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_allreduce_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allreduce_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_allreduce_usm_comm_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allreduce_usm_comm_split.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_allreduce_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_allreduce_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_alltoall_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_alltoall_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_alltoall_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_alltoall_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_alltoallv_inplace_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_alltoallv_inplace_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_alltoallv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_alltoallv_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_alltoallv_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_alltoallv_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_bcast_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_bcast_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_broadcast_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_broadcast_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_broadcast_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_broadcast_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_reduce_inplace_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_reduce_inplace_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_reduce_scatter_inplace_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_reduce_scatter_inplace_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_reduce_scatter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_reduce_scatter_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_reduce_scatter_usm_comm_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_reduce_scatter_usm_comm_split.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_reduce_scatter_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_reduce_scatter_usm_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_reduce_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_reduce_test.cpp -------------------------------------------------------------------------------- /examples/sycl/sycl_reduce_usm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/examples/sycl/sycl_reduce_usm_test.cpp -------------------------------------------------------------------------------- /include/oneapi/ccl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/aliases.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/aliases.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/api_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/api_functions.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/coll_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/coll_attr.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/coll_attr_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/coll_attr_ids.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/coll_attr_ids_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/coll_attr_ids_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/comm_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/comm_attr.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/comm_attr_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/comm_attr_ids.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/comm_attr_ids_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/comm_attr_ids_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/comm_split_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/comm_split_attr.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/comm_split_attr_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/comm_split_attr_ids.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/comm_split_attr_ids_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/comm_split_attr_ids_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/communicator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/communicator.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/config.h.in -------------------------------------------------------------------------------- /include/oneapi/ccl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/context.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/context_attr_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/context_attr_ids.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/context_attr_ids_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/context_attr_ids_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/datatype_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/datatype_attr.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/datatype_attr_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/datatype_attr_ids.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/datatype_attr_ids_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/datatype_attr_ids_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/device.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/device_attr_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/device_attr_ids.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/device_attr_ids_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/device_attr_ids_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/device_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/device_type_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/device_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/device_types.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/environment.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/event.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/exception.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/init_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/init_attr.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/init_attr_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/init_attr_ids.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/init_attr_ids_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/init_attr_ids_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/kvs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/kvs.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/kvs_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/kvs_attr.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/kvs_attr_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/kvs_attr_ids.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/kvs_attr_ids_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/kvs_attr_ids_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/lp_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/lp_types.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/native_device_api/empty/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/native_device_api/empty/context.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/native_device_api/empty/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/native_device_api/empty/device.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/native_device_api/empty/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/native_device_api/empty/event.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/native_device_api/empty/export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/native_device_api/empty/export.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/native_device_api/empty/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/native_device_api/empty/platform.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/native_device_api/empty/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/native_device_api/empty/queue.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/native_device_api/export_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/native_device_api/export_api.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/native_device_api/sycl/export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/native_device_api/sycl/export.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/stream.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/stream_attr_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/stream_attr_ids.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/stream_attr_ids_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/stream_attr_ids_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/string.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/type_traits.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/types.hpp -------------------------------------------------------------------------------- /include/oneapi/ccl/types_policy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/include/oneapi/ccl/types_policy.hpp -------------------------------------------------------------------------------- /pkgconfig/ccl/cpu/lib/template.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/pkgconfig/ccl/cpu/lib/template.pc -------------------------------------------------------------------------------- /pkgconfig/template.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/pkgconfig/template.pc -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/MT/shared_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/MT/shared_resource.hpp -------------------------------------------------------------------------------- /src/atl/atl_base_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/atl_base_comm.cpp -------------------------------------------------------------------------------- /src/atl/atl_base_comm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/atl_base_comm.hpp -------------------------------------------------------------------------------- /src/atl/atl_base_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/atl_base_transport.cpp -------------------------------------------------------------------------------- /src/atl/atl_base_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/atl_base_transport.hpp -------------------------------------------------------------------------------- /src/atl/atl_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/atl_def.cpp -------------------------------------------------------------------------------- /src/atl/atl_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/atl_def.h -------------------------------------------------------------------------------- /src/atl/mpi/atl_mpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/mpi/atl_mpi.cpp -------------------------------------------------------------------------------- /src/atl/mpi/atl_mpi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/mpi/atl_mpi.hpp -------------------------------------------------------------------------------- /src/atl/mpi/atl_mpi_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/mpi/atl_mpi_comm.cpp -------------------------------------------------------------------------------- /src/atl/mpi/atl_mpi_comm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/mpi/atl_mpi_comm.hpp -------------------------------------------------------------------------------- /src/atl/mpi/atl_mpi_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/mpi/atl_mpi_ctx.cpp -------------------------------------------------------------------------------- /src/atl/mpi/atl_mpi_ctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/mpi/atl_mpi_ctx.hpp -------------------------------------------------------------------------------- /src/atl/ofi/atl_ofi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/ofi/atl_ofi.cpp -------------------------------------------------------------------------------- /src/atl/ofi/atl_ofi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/ofi/atl_ofi.hpp -------------------------------------------------------------------------------- /src/atl/ofi/atl_ofi_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/ofi/atl_ofi_comm.cpp -------------------------------------------------------------------------------- /src/atl/ofi/atl_ofi_comm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/ofi/atl_ofi_comm.hpp -------------------------------------------------------------------------------- /src/atl/ofi/atl_ofi_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/ofi/atl_ofi_helper.cpp -------------------------------------------------------------------------------- /src/atl/ofi/atl_ofi_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/ofi/atl_ofi_helper.hpp -------------------------------------------------------------------------------- /src/atl/util/pm/codec/pm_rt_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/codec/pm_rt_codec.h -------------------------------------------------------------------------------- /src/atl/util/pm/pm_rt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pm_rt.h -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_resizable_rt/pmi_resizable/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_resizable_rt/pmi_resizable/def.h -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_resizable_rt/pmi_resizable_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_resizable_rt/pmi_resizable_simple.h -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_rt/pmi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_rt/pmi/CMakeLists.txt -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_rt/pmi/mpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_rt/pmi/mpl.h -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_rt/pmi/pmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_rt/pmi/pmi.h -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_rt/pmi/simple_pmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_rt/pmi/simple_pmi.c -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_rt/pmi/simple_pmiutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_rt/pmi/simple_pmiutil.c -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_rt/pmi/simple_pmiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_rt/pmi/simple_pmiutil.h -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_rt/pmi_rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_rt/pmi_rt.c -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_rt/pmi_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_rt/pmi_simple.cpp -------------------------------------------------------------------------------- /src/atl/util/pm/pmi_rt/pmi_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/atl/util/pm/pmi_rt/pmi_simple.h -------------------------------------------------------------------------------- /src/ccl_api_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_api_functions.cpp -------------------------------------------------------------------------------- /src/ccl_api_functions_generators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_api_functions_generators.hpp -------------------------------------------------------------------------------- /src/ccl_app_api_coll_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_app_api_coll_attr.cpp -------------------------------------------------------------------------------- /src/ccl_app_api_comm_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_app_api_comm_attr.cpp -------------------------------------------------------------------------------- /src/ccl_app_api_comm_split_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_app_api_comm_split_attr.cpp -------------------------------------------------------------------------------- /src/ccl_app_api_datatype_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_app_api_datatype_attr.cpp -------------------------------------------------------------------------------- /src/ccl_app_api_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_app_api_event.cpp -------------------------------------------------------------------------------- /src/ccl_app_api_init_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_app_api_init_attr.cpp -------------------------------------------------------------------------------- /src/ccl_app_api_kvs_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_app_api_kvs_attr.cpp -------------------------------------------------------------------------------- /src/ccl_cpp_communicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_cpp_communicator.cpp -------------------------------------------------------------------------------- /src/ccl_cpp_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_cpp_context.cpp -------------------------------------------------------------------------------- /src/ccl_cpp_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_cpp_device.cpp -------------------------------------------------------------------------------- /src/ccl_cpp_environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_cpp_environment.cpp -------------------------------------------------------------------------------- /src/ccl_cpp_kvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_cpp_kvs.cpp -------------------------------------------------------------------------------- /src/ccl_cpp_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_cpp_stream.cpp -------------------------------------------------------------------------------- /src/ccl_cpp_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_cpp_utils.cpp -------------------------------------------------------------------------------- /src/ccl_empty_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_empty_attr.cpp -------------------------------------------------------------------------------- /src/ccl_empty_coll_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_empty_coll_attr.cpp -------------------------------------------------------------------------------- /src/ccl_empty_comm_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_empty_comm_attr.cpp -------------------------------------------------------------------------------- /src/ccl_empty_comm_split_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_empty_comm_split_attr.cpp -------------------------------------------------------------------------------- /src/ccl_empty_init_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_empty_init_attr.cpp -------------------------------------------------------------------------------- /src/ccl_empty_kvs_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_empty_kvs_attr.cpp -------------------------------------------------------------------------------- /src/ccl_empty_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ccl_empty_stream.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/algorithm_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/algorithm_utils.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/algorithm_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/algorithm_utils.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/algorithms.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/allgather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allgather.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/allgatherv/allgatherv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allgatherv/allgatherv.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/allgatherv/sycl/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allgatherv/sycl/.clang-format -------------------------------------------------------------------------------- /src/coll/algorithms/allgatherv/sycl/allgatherv_pcie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allgatherv/sycl/allgatherv_pcie.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/allgatherv/sycl/allgatherv_pcie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allgatherv/sycl/allgatherv_pcie.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/allgatherv/sycl/allgatherv_ring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allgatherv/sycl/allgatherv_ring.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/allgatherv/sycl/allgatherv_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allgatherv/sycl/allgatherv_sycl.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/allgatherv/sycl/allgatherv_sycl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allgatherv/sycl/allgatherv_sycl.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/allreduce/allreduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allreduce/allreduce.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/allreduce/allreduce_rma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allreduce/allreduce_rma.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/allreduce/allreduce_rma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allreduce/allreduce_rma.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/allreduce/sycl/allreduce_pcie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allreduce/sycl/allreduce_pcie.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/allreduce/sycl/allreduce_pcie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allreduce/sycl/allreduce_pcie.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/allreduce/sycl/allreduce_ring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allreduce/sycl/allreduce_ring.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/allreduce/sycl/allreduce_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allreduce/sycl/allreduce_sycl.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/allreduce/sycl/allreduce_sycl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/allreduce/sycl/allreduce_sycl.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/alltoall/alltoall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/alltoall/alltoall.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/alltoall/sycl/alltoall_large_sycl.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/coll/algorithms/alltoall/sycl/alltoall_ll256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/alltoall/sycl/alltoall_ll256.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/alltoall/sycl/alltoall_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/alltoall/sycl/alltoall_sycl.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/alltoall/sycl/alltoall_sycl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/alltoall/sycl/alltoall_sycl.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/alltoallv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/alltoallv.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/barrier/barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/barrier/barrier.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/broadcast/bcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/broadcast/bcast.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/broadcast/broadcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/broadcast/broadcast.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/broadcast/mpi_bcast_invoke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/broadcast/mpi_bcast_invoke.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/broadcast/sycl/broadcast_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/broadcast/sycl/broadcast_sycl.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/broadcast/sycl/broadcast_sycl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/broadcast/sycl/broadcast_sycl.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/double_tree_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/double_tree_ops.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/recv/recv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/recv/recv.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/recv/sycl/recv_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/recv/sycl/recv_sycl.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/recv/sycl/recv_sycl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/recv/sycl/recv_sycl.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/reduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/reduce.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/reduce_scatter/reduce_scatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/reduce_scatter/reduce_scatter.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/reduce_scatter/sycl/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/reduce_scatter/sycl/.clang-format -------------------------------------------------------------------------------- /src/coll/algorithms/send/send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/send/send.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/send/sycl/send_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/send/sycl/send_sycl.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/send/sycl/send_sycl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/send/sycl/send_sycl.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/rt64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/rt64.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/rt64_128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/rt64_128.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/sycl_coll_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/sycl_coll_base.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/sycl_coll_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/sycl_coll_base.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/sycl_kernels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/sycl_kernels.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/sycl_ll256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/sycl_ll256.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/sycl_ll256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/sycl_ll256.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/sycl_pipe_send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/sycl_pipe_send.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/sycl_selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/sycl_selection.cpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/sycl_selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/sycl_selection.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/transmit/ring_transmit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/transmit/ring_transmit.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/transmit/transmit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/transmit/transmit.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/tvisa/include/gateway.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/tvisa/include/gateway.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/tvisa/include/lsc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/tvisa/include/lsc.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/tvisa/include/regmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/tvisa/include/regmap.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/tvisa/include/set_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/tvisa/include/set_zero.hpp -------------------------------------------------------------------------------- /src/coll/algorithms/utils/tvisa/include/systolic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/algorithms/utils/tvisa/include/systolic.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_allgather_op_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_allgather_op_attr.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_allgather_op_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_allgather_op_attr.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_allgatherv_op_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_allgatherv_op_attr.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_allgatherv_op_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_allgatherv_op_attr.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_allreduce_op_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_allreduce_op_attr.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_allreduce_op_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_allreduce_op_attr.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_alltoall_op_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_alltoall_op_attr.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_alltoall_op_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_alltoall_op_attr.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_alltoallv_op_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_alltoallv_op_attr.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_alltoallv_op_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_alltoallv_op_attr.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_attrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_attrs.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_barrier_op_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_barrier_op_attr.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_barrier_op_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_barrier_op_attr.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_bcast_op_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_bcast_op_attr.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_bcast_op_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_bcast_op_attr.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_common_op_attrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_common_op_attrs.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_common_op_attrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_common_op_attrs.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_pt2pt_op_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_pt2pt_op_attr.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_pt2pt_op_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_pt2pt_op_attr.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_reduce_op_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_reduce_op_attr.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_reduce_op_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_reduce_op_attr.hpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_reduce_scatter_op_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_reduce_scatter_op_attr.cpp -------------------------------------------------------------------------------- /src/coll/attr/ccl_reduce_scatter_op_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/attr/ccl_reduce_scatter_op_attr.hpp -------------------------------------------------------------------------------- /src/coll/coll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/coll.cpp -------------------------------------------------------------------------------- /src/coll/coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/coll.hpp -------------------------------------------------------------------------------- /src/coll/coll_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/coll_check.cpp -------------------------------------------------------------------------------- /src/coll/coll_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/coll_check.hpp -------------------------------------------------------------------------------- /src/coll/coll_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/coll_param.cpp -------------------------------------------------------------------------------- /src/coll/coll_param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/coll_param.hpp -------------------------------------------------------------------------------- /src/coll/coll_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/coll_util.cpp -------------------------------------------------------------------------------- /src/coll/coll_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/coll_util.hpp -------------------------------------------------------------------------------- /src/coll/group/group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/group/group.cpp -------------------------------------------------------------------------------- /src/coll/group/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/group/group.hpp -------------------------------------------------------------------------------- /src/coll/reduction/reduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/reduction/reduction.cpp -------------------------------------------------------------------------------- /src/coll/reduction/reduction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/reduction/reduction.hpp -------------------------------------------------------------------------------- /src/coll/selection/selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selection.cpp -------------------------------------------------------------------------------- /src/coll/selection/selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selection.hpp -------------------------------------------------------------------------------- /src/coll/selection/selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector.hpp -------------------------------------------------------------------------------- /src/coll/selection/selector_allgather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_allgather.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_allgatherv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_allgatherv.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_allreduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_allreduce.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_alltoall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_alltoall.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_alltoallv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_alltoallv.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_barrier.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_bcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_bcast.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_helper.hpp -------------------------------------------------------------------------------- /src/coll/selection/selector_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_impl.hpp -------------------------------------------------------------------------------- /src/coll/selection/selector_recv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_recv.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_reduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_reduce.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_reduce_scatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_reduce_scatter.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_send.cpp -------------------------------------------------------------------------------- /src/coll/selection/selector_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll/selection/selector_wrapper.hpp -------------------------------------------------------------------------------- /src/coll_attr_creation_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll_attr_creation_impl.hpp -------------------------------------------------------------------------------- /src/coll_attr_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/coll_attr_impl.hpp -------------------------------------------------------------------------------- /src/comm/atl_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/atl_tag.cpp -------------------------------------------------------------------------------- /src/comm/atl_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/atl_tag.hpp -------------------------------------------------------------------------------- /src/comm/comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/comm.cpp -------------------------------------------------------------------------------- /src/comm/comm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/comm.hpp -------------------------------------------------------------------------------- /src/comm/comm_common_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/comm_common_attr.hpp -------------------------------------------------------------------------------- /src/comm/comm_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/comm_impl.hpp -------------------------------------------------------------------------------- /src/comm/comm_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/comm_interface.hpp -------------------------------------------------------------------------------- /src/comm/comm_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/comm_selector.cpp -------------------------------------------------------------------------------- /src/comm/comm_selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/comm_selector.hpp -------------------------------------------------------------------------------- /src/comm/comm_split_common_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/comm_split_common_attr.hpp -------------------------------------------------------------------------------- /src/comm/mt_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/mt_comm.cpp -------------------------------------------------------------------------------- /src/comm/stub_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/stub_comm.cpp -------------------------------------------------------------------------------- /src/comm/stub_comm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm/stub_comm.hpp -------------------------------------------------------------------------------- /src/comm_attr_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm_attr_impl.hpp -------------------------------------------------------------------------------- /src/comm_split_attr_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comm_split_attr_impl.hpp -------------------------------------------------------------------------------- /src/common/api_wrapper/api_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/api_wrapper.cpp -------------------------------------------------------------------------------- /src/common/api_wrapper/api_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/api_wrapper.hpp -------------------------------------------------------------------------------- /src/common/api_wrapper/mpi_api_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/mpi_api_wrapper.cpp -------------------------------------------------------------------------------- /src/common/api_wrapper/mpi_api_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/mpi_api_wrapper.hpp -------------------------------------------------------------------------------- /src/common/api_wrapper/ofi_api_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/ofi_api_wrapper.cpp -------------------------------------------------------------------------------- /src/common/api_wrapper/ofi_api_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/ofi_api_wrapper.hpp -------------------------------------------------------------------------------- /src/common/api_wrapper/openmp_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/openmp_wrapper.cpp -------------------------------------------------------------------------------- /src/common/api_wrapper/openmp_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/openmp_wrapper.hpp -------------------------------------------------------------------------------- /src/common/api_wrapper/pmix_api_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/pmix_api_wrapper.cpp -------------------------------------------------------------------------------- /src/common/api_wrapper/pmix_api_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/pmix_api_wrapper.hpp -------------------------------------------------------------------------------- /src/common/api_wrapper/umf_api_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/umf_api_wrapper.cpp -------------------------------------------------------------------------------- /src/common/api_wrapper/umf_api_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/umf_api_wrapper.hpp -------------------------------------------------------------------------------- /src/common/api_wrapper/ze_api_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/ze_api_wrapper.cpp -------------------------------------------------------------------------------- /src/common/api_wrapper/ze_api_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/api_wrapper/ze_api_wrapper.hpp -------------------------------------------------------------------------------- /src/common/context/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/context/context.cpp -------------------------------------------------------------------------------- /src/common/context/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/context/context.hpp -------------------------------------------------------------------------------- /src/common/datatype/datatype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/datatype/datatype.cpp -------------------------------------------------------------------------------- /src/common/datatype/datatype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/datatype/datatype.hpp -------------------------------------------------------------------------------- /src/common/datatype/datatype_attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/datatype/datatype_attr.hpp -------------------------------------------------------------------------------- /src/common/device/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/device/device.cpp -------------------------------------------------------------------------------- /src/common/device/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/device/device.hpp -------------------------------------------------------------------------------- /src/common/env/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/env/.clang-format -------------------------------------------------------------------------------- /src/common/env/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/env/env.cpp -------------------------------------------------------------------------------- /src/common/env/env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/env/env.hpp -------------------------------------------------------------------------------- /src/common/env/env_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/env/env_parser.cpp -------------------------------------------------------------------------------- /src/common/env/env_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/env/env_parser.hpp -------------------------------------------------------------------------------- /src/common/env/vars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/env/vars.hpp -------------------------------------------------------------------------------- /src/common/env/vars_experimental.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/env/vars_experimental.hpp -------------------------------------------------------------------------------- /src/common/event/ccl_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/ccl_event.cpp -------------------------------------------------------------------------------- /src/common/event/ccl_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/ccl_event.hpp -------------------------------------------------------------------------------- /src/common/event/ccl_event_attr_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/ccl_event_attr_ids.hpp -------------------------------------------------------------------------------- /src/common/event/ccl_event_attr_ids_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/ccl_event_attr_ids_traits.hpp -------------------------------------------------------------------------------- /src/common/event/impls/empty_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/impls/empty_event.hpp -------------------------------------------------------------------------------- /src/common/event/impls/event_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/impls/event_impl.hpp -------------------------------------------------------------------------------- /src/common/event/impls/host_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/impls/host_event.cpp -------------------------------------------------------------------------------- /src/common/event/impls/host_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/impls/host_event.hpp -------------------------------------------------------------------------------- /src/common/event/impls/native_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/impls/native_event.cpp -------------------------------------------------------------------------------- /src/common/event/impls/native_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/impls/native_event.hpp -------------------------------------------------------------------------------- /src/common/event/impls/stub_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/event/impls/stub_event.hpp -------------------------------------------------------------------------------- /src/common/framework/framework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/framework/framework.cpp -------------------------------------------------------------------------------- /src/common/framework/framework.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/framework/framework.hpp -------------------------------------------------------------------------------- /src/common/global/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/global/global.cpp -------------------------------------------------------------------------------- /src/common/global/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/global/global.hpp -------------------------------------------------------------------------------- /src/common/global/ze/ze_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/global/ze/ze_data.cpp -------------------------------------------------------------------------------- /src/common/global/ze/ze_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/global/ze/ze_data.hpp -------------------------------------------------------------------------------- /src/common/global/ze/ze_fd_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/global/ze/ze_fd_manager.cpp -------------------------------------------------------------------------------- /src/common/global/ze/ze_fd_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/global/ze/ze_fd_manager.hpp -------------------------------------------------------------------------------- /src/common/log/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/log/log.cpp -------------------------------------------------------------------------------- /src/common/log/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/log/log.hpp -------------------------------------------------------------------------------- /src/common/request/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/request/request.cpp -------------------------------------------------------------------------------- /src/common/request/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/request/request.hpp -------------------------------------------------------------------------------- /src/common/stream/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/stream/stream.cpp -------------------------------------------------------------------------------- /src/common/stream/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/stream/stream.hpp -------------------------------------------------------------------------------- /src/common/stream/stream_selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/stream/stream_selector.hpp -------------------------------------------------------------------------------- /src/common/stream/stream_selector_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/stream/stream_selector_impl.hpp -------------------------------------------------------------------------------- /src/common/utils/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/buffer.hpp -------------------------------------------------------------------------------- /src/common/utils/comm_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/comm_profile.cpp -------------------------------------------------------------------------------- /src/common/utils/comm_profile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/comm_profile.hpp -------------------------------------------------------------------------------- /src/common/utils/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/enums.hpp -------------------------------------------------------------------------------- /src/common/utils/exchange_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/exchange_utils.cpp -------------------------------------------------------------------------------- /src/common/utils/exchange_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/exchange_utils.hpp -------------------------------------------------------------------------------- /src/common/utils/fd_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/fd_info.cpp -------------------------------------------------------------------------------- /src/common/utils/fd_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/fd_info.hpp -------------------------------------------------------------------------------- /src/common/utils/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/hash.hpp -------------------------------------------------------------------------------- /src/common/utils/memcpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/memcpy.cpp -------------------------------------------------------------------------------- /src/common/utils/memcpy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/memcpy.hpp -------------------------------------------------------------------------------- /src/common/utils/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/profile.cpp -------------------------------------------------------------------------------- /src/common/utils/profile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/profile.hpp -------------------------------------------------------------------------------- /src/common/utils/spinlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/spinlock.cpp -------------------------------------------------------------------------------- /src/common/utils/spinlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/spinlock.hpp -------------------------------------------------------------------------------- /src/common/utils/sycl_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/sycl_utils.cpp -------------------------------------------------------------------------------- /src/common/utils/sycl_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/sycl_utils.hpp -------------------------------------------------------------------------------- /src/common/utils/sync_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/sync_object.hpp -------------------------------------------------------------------------------- /src/common/utils/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/tree.hpp -------------------------------------------------------------------------------- /src/common/utils/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/tuple.hpp -------------------------------------------------------------------------------- /src/common/utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/utils.cpp -------------------------------------------------------------------------------- /src/common/utils/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/utils.hpp -------------------------------------------------------------------------------- /src/common/utils/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/version.cpp -------------------------------------------------------------------------------- /src/common/utils/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/version.hpp -------------------------------------------------------------------------------- /src/common/utils/yield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/yield.cpp -------------------------------------------------------------------------------- /src/common/utils/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/common/utils/yield.hpp -------------------------------------------------------------------------------- /src/communicator_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/communicator_impl.hpp -------------------------------------------------------------------------------- /src/comp/bf16/bf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/bf16/bf16.cpp -------------------------------------------------------------------------------- /src/comp/bf16/bf16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/bf16/bf16.hpp -------------------------------------------------------------------------------- /src/comp/bf16/bf16_intrisics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/bf16/bf16_intrisics.cpp -------------------------------------------------------------------------------- /src/comp/bf16/bf16_intrisics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/bf16/bf16_intrisics.hpp -------------------------------------------------------------------------------- /src/comp/bf16/bf16_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/bf16/bf16_utils.hpp -------------------------------------------------------------------------------- /src/comp/comp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/comp.cpp -------------------------------------------------------------------------------- /src/comp/comp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/comp.hpp -------------------------------------------------------------------------------- /src/comp/fp16/fp16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/fp16/fp16.cpp -------------------------------------------------------------------------------- /src/comp/fp16/fp16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/fp16/fp16.hpp -------------------------------------------------------------------------------- /src/comp/fp16/fp16_intrisics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/fp16/fp16_intrisics.cpp -------------------------------------------------------------------------------- /src/comp/fp16/fp16_intrisics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/fp16/fp16_intrisics.hpp -------------------------------------------------------------------------------- /src/comp/fp16/fp16_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/comp/fp16/fp16_utils.hpp -------------------------------------------------------------------------------- /src/context_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/context_impl.hpp -------------------------------------------------------------------------------- /src/datatype_attr_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/datatype_attr_impl.hpp -------------------------------------------------------------------------------- /src/device_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/device_impl.hpp -------------------------------------------------------------------------------- /src/environment_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/environment_impl.hpp -------------------------------------------------------------------------------- /src/exec/exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/exec/exec.cpp -------------------------------------------------------------------------------- /src/exec/exec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/exec/exec.hpp -------------------------------------------------------------------------------- /src/exec/thread/base_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/exec/thread/base_thread.cpp -------------------------------------------------------------------------------- /src/exec/thread/base_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/exec/thread/base_thread.hpp -------------------------------------------------------------------------------- /src/exec/thread/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/exec/thread/listener.cpp -------------------------------------------------------------------------------- /src/exec/thread/listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/exec/thread/listener.hpp -------------------------------------------------------------------------------- /src/exec/thread/service_worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/exec/thread/service_worker.cpp -------------------------------------------------------------------------------- /src/exec/thread/service_worker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/exec/thread/service_worker.hpp -------------------------------------------------------------------------------- /src/exec/thread/worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/exec/thread/worker.cpp -------------------------------------------------------------------------------- /src/exec/thread/worker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/exec/thread/worker.hpp -------------------------------------------------------------------------------- /src/ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ext/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/openmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ext/openmp/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/openmp/openmp_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/ext/openmp/openmp_ext.cpp -------------------------------------------------------------------------------- /src/fusion/fusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/fusion/fusion.cpp -------------------------------------------------------------------------------- /src/fusion/fusion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/fusion/fusion.hpp -------------------------------------------------------------------------------- /src/hwloc/hwloc_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/hwloc/hwloc_wrapper.cpp -------------------------------------------------------------------------------- /src/hwloc/hwloc_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/hwloc/hwloc_wrapper.hpp -------------------------------------------------------------------------------- /src/init_attr_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/init_attr_impl.hpp -------------------------------------------------------------------------------- /src/internal_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/internal_types.hpp -------------------------------------------------------------------------------- /src/kernels/bf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/kernels/bf16.h -------------------------------------------------------------------------------- /src/kernels/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/kernels/common.h -------------------------------------------------------------------------------- /src/kernels/fp16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/kernels/fp16.h -------------------------------------------------------------------------------- /src/kernels/kernels.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/kernels/kernels.cl -------------------------------------------------------------------------------- /src/kernels/kernels.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/kernels/kernels.spv -------------------------------------------------------------------------------- /src/kvs_attr_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/kvs_attr_impl.hpp -------------------------------------------------------------------------------- /src/kvs_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/kvs_impl.hpp -------------------------------------------------------------------------------- /src/native_device_api/sycl/export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/native_device_api/sycl/export.cpp -------------------------------------------------------------------------------- /src/parallelizer/parallelizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/parallelizer/parallelizer.cpp -------------------------------------------------------------------------------- /src/parallelizer/parallelizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/parallelizer/parallelizer.hpp -------------------------------------------------------------------------------- /src/sched/buffer/buffer_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/buffer/buffer_cache.cpp -------------------------------------------------------------------------------- /src/sched/buffer/buffer_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/buffer/buffer_cache.hpp -------------------------------------------------------------------------------- /src/sched/buffer/buffer_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/buffer/buffer_manager.cpp -------------------------------------------------------------------------------- /src/sched/buffer/buffer_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/buffer/buffer_manager.hpp -------------------------------------------------------------------------------- /src/sched/cache/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/cache/cache.cpp -------------------------------------------------------------------------------- /src/sched/cache/cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/cache/cache.hpp -------------------------------------------------------------------------------- /src/sched/cache/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/cache/key.cpp -------------------------------------------------------------------------------- /src/sched/cache/key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/cache/key.hpp -------------------------------------------------------------------------------- /src/sched/cache/recycle_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/cache/recycle_storage.cpp -------------------------------------------------------------------------------- /src/sched/cache/recycle_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/cache/recycle_storage.hpp -------------------------------------------------------------------------------- /src/sched/entry/ack_accept_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ack_accept_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ack_report_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ack_report_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/coll/coll_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/coll_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/coll/coll_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/coll_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/coll/direct/allgatherv_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/direct/allgatherv_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/coll/direct/allreduce_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/direct/allreduce_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/coll/direct/alltoall_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/direct/alltoall_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/coll/direct/alltoallv_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/direct/alltoallv_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/coll/direct/barrier_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/direct/barrier_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/coll/direct/base_coll_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/direct/base_coll_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/coll/direct/bcast_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/direct/bcast_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/coll/direct/reduce_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/direct/reduce_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/coll/direct/reduce_scatter_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/coll/direct/reduce_scatter_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/copy/copy_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/copy/copy_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/copy/copy_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/copy/copy_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/copy/copy_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/copy/copy_helper.cpp -------------------------------------------------------------------------------- /src/sched/entry/copy/copy_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/copy/copy_helper.hpp -------------------------------------------------------------------------------- /src/sched/entry/deps_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/deps_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/deps_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/deps_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/deregister_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/deregister_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/factory/chunked_entry_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/factory/chunked_entry_factory.cpp -------------------------------------------------------------------------------- /src/sched/entry/factory/chunked_entry_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/factory/chunked_entry_factory.hpp -------------------------------------------------------------------------------- /src/sched/entry/factory/entry_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/factory/entry_factory.h -------------------------------------------------------------------------------- /src/sched/entry/factory/entry_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/factory/entry_factory.hpp -------------------------------------------------------------------------------- /src/sched/entry/function_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/function_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/postponed_fields.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/postponed_fields.hpp -------------------------------------------------------------------------------- /src/sched/entry/probe_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/probe_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/recv_copy_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/recv_copy_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/recv_copy_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/recv_copy_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/recv_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/recv_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/recv_reduce_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/recv_reduce_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/reduce_local_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/reduce_local_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/reduce_local_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/reduce_local_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/register_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/register_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/send_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/send_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/subsched_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/subsched_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/sync_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/sync_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/wait_value_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/wait_value_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/write_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/write_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/allreduce/ze_a2a_allreduce_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/allreduce/ze_a2a_allreduce_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/allreduce/ze_a2a_allreduce_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/allreduce/ze_a2a_allreduce_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/cache/ze_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/cache/ze_cache.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/cache/ze_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/cache/ze_cache.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/cache/ze_device_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/cache/ze_device_cache.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/cache/ze_device_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/cache/ze_device_cache.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_a2a_allgatherv_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_a2a_allgatherv_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_a2a_allgatherv_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_a2a_allgatherv_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_a2a_reduce_scatter_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_a2a_reduce_scatter_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_a2a_reduce_scatter_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_a2a_reduce_scatter_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_alltoallv_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_alltoallv_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_alltoallv_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_alltoallv_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_barrier_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_barrier_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_barrier_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_barrier_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_base_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_base_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_base_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_base_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_call.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_call.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_cmdlist_event_signal_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_cmdlist_event_signal_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_cmdlist_event_signal_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_cmdlist_event_signal_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_cmdlist_timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_cmdlist_timestamp.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_cmdlist_timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_cmdlist_timestamp.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_command.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_command.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_copy_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_copy_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_copy_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_copy_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_dummy_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_dummy_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_dummy_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_dummy_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_event_signal_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_event_signal_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_event_signal_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_event_signal_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_event_wait_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_event_wait_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_event_wait_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_event_wait_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_execute_cmdlists_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_execute_cmdlists_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_handle_exchange_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_handle_exchange_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_handle_exchange_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_handle_exchange_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_kernel.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_kernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_kernel.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_membarrier_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_membarrier_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_membarrier_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_membarrier_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_onesided_reduce_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_onesided_reduce_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_onesided_reduce_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_onesided_reduce_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_primitives.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_primitives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_primitives.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_pt2pt_barrier_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_pt2pt_barrier_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_pt2pt_barrier_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_pt2pt_barrier_entry.hpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_reduce_local_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_reduce_local_entry.cpp -------------------------------------------------------------------------------- /src/sched/entry/ze/ze_reduce_local_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/entry/ze/ze_reduce_local_entry.hpp -------------------------------------------------------------------------------- /src/sched/queue/flow_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/queue/flow_control.cpp -------------------------------------------------------------------------------- /src/sched/queue/flow_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/queue/flow_control.hpp -------------------------------------------------------------------------------- /src/sched/queue/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/queue/queue.cpp -------------------------------------------------------------------------------- /src/sched/queue/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/queue/queue.hpp -------------------------------------------------------------------------------- /src/sched/queue/strict_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/queue/strict_queue.cpp -------------------------------------------------------------------------------- /src/sched/queue/strict_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/queue/strict_queue.hpp -------------------------------------------------------------------------------- /src/sched/sched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/sched.cpp -------------------------------------------------------------------------------- /src/sched/sched.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/sched.hpp -------------------------------------------------------------------------------- /src/sched/sched_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/sched_base.cpp -------------------------------------------------------------------------------- /src/sched/sched_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/sched_base.hpp -------------------------------------------------------------------------------- /src/sched/sched_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/sched_group.cpp -------------------------------------------------------------------------------- /src/sched/sched_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/sched_group.hpp -------------------------------------------------------------------------------- /src/sched/sched_restart_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/sched_restart_manager.cpp -------------------------------------------------------------------------------- /src/sched/sched_restart_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/sched_restart_manager.hpp -------------------------------------------------------------------------------- /src/sched/sched_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/sched_timer.cpp -------------------------------------------------------------------------------- /src/sched/sched_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/sched_timer.hpp -------------------------------------------------------------------------------- /src/sched/ze/ze_event_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/ze/ze_event_manager.cpp -------------------------------------------------------------------------------- /src/sched/ze/ze_event_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/ze/ze_event_manager.hpp -------------------------------------------------------------------------------- /src/sched/ze/ze_handle_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/ze/ze_handle_manager.cpp -------------------------------------------------------------------------------- /src/sched/ze/ze_handle_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/ze/ze_handle_manager.hpp -------------------------------------------------------------------------------- /src/sched/ze/ze_ipc_event_pool_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/ze/ze_ipc_event_pool_manager.cpp -------------------------------------------------------------------------------- /src/sched/ze/ze_ipc_event_pool_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/ze/ze_ipc_event_pool_manager.hpp -------------------------------------------------------------------------------- /src/sched/ze/ze_list_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/ze/ze_list_manager.cpp -------------------------------------------------------------------------------- /src/sched/ze/ze_list_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/sched/ze/ze_list_manager.hpp -------------------------------------------------------------------------------- /src/stream_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/stream_impl.hpp -------------------------------------------------------------------------------- /src/stub_kvs_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/stub_kvs_impl.cpp -------------------------------------------------------------------------------- /src/stub_kvs_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/stub_kvs_impl.hpp -------------------------------------------------------------------------------- /src/topology/mt_topo_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/topology/mt_topo_manager.cpp -------------------------------------------------------------------------------- /src/topology/topo_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/topology/topo_manager.cpp -------------------------------------------------------------------------------- /src/topology/topo_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/topology/topo_manager.hpp -------------------------------------------------------------------------------- /src/types_generator_defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/types_generator_defines.hpp -------------------------------------------------------------------------------- /src/umf/ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/umf/ipc.cpp -------------------------------------------------------------------------------- /src/umf/ipc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/umf/ipc.hpp -------------------------------------------------------------------------------- /src/unordered_coll/unordered_coll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/unordered_coll/unordered_coll.cpp -------------------------------------------------------------------------------- /src/unordered_coll/unordered_coll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/src/unordered_coll/unordered_coll.hpp -------------------------------------------------------------------------------- /tests/functional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/CMakeLists.txt -------------------------------------------------------------------------------- /tests/functional/allgather_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/allgather_test.cpp -------------------------------------------------------------------------------- /tests/functional/allgatherv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/allgatherv_test.cpp -------------------------------------------------------------------------------- /tests/functional/allreduce_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/allreduce_test.cpp -------------------------------------------------------------------------------- /tests/functional/alltoall_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/alltoall_test.cpp -------------------------------------------------------------------------------- /tests/functional/alltoallv_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/alltoallv_test.cpp -------------------------------------------------------------------------------- /tests/functional/bcast_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/bcast_test.cpp -------------------------------------------------------------------------------- /tests/functional/broadcast_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/broadcast_test.cpp -------------------------------------------------------------------------------- /tests/functional/conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/conf.cpp -------------------------------------------------------------------------------- /tests/functional/conf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/conf.hpp -------------------------------------------------------------------------------- /tests/functional/lp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/lp.cpp -------------------------------------------------------------------------------- /tests/functional/lp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/lp.hpp -------------------------------------------------------------------------------- /tests/functional/lp_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/lp_impl.hpp -------------------------------------------------------------------------------- /tests/functional/reduce_scatter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/reduce_scatter_test.cpp -------------------------------------------------------------------------------- /tests/functional/reduce_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/reduce_test.cpp -------------------------------------------------------------------------------- /tests/functional/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/run.sh -------------------------------------------------------------------------------- /tests/functional/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/test.hpp -------------------------------------------------------------------------------- /tests/functional/test_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/test_impl.hpp -------------------------------------------------------------------------------- /tests/functional/transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/transport.cpp -------------------------------------------------------------------------------- /tests/functional/transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/transport.hpp -------------------------------------------------------------------------------- /tests/functional/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/functional/utils.hpp -------------------------------------------------------------------------------- /tests/googletest-release-1.8.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/googletest-release-1.8.1/CMakeLists.txt -------------------------------------------------------------------------------- /tests/googletest-release-1.8.1/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/googletest-release-1.8.1/CONTRIBUTING.md -------------------------------------------------------------------------------- /tests/googletest-release-1.8.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/googletest-release-1.8.1/LICENSE -------------------------------------------------------------------------------- /tests/googletest-release-1.8.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/googletest-release-1.8.1/Makefile.am -------------------------------------------------------------------------------- /tests/googletest-release-1.8.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/googletest-release-1.8.1/README.md -------------------------------------------------------------------------------- /tests/googletest-release-1.8.1/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/googletest-release-1.8.1/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/googletest-release-1.8.1/googletest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/googletest-release-1.8.1/googletest/Makefile.am -------------------------------------------------------------------------------- /tests/googletest-release-1.8.1/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/googletest-release-1.8.1/googletest/README.md -------------------------------------------------------------------------------- /tests/googletest-release-1.8.1/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/tests/googletest-release-1.8.1/googletest/src/gtest.cc -------------------------------------------------------------------------------- /third-party-programs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxlfoundation/oneCCL/HEAD/third-party-programs.txt --------------------------------------------------------------------------------