forked from ROCm/Tensile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 2.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
################################################################################
# Install Tensile
# - installs python scripts, c++ source files and a few configs
# - creates executables for running benchmarking
# - installs TensileConfig.cmake so one call find_package(Tensile)
################################################################################
from setuptools import setup
import os.path
import re
def readRequirementsFromTxt():
requirements = []
with open("requirements.txt") as req_file:
for line in req_file.read().splitlines():
if not line.strip().startswith("#"):
requirements.append(line)
return requirements
def readVersionFromInit():
fileStr = open(os.path.join("Tensile", "__init__.py")).read()
return re.search("__version__ = ['\"]([^'\"]+)['\"]", fileStr).group(1)
setup(
name="Tensile",
version=readVersionFromInit(),
description="An auto-tuning tool for GEMMs and higher-dimensional tensor contractions on GPUs.",
url="https://github.com/RadeonOpenCompute/Tensile",
author="Advanced Micro Devices",
license="MIT",
install_requires=readRequirementsFromTxt(),
packages=["Tensile"],
package_data={ "Tensile": ["Tensile/Source/*", "Tensile/Configs/*"] },
data_files=[ ("cmake", ["Tensile/Source/TensileConfig.cmake", "Tensile/Source/TensileConfigVersion.cmake"]) ],
include_package_data=True,
entry_points={"console_scripts": [
# user runs a benchmark
"tensile = Tensile.Tensile:main",
"tensileBenchmarkLibraryClient = Tensile.TensileBenchmarkLibraryClient:main",
# CMake calls this to create Tensile.lib
"TensileCreateLibrary = Tensile.TensileCreateLibrary:TensileCreateLibrary",
# automatic benchmarking for rocblas
"tensile_rocblas_sgemm = Tensile.Tensile:TensileROCBLASSGEMM",
"tensile_rocblas_dgemm = Tensile.Tensile:TensileROCBLASDGEMM",
"tensile_rocblas_cgemm = Tensile.Tensile:TensileROCBLASCGEMM",
"tensile_rocblas_zgemm = Tensile.Tensile:TensileROCBLASZGEMM",
# automatically find fastest sgemm exhaustive search
"tensile_sgemm = Tensile.Tensile:TensileSGEMM5760",
]}
)