SWDEV-291783 - Catch2 tests for some of Stream APIs

Change-Id: I656fc59184863ef142cf89d7541982492f6b8484
This commit is contained in:
Sarbojit Sarkar
2021-06-25 08:28:59 +00:00
gecommit door Sarbojit Sarkar
bovenliggende c749be3299
commit 617f19e6d9
8 gewijzigde bestanden met toevoegingen van 298 en 1 verwijderingen
+5 -1
Bestand weergeven
@@ -43,5 +43,9 @@ THE SOFTWARE.
// Utility Functions
namespace HipTest {
int getDeviceCount();
static inline int getDeviceCount() {
int dev = 0;
HIP_CHECK(hipGetDeviceCount(&dev));
return dev;
}
}