* docs to sphinx * Update GPU.md * Update CPU.md * Update AUTO.md * Update performance_int8_vs_fp32.md * update * update md * updates * disable doc ci * disable ci * fix index.rst Co-authored-by: Andrey Zaytsev <andrey.zaytsev@intel.com>
20 lines
341 B
Python
20 lines
341 B
Python
import os
|
|
import shutil
|
|
|
|
|
|
def remove_xml_dir(path):
|
|
if os.path.exists(path):
|
|
shutil.rmtree(path, ignore_errors=True)
|
|
|
|
|
|
def main():
|
|
import argparse
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('xml_dir')
|
|
args = parser.parse_args()
|
|
remove_xml_dir(args.xml_dir)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|