From 1d0f6294a7b29913918f12774eed62c26b890e03 Mon Sep 17 00:00:00 2001 From: Akhmed Rakhmati Date: Thu, 30 May 2024 17:10:07 +0000 Subject: [PATCH] #5389: removed early return from validate when enable_fast_runtime_mode was set to true --- tt_eager/tt_dnn/op_library/operation.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/tt_eager/tt_dnn/op_library/operation.hpp b/tt_eager/tt_dnn/op_library/operation.hpp index 6ef4b8fc33d..26285d0b5e8 100644 --- a/tt_eager/tt_dnn/op_library/operation.hpp +++ b/tt_eager/tt_dnn/op_library/operation.hpp @@ -528,9 +528,6 @@ struct DeviceOperation final { const Tensors& input_tensors, const OptionalConstTensors& optional_input_tensors, const OptionalTensors& optional_output_tensors) -> void { - if (ttnn::CONFIG.enable_fast_runtime_mode) { - return; - } const auto& operation = *reinterpret_cast*>(&storage); if constexpr ( (detail::implements_validate() or