aboutsummaryrefslogtreecommitdiff
path: root/mlir/test/Conversion/GPUCommon/set-default-device.mlir
blob: c23d8a33d988036df4ecb862566ba116a36e0f1b (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: mlir-opt %s --gpu-to-llvm | FileCheck %s

module attributes {gpu.container_module} {
  // CHECK-LABEL: func @set_default_device
  func.func @set_default_device(%arg0: i32) {
    // CHECK: mgpuSetDefaultDevice
    gpu.set_default_device %arg0
    return
  }
}