From c7a536f0fe8c0ddef8dc81c50d6905b2833287d1 Mon Sep 17 00:00:00 2001 From: Gunhyun Park Date: Fri, 3 May 2024 18:45:51 +0000 Subject: [PATCH] Update test name to match tested element type --- stablehlo/tests/interpret/log.mlir | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stablehlo/tests/interpret/log.mlir b/stablehlo/tests/interpret/log.mlir index 6089175d4eb..f31d0111290 100644 --- a/stablehlo/tests/interpret/log.mlir +++ b/stablehlo/tests/interpret/log.mlir @@ -1,6 +1,6 @@ // RUN: stablehlo-translate --interpret -split-input-file %s -func.func @log_op_test_i64() { +func.func @log_op_test_f64() { %operand = stablehlo.constant dense<[[1.0, 2.0], [3.0, 4.0]]> : tensor<2x2xf64> %result = stablehlo.log %operand : tensor<2x2xf64> check.expect_almost_eq_const %result, dense<[[0.000000e+00, 0.69314718055994529], [1.0986122886681098, 1.3862943611198906]]> : tensor<2x2xf64>