mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-23 08:37:39 +00:00
* chore(copyright): update copyright header for tile_engine directory * chore(copyright): update copyright header for script directory * chore(copyright): update copyright header for test_data directory * chore(copyright): update copyright header for python directory
11 lines
235 B
Python
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")
|