diff --git a/tests/conftest.py b/tests/conftest.py index e82a6c080..5f247188f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,7 +1,11 @@ # Copyright (C) 2023, Advanced Micro Devices, Inc. All rights reserved. # SPDX-License-Identifier: BSD-3-Clause +import hypothesis import torch SEED = 123456 +DIFFERING_EXECUTOR_ENUM = 10 # Disabled since it fails with normal test setup + torch.random.manual_seed(SEED) +hypothesis.settings(suppress_health_check=hypothesis.HealthCheck(DIFFERING_EXECUTOR_ENUM))