mirror of https://github.com/m-labs/artiq.git
compiler.testbench.perf_embedding: more fine grained reporting.
This commit is contained in:
parent
aa1f32a5df
commit
c5ba44b8a6
|
@ -44,6 +44,10 @@ def main():
|
||||||
|
|
||||||
stitcher = embed()
|
stitcher = embed()
|
||||||
module = Module(stitcher)
|
module = Module(stitcher)
|
||||||
|
target = OR1KTarget()
|
||||||
|
llvm_ir = target.compile(module)
|
||||||
|
elf_obj = target.assemble(llvm_ir)
|
||||||
|
elf_shlib = target.link([elf_obj], init_fn=module.entry_point())
|
||||||
|
|
||||||
benchmark(lambda: embed(),
|
benchmark(lambda: embed(),
|
||||||
"ARTIQ embedding")
|
"ARTIQ embedding")
|
||||||
|
@ -51,8 +55,17 @@ def main():
|
||||||
benchmark(lambda: Module(stitcher),
|
benchmark(lambda: Module(stitcher),
|
||||||
"ARTIQ transforms and validators")
|
"ARTIQ transforms and validators")
|
||||||
|
|
||||||
benchmark(lambda: OR1KTarget().compile_and_link([module]),
|
benchmark(lambda: target.compile(module),
|
||||||
"LLVM optimization and linking")
|
"LLVM optimizations")
|
||||||
|
|
||||||
|
benchmark(lambda: target.assemble(llvm_ir),
|
||||||
|
"LLVM machine code emission")
|
||||||
|
|
||||||
|
benchmark(lambda: target.link([elf_obj], init_fn=module.entry_point()),
|
||||||
|
"Linking")
|
||||||
|
|
||||||
|
benchmark(lambda: target.strip(elf_shlib),
|
||||||
|
"Stripping debug information")
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in New Issue