Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions projects/hip-tests/catch/config/configs/unit/kernel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,7 @@ kernel:
Unit_ConfigureCall_CheckParams:
<<: *level_2
tags: [launch]
Unit_hipGridLaunch_ExceedMaxGridDim_Negative:
Comment thread
kjayapra-amd marked this conversation as resolved.
<<: *level_2
disabled: [amd_windows, amd_linux]
tags: [launch]
3 changes: 2 additions & 1 deletion projects/hip-tests/catch/config/configs/unit/memory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ memory:
Unit_hipMemPrefetchAsync_NonPageSz:
<<: *level_2
# Disabling below tests temporarily due to change in API behavior
disabled: [amd_windows, amd_wsl]
disabled: [amd_windows, amd_wsl, amd_linux]
tags: [query]
Unit_hipMemAdvise_MmapMem:
<<: *level_2
Expand Down Expand Up @@ -1767,6 +1767,7 @@ memory:
tags: [query]
Unit_hipMemPrefetchBatchAsync_LocationDistribution:
<<: *level_2
disabled: [amd_windows, amd_linux]
tags: [query]
Unit_hipMemPrefetchBatchAsync_RoundTripDataIntegrity:
<<: *level_2
Expand Down
4 changes: 2 additions & 2 deletions projects/hip-tests/catch/config/configs/unit/module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module:
Unit_hipModuleLaunchKernel_Negative_Parameters:
<<: *level_2
# Below tests are failing PSDB
disabled: [amd_windows]
disabled: [amd_windows, amd_linux]
tags: [launch]
Unit_hipModuleLaunchKernel_Fntl:
<<: *level_2
Expand Down Expand Up @@ -292,7 +292,7 @@ module:
Unit_hipExtModuleLaunchKernel_Negative_Parameters:
<<: *level_2
# Below tests are failing PSDB
disabled: [amd_windows]
disabled: [amd_windows, amd_linux]
tags: [launch]
Unit_hipExtModuleLaunchKernel_Functional:
<<: *level_2
Expand Down
2 changes: 1 addition & 1 deletion projects/hip-tests/catch/unit/kernel/hipGridLaunch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ TEST_CASE("Unit_hipGridLaunch_MaxGridDim_GetDeviceAttribute") {
}
}

TEST_CASE("Unit_hipGridLaunch_ExceedMaxGridDim_Negative") {
HIP_TEST_CASE(Unit_hipGridLaunch_ExceedMaxGridDim_Negative) {
const unsigned int maxGridX = GetDeviceAttribute(hipDeviceAttributeMaxGridDimX, 0);
const unsigned int maxGridY = GetDeviceAttribute(hipDeviceAttributeMaxGridDimY, 0);
const unsigned int maxGridZ = GetDeviceAttribute(hipDeviceAttributeMaxGridDimZ, 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ TEST_CASE("Unit_hipMemPrefetchBatchAsync_SingleOperationSingleLocation") {
* 2. Each operation to different location (numPrefetchLocs=count)
* 3. Mixed grouped locations (some to location A, others to B)
*/
TEST_CASE("Unit_hipMemPrefetchBatchAsync_LocationDistribution") {
HIP_TEST_CASE(Unit_hipMemPrefetchBatchAsync_LocationDistribution) {
REQUIRE_MANAGED_ACCESS_DEVICE(device);

enum class DistributionPattern { AllSame, EachDifferent, MixedGrouped };
Expand Down
Loading