Files
composable_kernel/python/ck4inductor/util.py
2025-11-14 17:12:11 +00:00

11 lines
235 B
Python

# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
# SPDX-License-Identifier: MIT
import functools
import os
@functools.lru_cache(None)
def library_path():
return os.path.join(os.path.dirname(__file__), "library")