Skip to content

Commit 40b45bd

Browse files
drprajapgfxbot
authored andcommitted
Change recommended output dir in build instruction
Issue intel#16 Change-Id: I167e9b8ff1953a3163484bf37e4c67824773363b
1 parent 64a8ba1 commit 40b45bd

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

README.rst

+8-7
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,17 @@ https://opensource.org/licenses/MIT
2222
Building
2323
========
2424

25-
1) Get gmmlib repo, make it look like
26-
<workspace>
25+
1) Get gmmlib repo
2726

28-
|- GmmLib
29-
30-
2) $ mkdir <workspace>/build
27+
|- gmmlib
3128
32-
3) $ cd <workspace>/build
29+
2) Change it to root directory
3330

34-
4) cmake [-DCMAKE_BUILD_TYPE= Release | Debug | ReleaseInternal] [-DARCH= 64 | 32] ../GmmLib
31+
$ cd gmmlib
32+
33+
3) $ mkdir build && cd build
34+
35+
4) cmake [-DCMAKE_BUILD_TYPE= Release | Debug | ReleaseInternal] [-DARCH= 64 | 32] ..
3536

3637
5) $ make -j8 ( Also performs compile time ULT)
3738

Source/GmmLib/ULT/GmmGen10ResourceULT.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,10 @@ TEST_F(CTestGen10Resource, TestMSAA)
9595
uint32_t TestArraySize[2] = {1, 5};
9696
uint32_t MinPitch = 32;
9797

98-
uint32_t HAlign, VAlign, TileDimX, TileDimY, MCSHAlign, MCSVAlign, TileSize;
99-
uint32_t ExpectedMCSBpp;
98+
uint32_t HAlign = 0, VAlign = 0;
99+
uint32_t TileDimX = 0, TileDimY = 0;
100+
uint32_t MCSHAlign = 0, MCSVAlign = 0, TileSize = 0;
101+
uint32_t ExpectedMCSBpp = 0;
100102
std::vector<tuple<int, int, int, bool, int, int>> List; //TEST_TILE_TYPE, TEST_BPP, TEST_RESOURCE_TYPE, Depth or RT, TestDimension index, ArraySize
101103
auto Size = BuildInputIterator(List, 4, 2); // Size of arrays TestDimensions, TestArraySize
102104

0 commit comments

Comments
 (0)