This CL uses the newly added -split-input-file CLI option to mlir-translate to combine certain (de)serialization tests. It also renames certain test filenames. PiperOrigin-RevId: 270816324
11 lines
284 B
MLIR
11 lines
284 B
MLIR
// RUN: mlir-translate -test-spirv-roundtrip %s | FileCheck %s
|
|
|
|
spv.module "Logical" "GLSL450" {
|
|
func @foo() -> () {
|
|
spv.Return
|
|
}
|
|
spv.EntryPoint "GLCompute" @foo
|
|
// CHECK: spv.ExecutionMode @foo "LocalSizeHint", 3, 4, 5
|
|
spv.ExecutionMode @foo "LocalSizeHint", 3, 4, 5
|
|
}
|