Update hipGetAlgntoffset2D.cpp

Bu işleme şunda yer alıyor:
lthakur
2018-07-11 11:51:08 +05:30
işlemeyi yapan: GitHub
ebeveyn 936b878d72
işleme b3b198f745
+4 -3
Dosyayı Görüntüle
@@ -37,10 +37,10 @@ texture<int, hipTextureType2D,hipReadModeElementType> tex;
bool testResult = true;
void runTest(void);
bool runTest(void);
int main(int argc, char** argv) {
runTest();
testResult=runTest();
if (testResult) {
passed();
@@ -50,7 +50,7 @@ int main(int argc, char** argv) {
}
void runTest()
bool runTest()
{
int val[R][C],i,j;
@@ -81,4 +81,5 @@ HIPCHECK(hipGetTextureAlignmentOffset(&offset,&tex));
HIPCHECK(hipUnbindTexture(&tex));
HIPCHECK(hipFreeArray(hipArray));
return testResult;
}