From 62019b341517d1856d92531216daebeee6e245d9 Mon Sep 17 00:00:00 2001 From: Yifan Zhao <yifanz16@illinois.edu> Date: Tue, 30 Mar 2021 16:02:43 -0500 Subject: [PATCH] Fixed approxhpvm.py multiple -I behavior --- hpvm/tools/py-approxhpvm/main.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hpvm/tools/py-approxhpvm/main.py.in b/hpvm/tools/py-approxhpvm/main.py.in index 804710b942..3446b07c1e 100644 --- a/hpvm/tools/py-approxhpvm/main.py.in +++ b/hpvm/tools/py-approxhpvm/main.py.in @@ -157,7 +157,7 @@ def parse_args(): help="File to approximation configurations; required for 'tensor' target" ) parser.add_argument( - "-I", "--include", type=Path, nargs="+", + "-I", "--include", type=Path, action="append", help="Additional include directories to use" ) -- GitLab