SWDEV-470698 - fix formatting, add format check workflow (#657)

This commit is contained in:
Danylo Lytovchenko
2025-08-20 16:28:06 +02:00
committed by GitHub
orang tua 5840940caa
melakukan f7338717ae
1574 mengubah file dengan 162972 tambahan dan 199346 penghapusan
@@ -29,7 +29,7 @@ texture<float, 2, hipReadModeElementType> tex;
TEST_CASE("Unit_hipGetTextureReference_Positive") {
CHECK_IMAGE_SUPPORT
const textureReference *tex_ref = nullptr;
const textureReference* tex_ref = nullptr;
HIP_CHECK(hipGetTextureReference(&tex_ref, &tex));
REQUIRE(tex_ref != nullptr);
}
@@ -37,7 +37,7 @@ TEST_CASE("Unit_hipGetTextureReference_Positive") {
TEST_CASE("Unit_hipGetTextureReference_Negative") {
CHECK_IMAGE_SUPPORT
const textureReference *tex_ref = nullptr;
const textureReference* tex_ref = nullptr;
// Cuda crashes with SIGSEGV
#if HT_AMD