Tested with `check-mlir` and `check-mlir-integration`. Issue: https://github.com/llvm/llvm-project/issues/56863 Reviewed By: antiagainst Differential Revision: https://reviews.llvm.org/D134620
11 lines
343 B
MLIR
11 lines
343 B
MLIR
// RUN: mlir-translate -test-spirv-roundtrip %s | FileCheck %s
|
|
|
|
spirv.module Logical GLSL450 requires #spirv.vce<v1.0, [Shader], []> {
|
|
spirv.func @foo() -> () "None" {
|
|
spirv.Return
|
|
}
|
|
spirv.EntryPoint "GLCompute" @foo
|
|
// CHECK: spirv.ExecutionMode @foo "LocalSizeHint", 3, 4, 5
|
|
spirv.ExecutionMode @foo "LocalSizeHint", 3, 4, 5
|
|
}
|