blob: d4a165eeea0292a3a21db17d85d73a1e00332181 [file] [log] [blame]
// RUN: iree-run-mlir --Xcompiler,iree-hal-target-device=local --Xcompiler,iree-hal-local-target-device-backends=vmvx %s | FileCheck %s
// RUN: iree-run-mlir --Xcompiler,iree-hal-target-device=local --Xcompiler,iree-hal-local-target-device-backends=llvm-cpu %s | FileCheck %s
util.global private mutable @counter = dense<2.0> : tensor<f32>
// CHECK: EXEC @inc
func.func @inc() -> tensor<f32> {
%0 = util.global.load @counter : tensor<f32>
%c1 = arith.constant dense<1.0> : tensor<f32>
%1 = arith.addf %0, %c1 : tensor<f32>
util.global.store %1, @counter : tensor<f32>
%2 = util.global.load @counter : tensor<f32>
return %2 : tensor<f32>
}
// CHECK: f32=3