Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix branch name in CI workflow and links to test plans. #982

Merged
merged 1 commit into from
Nov 13, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/cts_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
push:
branches:
# Run on our default base branch to prime ccache for faster CI runs in PRs.
- SYCL-2020
- main

jobs:
# Pushing container images requires DockerHub credentials, provided as GitHub secrets.
Expand Down
2 changes: 1 addition & 1 deletion test_plans/kernel.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is a test plan cover sycl::kernel functionality that is not covered by curr

== Testing scope

Tests intend to cover functions from 4.11.13. The kernel class that are not covered in https://github.com/KhronosGroup/SYCL-CTS/tree/SYCL-2020/tests/kernel
Tests intend to cover functions from 4.11.13. The kernel class that are not covered in https://github.com/KhronosGroup/SYCL-CTS/tree/main/tests/kernel

=== Device coverage

Expand Down
4 changes: 2 additions & 2 deletions test_plans/kernel_bundle.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is a test plan cover kernel_bundle functionality that is not covered by cur

== Testing scope

Tests intend to cover functions from 4.11. Kernel bundles that are not covered in https://github.com/KhronosGroup/SYCL-CTS/tree/SYCL-2020/tests/kernel_bundle
Tests intend to cover functions from 4.11. Kernel bundles that are not covered in https://github.com/KhronosGroup/SYCL-CTS/tree/main/tests/kernel_bundle

=== Device coverage

Expand Down Expand Up @@ -116,7 +116,7 @@ Check that result of `get_kernel_ids`:

=== Tests for working with specialization constants

Partially tested in https://github.com/KhronosGroup/SYCL-CTS/blob/SYCL-2020/tests/specialization_constants/specialization_constants_via_kernel_bundle.h
Partially tested in https://github.com/KhronosGroup/SYCL-CTS/blob/main/tests/spec_constants/spec_constants_via_kernel_bundle.h

There are two spec constant defined: `SpecName` and `OtherSpecName`.
kernel_handler::get_specialization_constant<OtherSpecName>() shouldn't be used in any kernel in the application.
Expand Down
2 changes: 1 addition & 1 deletion test_plans/queue_constructors.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is a test plan for the for new constructors of class `sycl::queue` describe

== Testing scope

Tests intend to cover not covered constructors from 4.6.5.1. Queue interface that are not covered in https://github.com/KhronosGroup/SYCL-CTS/blob/SYCL-2020/tests/queue/queue_constructors.cpp
Tests intend to cover not covered constructors from 4.6.5.1. Queue interface that are not covered in https://github.com/KhronosGroup/SYCL-CTS/blob/main/tests/queue/queue_constructors.cpp

=== Device coverage

Expand Down
4 changes: 2 additions & 2 deletions tests/invoke/parallel_for_simplifications.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
// parallel_for({N}, some_kernel)
// parallel_for({N1, N2}, some_kernel)
// parallel_for({N1, N2, N3}, some_kernel)
// Test plan:
https://github.com/KhronosGroup/SYCL-CTS/blob/SYCL-2020/test_plans/parallel_for_simplifications.asciidoc
//
// Test plan: /test_plans/parallel_for_simplifications.asciidoc
//
*******************************************************************************/

Expand Down
Loading