commit | 399adb344948346fc7cc4795072b44a3a526f944 | [log] [tgz] |
---|---|---|
author | Okwan Kwon <okwan@google.com> | Thu Dec 15 14:36:13 2022 -0800 |
committer | GitHub <noreply@github.com> | Thu Dec 15 14:36:13 2022 -0800 |
tree | 307285a39fdf539db10f3da0f57924f9618fbb08 | |
parent | f55f292e2784562739689f83bc1479c7155238ca [diff] |
Integrate NCCL (#11481) This integration enables basic NCCL features in the CUDA runtime. This enables a minimum test to run. Many more things should be done on top of this. To enable a build with NCCL, use `-DIREE_HAL_DRIVER_CUDA_NCCL=ON` for your cmake command. The same string is used for the macro to guard the C source code. Two environmental variables are introduced to set the number of processes and process ID. 1. `IREE_SPMD_NPROCS` 2. `IREE_SPMD_PROCID` The GPU ID can be set using `--device=cuda://<index>` or `--device=cuda://GPU-<uuid>` for `iree-run-module`. The NCCL dynamic library is loaded when users set `IREE_SPMD_NPROCS` to >= 1. There are many things to be done based on this work. We need 1. a full set of E2E tests from stream async ops to the runtime, 2. to decide where to host the modified NCCL source code, 3. to setup a CI test flow and more. Here is a sample allgather test: ```mlir func.func @main() -> !hal.buffer_view { %c0 = arith.constant 0 : index %c2 = arith.constant 2 : index %c8 = arith.constant 8 : index %c16 = arith.constant 16 : index %input_cst = stream.tensor.constant : tensor<2xi32> in !stream.resource<constant> = dense<[101, 102]> : tensor<2xi32> %input = stream.async.transfer %input_cst : !stream.resource<constant>{%c8} -> !stream.resource<*>{%c8} %fill_val = arith.constant -1 : i32 %output = stream.tensor.splat %fill_val : i32 -> tensor<2x2xi32> in !stream.resource<*>{%c16} %channel = stream.channel.default on(#hal.affinity.queue<[0]>) : !stream.channel %0 = stream.async.collective<all_gather : si32>[%c2] on(#hal.affinity.queue<[0]>) channel(%channel) %input[%c0 to %c8 for %c8], %output[%c0 to %c16 for %c16] : !stream.resource<*>{%c8} -> %output as !stream.resource<*>{%c16} %1 = stream.async.transfer %0 : !stream.resource<*>{%c16} -> !stream.resource<external>{%c16} %result = stream.tensor.export %1 : tensor<2x2xi32> in !stream.resource<external>{%c16} -> !hal.buffer_view return %result : !hal.buffer_view } ``` A sample command to build is: ```zsh iree-compile --iree-hal-cuda-llvm-target-arch=sm_86 --iree-hal-target-backends=cuda -o allgather.vmfb allgather.mlir ``` Here is a sample command line for a host with two CUDA devices and the result. ```zsh IREE_SPMD_NPROCS=2 NCCL_COMM_ID=127.0.0.1:8000 IREE_SPMD_PROCID=0 iree-run-module --device=cuda://0 --module_file=allgather.vmfb --entry_function=main & \ IREE_SPMD_NPROCS=2 NCCL_COMM_ID=127.0.0.1:8000 IREE_SPMD_PROCID=1 iree-run-module --device=cuda://1 --module_file=allgather.vmfb --entry_function=main EXEC @main EXEC @main result[0]: hal.buffer_view 2x2xi32=[101 102][101 102] result[0]: hal.buffer_view 2x2xi32=[101 102][101 102] ```
IREE (Intermediate Representation Execution Environment, pronounced as “eerie”) is an MLIR-based end-to-end compiler and runtime that lowers Machine Learning (ML) models to a unified IR that scales up to meet the needs of the datacenter and down to satisfy the constraints and special considerations of mobile and edge deployments.
See our website for project details, user guides, and instructions on building from source.
IREE is still in its early phase. We have settled down on the overarching infrastructure and are actively improving various software components as well as project logistics. It is still quite far from ready for everyday use and is made available without any support at the moment. With that said, we welcome any kind of feedback on any communication channels!
See our website for more information.
IREE is licensed under the terms of the Apache 2.0 License with LLVM Exceptions. See LICENSE for more information.