Skip to content

[SYCL][Unittest] Fix build in CompileTarget unittest #15090

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

Merged
merged 1 commit into from
Aug 15, 2024
Merged
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
8 changes: 6 additions & 2 deletions sycl/unittests/program_manager/CompileTarget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@

using namespace sycl;

namespace sycl::_V1::unittest {
namespace sycl {
inline namespace _V1 {
namespace unittest {
static inline UrImage
generateImageWithCompileTarget(std::string KernelName,
std::string CompileTarget) {
Expand Down Expand Up @@ -48,7 +50,9 @@ generateImageWithCompileTarget(std::string KernelName,

return Img;
}
} // namespace sycl::_V1::unittest
} // namespace unittest
} // namespace _V1
} // namespace sycl

class SingleTaskKernel;
class NDRangeKernel;
Expand Down
Loading