mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 05:31:24 +00:00
11 lines
247 B
Python
11 lines
247 B
Python
# SPDX-License-Identifier: MIT
|
|
# Copyright (c) 2018-2024, Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
import functools
|
|
import os
|
|
|
|
|
|
@functools.lru_cache(None)
|
|
def library_path():
|
|
return os.path.join(os.path.dirname(__file__), "library")
|