Files
water-body-segmentation/sam3/perflib/__init__.py
2026-03-09 17:23:53 +08:00

11 lines
235 B
Python

# Copyright (c) Meta Platforms, Inc. and affiliates. All Rights Reserved
# pyre-unsafe
import os
is_enabled = False
if os.getenv("USE_PERFLIB", "1") == "1":
# print("Enabled the use of perflib.\n", end="")
is_enabled = True