[Swift-commit] r8410 - in SwiftApps/subjobs/simanalyze: part05 part06
ketan at ci.uchicago.edu
ketan at ci.uchicago.edu
Tue Mar 24 14:59:43 CDT 2015
Author: ketan
Date: 2015-03-24 14:59:43 -0500 (Tue, 24 Mar 2015)
New Revision: 8410
Modified:
SwiftApps/subjobs/simanalyze/part05/p5.swift
SwiftApps/subjobs/simanalyze/part06/p6.swift
Log:
update the location of app
Modified: SwiftApps/subjobs/simanalyze/part05/p5.swift
===================================================================
--- SwiftApps/subjobs/simanalyze/part05/p5.swift 2015-03-24 19:55:06 UTC (rev 8409)
+++ SwiftApps/subjobs/simanalyze/part05/p5.swift 2015-03-24 19:59:43 UTC (rev 8410)
@@ -2,12 +2,12 @@
app (file out, file log) simulation (int sim_steps, int sim_range, int sim_values)
{
- bgsh "/home/ketan/swift-tutorial/app/simulate" "--timesteps" sim_steps "--range" sim_range "--nvalues" sim_values stdout=@out stderr=@log;
+ bgsh "/home/ketan/SwiftApps/subjobs/simanalyze/app/simulate" "--timesteps" sim_steps "--range" sim_range "--nvalues" sim_values stdout=@out stderr=@log;
}
app (file out, file log) analyze (file s[])
{
- bgsh "/home/ketan/swift-tutorial/app/stats" filenames(s) stdout=@out stderr=@log;
+ bgsh "/home/ketan/SwiftApps/subjobs/simanalyze/app/stats" filenames(s) stdout=@out stderr=@log;
}
int nsim = toInt(arg("nsim", "10"));
Modified: SwiftApps/subjobs/simanalyze/part06/p6.swift
===================================================================
--- SwiftApps/subjobs/simanalyze/part06/p6.swift 2015-03-24 19:55:06 UTC (rev 8409)
+++ SwiftApps/subjobs/simanalyze/part06/p6.swift 2015-03-24 19:59:43 UTC (rev 8410)
@@ -4,24 +4,24 @@
app (file out) genseed (int nseeds)
{
- bgsh "/home/ketan/swift-tutorial/app/simulate" "-r" 2000000 "-n" nseeds stdout=@out;
+ bgsh "/home/ketan/SwiftApps/subjobs/simanalyze/app/simulate" "-r" 2000000 "-n" nseeds stdout=@out;
}
app (file out) genbias (int bias_range, int nvalues)
{
- bgsh "/home/ketan/swift-tutorial/app/simulate" "-r" bias_range "-n" nvalues stdout=@out;
+ bgsh "/home/ketan/SwiftApps/subjobs/simanalyze/app/simulate" "-r" bias_range "-n" nvalues stdout=@out;
}
app (file out, file log) simulation (int timesteps, int sim_range, file bias_file,
int scale, int sim_count, file seed_file)
{
- bgsh "/home/ketan/swift-tutorial/app/simulate" "-t" timesteps "-r" sim_range "-B" @bias_file "-x" scale
+ bgsh "/home/ketan/SwiftApps/subjobs/simanalyze/app/simulate" "-t" timesteps "-r" sim_range "-B" @bias_file "-x" scale
"-n" sim_count "-S" @seed_file stdout=@out stderr=@log;
}
app (file out, file log) analyze (file s[])
{
- bgsh "/home/ketan/swift-tutorial/app/stats" filenames(s) stdout=@out stderr=@log;
+ bgsh "/home/ketan/SwiftApps/subjobs/simanalyze/app/stats" filenames(s) stdout=@out stderr=@log;
}
# Command line arguments
More information about the Swift-commit
mailing list