-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #327 from daineAMD/master
Merge staging 4deab90 into master with GO from CQE
- Loading branch information
Showing
130 changed files
with
5,293 additions
and
3,888 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* ************************************************************************ | ||
* Copyright 2016-2021 Advanced Micro Devices, Inc. | ||
* | ||
* ************************************************************************ */ | ||
|
||
#include "utility.h" | ||
#include <gtest/gtest.h> | ||
#include <math.h> | ||
#include <stdexcept> | ||
#include <vector> | ||
|
||
namespace | ||
{ | ||
|
||
TEST(hipblas_auxiliary, statusToString) | ||
{ | ||
EXPECT_EQ(0, | ||
strcmp("HIPBLAS_STATUS_ALLOC_FAILED", | ||
hipblasStatusToString(HIPBLAS_STATUS_ALLOC_FAILED))); | ||
} | ||
|
||
} // namespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.