From 18f90e63391101d414b1ecca7a5ee7430e621e62 Mon Sep 17 00:00:00 2001 From: Ilia Filippov Date: Fri, 22 Nov 2013 17:06:19 +0400 Subject: [PATCH] fix of perf.py --- perf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perf.py b/perf.py index 1b9de452..2d83475f 100755 --- a/perf.py +++ b/perf.py @@ -336,7 +336,7 @@ def perf(options1, args): test_only_r = " sse2-i32x4 sse2-i32x8 sse4-i32x4 sse4-i32x8 sse4-i16x8 \ sse4-i8x16 avx1-i32x8 avx1-i32x16 avx1-i64x4 avx1.1-i32x8 \ avx1.1-i32x16 avx1.1-i64x4 avx2-i32x8 avx2-i32x16 avx2-i64x4 " - test_only = options.perf_target.split(" ") + test_only = options.perf_target.split(",") for iterator in test_only: if not (" " + iterator + " " in test_only_r): error("unknow option for target: " + iterator, 1)