Przeglądaj źródła

Remove redundant run-fast.sh script

Vecna 3 miesięcy temu
rodzic
commit
20163b9f59
1 zmienionych plików z 0 dodań i 26 usunięć
  1. 0 26
      run-fast.sh

+ 0 - 26
run-fast.sh

@@ -1,26 +0,0 @@
-#!/bin/sh
-
-ncpus=""
-cpurange=""
-
-while [ -n "$1" ]; do
-    if [ "$1" == "--fast" ]; then
-        fast=true
-    elif [ "$1" == "-n" ]; then
-        ncpus="$2"
-        shift
-    elif [ "$1" == "-N" ]; then
-        cpurange="$2"
-        shift
-    fi
-    shift
-done
-
-if [ -z "$ncpus" ]; then
-    ncpus=$(nproc)
-fi
-if [ -z "$cpurange" ]; then
-    cpurange="0-$((ncpus - 1))"
-fi
-
-./run.sh --fast -n "$ncpus" -N "$cpurange"