Skip to content

Commit 68e8f16

Browse files
committed
Fixup paths in tools
Change-Id: I38c550bc74e1db01a488199452a399ae75f2dfc5
1 parent bcc2392 commit 68e8f16

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Src/PublicCounterCompiler/Form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace PublicCounterCompiler
1818
using System.Drawing;
1919
using System.Text;
2020
using System.Windows.Forms;
21-
21+
2222
/// <summary>
2323
/// the main form of the PublicCounterCompiler
2424
/// </summary>

Src/PublicCounterCompiler/Program.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public static bool IgnoreInvalidCounters()
7171
public static bool CompileCounters(string api, string generation)
7272
{
7373
// calculate the proper path to output to
74-
string gpaFolder = "GPUPerfAPI\\";
74+
string gpaFolder = "GPA\\GPA\\";
7575
int endPath = Application.StartupPath.IndexOf(gpaFolder) + gpaFolder.Length;
7676

7777
if (gpaFolder.Length == endPath)
@@ -81,7 +81,7 @@ public static bool CompileCounters(string api, string generation)
8181
}
8282

8383
string gpaPath = Application.StartupPath.Substring(0, endPath);
84-
string compilerInputPath = gpaPath + "PublicCounterCompilerInputFiles\\";
84+
string compilerInputPath = gpaPath + "Src\\PublicCounterCompilerInputFiles\\";
8585
//string apiPath = gpaPath + "GPUPerfAPI" + api + "\\";
8686

8787
// file names
@@ -101,8 +101,8 @@ public static bool CompileCounters(string api, string generation)
101101
}
102102

103103
string counterDefsFile = compilerInputPath + "PublicCounterDefinitions" + suffix + generation + ".txt";
104-
string outputDirectory = gpaPath + "GPUPerfAPICounterGenerator\\";
105-
string testOutputDirectory = gpaPath + "GPUPerfAPIUnitTests\\counters\\";
104+
string outputDirectory = gpaPath + "Src\\GPUPerfAPICounterGenerator\\";
105+
string testOutputDirectory = gpaPath + "Src\\GPUPerfAPIUnitTests\\counters\\";
106106
string section = api + generation;
107107

108108
////if (MessageBox.Show("CounterNamesFile: " + counterNamesFile + Environment.NewLine +

0 commit comments

Comments
 (0)