From a1c98d48d8a6cb73053ef38326f7bbd5c381b9db Mon Sep 17 00:00:00 2001 From: HolyWu Date: Sun, 8 Sep 2024 17:35:33 +0800 Subject: [PATCH] register_jit_hooks: Remove confusing ERROR message --- core/runtime/register_jit_hooks.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/core/runtime/register_jit_hooks.cpp b/core/runtime/register_jit_hooks.cpp index b17c2988be..d02f098904 100644 --- a/core/runtime/register_jit_hooks.cpp +++ b/core/runtime/register_jit_hooks.cpp @@ -112,7 +112,6 @@ static auto TORCHTRT_UNUSED TRTEngineTSRegistrtion = return serialize_info; }, [](std::vector serialized_info) -> c10::intrusive_ptr { - LOG_ERROR(serialized_info[TARGET_PLATFORM_IDX]); serialized_info[ENGINE_IDX] = base64_decode(serialized_info[ENGINE_IDX]); TRTEngine::verify_serialization_fmt(serialized_info); return c10::make_intrusive(serialized_info);