blob: b07915503bc6e5764245e6fb2f502f2dca5f8b16 [file] [log] [blame]
// RUN: iree-compile --iree-hal-target-backends=vmvx %s | iree-benchmark-module --device=local-task --module=- | FileCheck %s
module {
func.func @foo1() -> tensor<4xf32> {
%input = util.unfoldable_constant dense<[0.0, 1.0, 2.0, 4.0]> : tensor<4xf32>
%result = math.exp %input : tensor<4xf32>
return %result : tensor<4xf32>
}
func.func @foo2() -> tensor<4xf32> {
%input = util.unfoldable_constant dense<[0.0, 1.0, 2.0, 4.0]> : tensor<4xf32>
%result = math.absf %input : tensor<4xf32>
return %result : tensor<4xf32>
}
}
// CHECK: BM_foo1
// CHECK: BM_foo2