version bump

This commit is contained in:
Julian Hammer
2019-07-17 17:04:46 +02:00
parent 7241bfc722
commit 3f63e2c3bb
3 changed files with 5 additions and 4 deletions

1
.idea/vcs.xml generated
View File

@@ -2,5 +2,6 @@
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
<mapping directory="$PROJECT_DIR$/doc/asmbench-SC18SRC-poster" vcs="Git" />
</component>
</project>

View File

@@ -6,7 +6,7 @@ with open('README.rst') as f:
setup(
name='asmbench',
version='0.1.2',
version='0.1.3',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
url='https://github.com/RRZE-HPC/asmbench',
license='AGPLv3',

View File

@@ -444,9 +444,9 @@ def main():
bench.setup_llvm()
# Benchmark TP and Lat for each instruction
# for instr_name, instr_op in instructions.items():
# tp, lat = bench.bench_instructions([instr_op])
# print("{:>12} {:>5.2f} {:>5.2f}".format(instr_name, tp, lat))
for instr_name, instr_op in instructions.items():
tp, lat = bench.bench_instructions([instr_op])
print("{:>12} {:>5.2f} {:>5.2f}".format(instr_name, tp, lat))
# Benchmark TP and Lat for all valid instruction pairs
# for a,b in itertools.combinations(instructions, 2):