HW3: [No Compile] Init HW3 with HW2 files

This commit is contained in:
2025-01-21 22:25:49 +02:00
parent e7be3a10dd
commit 2ff6ae171a
10 changed files with 30433 additions and 0 deletions
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+34
View File
@@ -0,0 +1,34 @@
/**
* \file
* \brief PDS HW3 tests
*
* To run these test execute:
* ...
*
* \author
* Christos Choutouridis AEM:8997
* <cchoutou@ece.auth.gr>
*/
#include <gtest/gtest.h>
/*
* Global fixtures
*/
class TCUDAbitonic : public ::testing::Test {
protected:
static void SetUpTestSuite() { }
static void TearDownTestSuite() { }
};
/*
* MPI: SysTest (acceptance)
* Each process executes distBubbletonic for uin8_t [16]
*/
TEST_F(TCUDAbitonic, test1) {
EXPECT_EQ(true, true);
}