Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
frasercrmck committed Jun 13, 2024
1 parent b012b83 commit 9afc474
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build-hw-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ env:
UR_LOG_LEVEL_ZERO: "level:error;flush:error"
UR_LOG_NATIVE_CPU: "level:error;flush:error"
UR_LOG_OPENCL: "level:error;flush:error"
AMD_LOG_LEVEL: "4"

jobs:
adapter-build-hw:
Expand Down Expand Up @@ -79,9 +78,7 @@ jobs:

- name: Test adapters
working-directory: ${{github.workspace}}/build
run: |
./bin/test-usm
env UR_CTS_ADAPTER_PLATFORM="${{matrix.adapter.platform}}" ctest -C ${{matrix.build_type}} --output-on-failure -L "conformance" --timeout 180
run: env UR_CTS_ADAPTER_PLATFORM="${{matrix.adapter.platform}}" ctest -C ${{matrix.build_type}} --output-on-failure -L "conformance" --timeout 180

- name: Get information about platform
if: ${{ always() }}
Expand Down
5 changes: 1 addition & 4 deletions test/conformance/enqueue/enqueue_adapter_hip.match
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
urEnqueueKernelLaunchTest.InvalidKernelArgs/AMD_HIP_BACKEND___{{.*}}_
urEnqueueKernelLaunchKernelWgSizeTest.NonMatchingLocalSize/AMD_HIP_BACKEND___{{.*}}_
urEnqueueKernelLaunchKernelSubGroupTest.Success/AMD_HIP_BACKEND___{{.*}}_

# This passes on HIP 6.0+ but fails (unsupported) before then
{{OPT}}urEnqueueKernelLaunchUSMLinkedList.Success/AMD_HIP_BACKEND___{{.*}}___UsePoolEnabled

urEnqueueKernelLaunchUSMLinkedList.Success/AMD_HIP_BACKEND___{{.*}}___UsePoolEnabled
{{OPT}}urEnqueueMemBufferCopyRectTestWithParam.Success/AMD_HIP_BACKEND___{{.*}}___copy_row_2D
{{OPT}}urEnqueueMemBufferCopyRectTestWithParam.Success/AMD_HIP_BACKEND___{{.*}}___copy_3d_2d
urEnqueueMemBufferFillTest.Success/AMD_HIP_BACKEND___{{.*}}___size__256__patternSize__256
Expand Down
2 changes: 1 addition & 1 deletion test/conformance/enqueue/urEnqueueKernelLaunch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ struct urEnqueueKernelLaunchUSMLinkedList
const int num_nodes = 4;
bool use_pool = false;
ur_usm_pool_handle_t pool = nullptr;
ur_queue_handle_t queue;
ur_queue_handle_t queue = nullptr;
};

UUR_TEST_SUITE_P(
Expand Down
2 changes: 1 addition & 1 deletion test/conformance/testing/include/uur/fixtures.h
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ template <class T> struct urQueueTestWithParam : urContextTestWithParam<T> {
}
ur_queue_properties_t queue_properties = {
UR_STRUCTURE_TYPE_QUEUE_PROPERTIES, nullptr, 0};
ur_queue_handle_t queue;
ur_queue_handle_t queue = nullptr;
};

template <class T>
Expand Down

0 comments on commit 9afc474

Please sign in to comment.