forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix what seems to be a silly bug in gpu.set_default_device rewriting.…
… Smoke test included. (llvm#75756)
- Loading branch information
Showing
2 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 | ||
} | ||
} |