mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 10:09:41 +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
[ROCm/composable_kernel commit: 3aa883b9ff]
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")
|