remove hard coded relative path for getting profiling data
authorjzhou <jzhou>
Tue, 2 Mar 2010 22:52:14 +0000 (22:52 +0000)
committerjzhou <jzhou>
Tue, 2 Mar 2010 22:52:14 +0000 (22:52 +0000)
Robust/src/Analysis/Scheduling/ScheduleAnalysis.java

index 0da216febe0f1bd20a27706a89273dfb23925e99..f2cce70ab2b81efbbb8e4c3dc0392e3895a1fccb 100644 (file)
@@ -247,7 +247,7 @@ public class ScheduleAnalysis {
       // read in profile data and set
       //FileInputStream inStream = new FileInputStream("/scratch/profile.rst");
       FileInputStream inStream = 
-        new FileInputStream("/scratch/" + this.state.profilename);
+        new FileInputStream(/*"/scratch/" + */this.state.profilename);
       byte[] b = new byte[1024 * 100];
       int length = inStream.read(b);
       if(length < 0) {