Kaynağa Gözat

Remove redundant run-fast.sh script

Vecna 3 ay önce
ebeveyn
işleme
20163b9f59
1 değiştirilmiş dosya ile 0 ekleme ve 26 silme
  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"