소스 검색

Removing the -q option which is not used anymore

Sajin 1 년 전
부모
커밋
7b3d582318
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Client/clientlaunch

+ 2 - 2
Client/clientlaunch

@@ -23,7 +23,7 @@ CLIENTS = "./clients"
 # Client thread allocation
 prefix = "numactl -C36-39,76-79 "
 
-def launch(config, cmd, threads, ip_start, lgfile):
+def launch(config, cmd, threads, lgfile):
     cmdline = ''
     cmdline += prefix + CLIENTS + " -t " + str(threads) + ""
 
@@ -98,4 +98,4 @@ if __name__ == "__main__":
     # Now add a trailing newline
     config += "\n"
 
-    launch(config, args.cmd, args.t, args.q, args.l)
+    launch(config, args.cmd, args.t, args.l)