We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f000676 commit 6710d1aCopy full SHA for 6710d1a
sycl/test/basic_tests/sampler/sampler.cpp
@@ -37,7 +37,7 @@ int main() {
37
B.get_coordinate_normalization_mode() &&
38
A.get_filtering_mode() == B.get_filtering_mode());
39
40
- // Check assigment operator
+ // Check assignment operator
41
if (!Queue.is_host()) {
42
// OpenCL sampler
43
cl_int Err = CL_SUCCESS;
@@ -75,7 +75,7 @@ int main() {
75
sycl::hash_class<cl::sycl::sampler> Hasher;
76
assert(Hasher(A) != Hasher(B));
77
78
- // Check move assigment
+ // Check move assignment
79
sycl::sampler C(B);
80
A = std::move(B);
81
assert(Hasher(C) == Hasher(A));
0 commit comments