diff --git a/tests/ttnn/integration_tests/mistral/test_mistral_attention.py b/tests/ttnn/integration_tests/mistral/test_mistral_attention.py index efc2dc36a8bb..c3a516d12df9 100644 --- a/tests/ttnn/integration_tests/mistral/test_mistral_attention.py +++ b/tests/ttnn/integration_tests/mistral/test_mistral_attention.py @@ -2,6 +2,8 @@ # SPDX-License-Identifier: Apache-2.0 +import pytest + import torch import ttnn import tt_lib @@ -19,6 +21,7 @@ from tests.ttnn.utils_for_testing import assert_with_pcc +@pytest.mark.skip(reason="https://github.com/tenstorrent/tt-metal/issues/9076") @skip_for_wormhole_b0() def test_mistral_attention_inference(model_location_generator, device, reset_seeds): model_path = model_location_generator("mistral-7B-v0.1", model_subdir="Mistral") diff --git a/tt_eager/tt_dnn/op_library/operation.hpp b/tt_eager/tt_dnn/op_library/operation.hpp index 6ef4b8fc33dc..26285d0b5e80 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 diff --git a/ttnn/ttnn/__init__.py b/ttnn/ttnn/__init__.py index 889a517af461..ea52b8fb3864 100644 --- a/ttnn/ttnn/__init__.py +++ b/ttnn/ttnn/__init__.py @@ -57,7 +57,7 @@ def validate(self, name): if self.enable_fast_runtime_mode: if self.enable_logging: logger.warning( - "Running in fast runtime mode without logging. Please disable fast runtime mode if you want to enable logging." + "Logging cannot be enabled in fast runtime mode. Please disable fast runtime mode if you want to enable logging." ) if name in {