From ebc013631bcc552ce50eec6f7d860cc21f0671e5 Mon Sep 17 00:00:00 2001 From: Shengchen Kan Date: Mon, 9 Sep 2024 11:18:35 +0800 Subject: [PATCH] Improve description for for_each --- for_each.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/for_each.py b/for_each.py index 2caa742..a991b8e 100755 --- a/for_each.py +++ b/for_each.py @@ -5,7 +5,7 @@ if __name__ == '__main__': parser = argparse.ArgumentParser( - description='Process all the files in the directory, whose mappings is described by a csv file, where name, exe, sim_files are required') + description='Process all the files in the directory by running sde2csv, csv2json, annotater, bb2fline on them. The mapping from workloads to files is described by a csv file, where name, exe, sim_files are required.') parser.add_argument('dir', help='directory of the inputs') parser.add_argument('--csv', required=True, help='csv file to describe the mappings') parser.add_argument('--items', help='Extra interesting items in sim_files')