
This is is the start of the MLIR benchmarks. It sets up a command line tool along with conventions to define and run benchmarks using mlir's python bindings. Reviewed By: aartbik Differential Revision: https://reviews.llvm.org/D115174
15 lines
245 B
Python
15 lines
245 B
Python
from setuptools import setup
|
|
from setuptools import find_packages
|
|
|
|
|
|
setup(
|
|
name="mbr",
|
|
version="1.0.0",
|
|
packages=find_packages(),
|
|
entry_points={
|
|
"console_scripts": [
|
|
"mbr = mbr.main:main",
|
|
],
|
|
},
|
|
)
|