Skip to content
Snippets Groups Projects
Commit 7a2153e7 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Copy compiled shared object to output folder

parent d19a094f
No related merge requests found
......@@ -179,6 +179,9 @@ def main():
if hasattr(v, '__doc__'):
print(v.__doc__)
shared_object_file = module.compiled_file.replace('.cpp', '.so')
copyfile(shared_object_file, join(args.output_folder, 'pyronn_torch.so'))
if __name__ == '__main__':
main()
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment