File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ void dpnp_partition_c(
139
139
}
140
140
}
141
141
142
- size_t * shape = reinterpret_cast <size_t *>(dpnp_memory_alloc_c (ndim * sizeof (size_t )));
142
+ size_t * shape = reinterpret_cast <size_t *>(dpnp_memory_alloc_c (ndim * sizeof (size_t )));
143
143
auto memcpy_event = DPNP_QUEUE.memcpy (shape, shape_, ndim * sizeof (size_t ));
144
144
145
145
memcpy_event.wait ();
@@ -172,7 +172,7 @@ void dpnp_partition_c(
172
172
173
173
event.wait ();
174
174
175
- dpnp_memory_free_c (shape);
175
+ dpnp_memory_free_c (shape);
176
176
}
177
177
178
178
template <typename _DataType>
Original file line number Diff line number Diff line change 39
39
#define BACKEND_PSTL_H
40
40
41
41
#pragma clang diagnostic push
42
- // #pragma clang diagnostic ignored "-Wunused-local-typedef"
42
+ #pragma clang diagnostic ignored "-Wunused-local-typedef"
43
43
#pragma clang diagnostic ignored "-Wunknown-pragmas"
44
44
#pragma clang diagnostic ignored "-Wsign-compare"
45
- // #pragma clang diagnostic ignored "-Wunused-variable"
45
+ #pragma clang diagnostic ignored "-Wunused-variable"
46
46
#pragma clang diagnostic ignored "-Wunused-parameter"
47
47
#pragma clang diagnostic ignored "-Wshadow"
48
48
Original file line number Diff line number Diff line change 27
27
#ifndef QUEUE_SYCL_H // Cython compatibility
28
28
#define QUEUE_SYCL_H
29
29
30
- #pragma clang diagnostic push
31
- #pragma clang diagnostic ignored "-Wpass-failed"
30
+ // #pragma clang diagnostic push
31
+ // #pragma clang diagnostic ignored "-Wpass-failed"
32
32
#include < CL/sycl.hpp>
33
- #pragma clang diagnostic pop
33
+ // #pragma clang diagnostic pop
34
34
35
35
#pragma clang diagnostic push
36
36
#pragma clang diagnostic ignored "-Wunused-parameter"
You can’t perform that action at this time.
0 commit comments