• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright (c) 2021 The Khronos Group Inc.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //    http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16 #ifndef SUBGROUPKERNELSOURCES_H
17 #define SUBGROUPKERNELSOURCES_H
18 #include "subhelpers.h"
19 
20 
21 extern const char* bcast_source;
22 extern const char* redadd_source;
23 extern const char* redmax_source;
24 extern const char* redmin_source;
25 extern const char* scinadd_source;
26 extern const char* scinmax_source;
27 extern const char* scinmin_source;
28 extern const char* scexadd_source;
29 extern const char* scexmax_source;
30 extern const char* scexmin_source;
31 
32 #endif
33