From eaf0670df1d99557311f467f034eeb3c41003427 Mon Sep 17 00:00:00 2001 From: cyy Date: Tue, 22 Jul 2025 23:48:28 +0800 Subject: [PATCH] Use ::std::string_view Signed-off-by: cyy --- backends/vulkan/test/op_tests/utils/aten_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/vulkan/test/op_tests/utils/aten_types.py b/backends/vulkan/test/op_tests/utils/aten_types.py index 6ad2f568e91..374b3b08a31 100644 --- a/backends/vulkan/test/op_tests/utils/aten_types.py +++ b/backends/vulkan/test/op_tests/utils/aten_types.py @@ -24,7 +24,7 @@ OPT_LAYOUT = "::std::optional" OPT_MEMORY_FORMAT = "::std::optional" OPT_SCALAR_TYPE = "::std::optional" -STRING = "std::string_view" +STRING = "::std::string_view" OLD_STRING = "c10::string_view" TWO_TENSOR_TUPLE = "::std::tuple" THREE_TENSOR_TUPLE = "::std::tuple"