aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Lu <aaron.lu@intel.com>2016-07-07 10:53:02 +0800
committerFengguang Wu <fengguang.wu@intel.com>2016-07-07 11:41:41 +0800
commitc5a1d2a6a0d54e4b1e900307b504e9294cb6a34f (patch)
treeddaf16a9d99b89df9445f30f9cad156cd1f2309e
parent6bee547bdcbbf9e84e7b0eb9c477b26272c9948b (diff)
downloadvm-scalability-c5a1d2a6a0d54e4b1e900307b504e9294cb6a34f.tar.gz
case-anon-wx-seq-mt: remove the /N for thread case
Since this is a preallocate and all threads will use the same memory, there is no need to divide the memory size by N. Signed-off-by: Aaron Lu <aaron.lu@intel.com> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
-rwxr-xr-xcase-anon-wx-seq-mt2
1 files changed, 1 insertions, 1 deletions
diff --git a/case-anon-wx-seq-mt b/case-anon-wx-seq-mt
index 1a9cea9..076fc9b 100755
--- a/case-anon-wx-seq-mt
+++ b/case-anon-wx-seq-mt
@@ -2,4 +2,4 @@
. ./hw_vars
-$USEMEM -t $nr_task --prealloc $((mem / nr_task / 2))
+$USEMEM -t $nr_task --prealloc $((mem / 2))