From 243614aae57dcb9cd999ad8544827b0a57772de4 Mon Sep 17 00:00:00 2001 From: charles <24678040+UnlimitedWand@users.noreply.github.com> Date: Fri, 10 Nov 2023 22:35:51 +0800 Subject: [PATCH] fix markdown format error --- tools/torch_gpu2mlu.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/torch_gpu2mlu.py b/tools/torch_gpu2mlu.py index 7e97ccc..1399455 100755 --- a/tools/torch_gpu2mlu.py +++ b/tools/torch_gpu2mlu.py @@ -62,6 +62,7 @@ report = open(mlu_report, 'w+') report.write('# Cambricon PyTorch Model Migration Report\n') report.write('## Cambricon PyTorch Changes\n') report.write('| No. | File | Description |\n') +report.write('|:----|:-------|:--------------|\n') num = 0 for root, dirs, files in os.walk(input_path): -- Gitee