#!/bin/csh -f
#
# set up a config dir for each interesting combination
#
# Part of
#              The STARFISH Parallel file-system simulator
#        (Simulation Tool for Advanced Research in File Systems)
# 
#                               David Kotz
#                           Dartmouth College
#                              Version 2.0
#                              January 1995
#                          dfk@cs.dartmouth.edu

if (! -d configs) mkdir configs

echo > s.super

foreach Nio (1 2 4 8 16)
    foreach Ndisk (1 2 4 8 16)
    	if ($Ndisk < $Nio) continue
        foreach Ncomp (1 2 4 8 16)
echo suite-all pats/short $Nio $Ncomp $Ndisk
    	    suite-all pats/short $Nio $Ncomp configs/8*12800.*.$Ndisk >> s.super
        end
    end
end

echo update >> s.super
