Files
composable_kernel/python/ck4inductor/util.py
2026-03-06 07:40:03 +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")