From 3202d37c457e45b1c31ad440339ad28ed56b7a3a Mon Sep 17 00:00:00 2001 From: mlevesquedion Date: Thu, 25 Apr 2024 09:39:17 -0700 Subject: [PATCH] Remove stray \n in stablehlo_to_tf example (#2258) --- stablehlo/integrations/python/stablehlo/savedmodel/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stablehlo/integrations/python/stablehlo/savedmodel/README.md b/stablehlo/integrations/python/stablehlo/savedmodel/README.md index fe6970f20e..05ae2cb6fc 100644 --- a/stablehlo/integrations/python/stablehlo/savedmodel/README.md +++ b/stablehlo/integrations/python/stablehlo/savedmodel/README.md @@ -40,7 +40,7 @@ arguments to the API. %1 = stablehlo.dot_general %arg2, %0, contracting_dims = [1] x [0], precision = [DEFAULT, DEFAULT] : (tensor<2x2xf32>, tensor<2x2xf32>) -> tensor<2x2xf32> %2 = stablehlo.broadcast_in_dim %arg0, dims = [1] : (tensor<2xf32>) -> tensor<2x2xf32> %3 = stablehlo.add %1, %2 : tensor<2x2xf32> - return %3 : tensor<2x2xf32>\n + return %3 : tensor<2x2xf32> } } ```