File: IBiF_Intrinsics_Impl.cl

package info (click to toggle)
intel-graphics-compiler 1.0.12504.6-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 83,912 kB
  • sloc: cpp: 910,147; lisp: 202,655; ansic: 15,197; python: 4,025; yacc: 2,241; lex: 1,570; pascal: 244; sh: 104; makefile: 25
file content (643 lines) | stat: -rw-r--r-- 11,820 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
/*========================== begin_copyright_notice ============================

Copyright (C) 2017-2021 Intel Corporation

SPDX-License-Identifier: MIT

============================= end_copyright_notice ===========================*/

#include "spirv.h"

INLINE float OVERLOADABLE clamp( float x, float minval, float maxval )
{
    return SPIRV_OCL_BUILTIN(fclamp, _f32_f32_f32, )(x,minval,maxval);
}

INLINE float OVERLOADABLE max( float x, float y )
{
    return SPIRV_OCL_BUILTIN(fmax_common, _f32_f32, )(x, y);
}

INLINE float OVERLOADABLE min( float x, float y )
{
    return SPIRV_OCL_BUILTIN(fmin_common, _f32_f32, )(x, y);
}

INLINE
uchar OVERLOADABLE abs( char x )
{
    return SPIRV_OCL_BUILTIN(s_abs, _i8, )( x );
}

INLINE
ushort OVERLOADABLE abs( short x )
{
    return SPIRV_OCL_BUILTIN(s_abs, _i16, )( x );
}

INLINE
uint OVERLOADABLE abs( int x )
{
    return SPIRV_OCL_BUILTIN(s_abs, _i32, )( x );
}

INLINE
char OVERLOADABLE add_sat( char x,
                           char y )
{
    return SPIRV_OCL_BUILTIN(s_add_sat, _i8_i8, )( x, y );
}

INLINE
uchar OVERLOADABLE add_sat( uchar x,
                            uchar y )
{
    return SPIRV_OCL_BUILTIN(u_add_sat, _i8_i8, )( x, y );
}

INLINE
short OVERLOADABLE add_sat( short x,
                            short y )
{
    return SPIRV_OCL_BUILTIN(s_add_sat, _i16_i16, )( x, y );
}

INLINE
ushort OVERLOADABLE add_sat( ushort x,
                             ushort y )
{
    return SPIRV_OCL_BUILTIN(u_add_sat, _i16_i16, )( x, y );
}

INLINE
int OVERLOADABLE add_sat( int x,
                          int y )
{
    return SPIRV_OCL_BUILTIN(s_add_sat, _i32_i32, )( x, y );
}

INLINE
uint OVERLOADABLE add_sat( uint x,
                           uint y )
{
    return SPIRV_OCL_BUILTIN(u_add_sat, _i32_i32, )( x, y );
}

INLINE
uchar OVERLOADABLE ctz( uchar x )
{
    return SPIRV_OCL_BUILTIN(ctz, _i8, )( x );
}

INLINE
ushort OVERLOADABLE ctz( ushort x )
{
    return SPIRV_OCL_BUILTIN(ctz, _i16, )( x );
}

INLINE
uint OVERLOADABLE ctz( uint x )
{
    return as_uint(SPIRV_OCL_BUILTIN(ctz, _i32, )( as_int(x) ) );
}

INLINE
int OVERLOADABLE mad24( int x,
                        int y,
                        int z )
{
    return SPIRV_OCL_BUILTIN(s_mad24, _i32_i32_i32, )( x, y, z );
}

INLINE
uint OVERLOADABLE mad24( uint x,
                         uint y,
                         uint z )
{
    return SPIRV_OCL_BUILTIN(u_mad24, _i32_i32_i32, )( x, y, z );
}

INLINE
char OVERLOADABLE mad_sat( char a,
                           char b,
                           char c )
{
    return SPIRV_OCL_BUILTIN(s_mad_sat, _i8_i8_i8, )( a, b, c );
}

INLINE
uchar OVERLOADABLE mad_sat( uchar a,
                            uchar b,
                            uchar c )
{
    return SPIRV_OCL_BUILTIN(u_mad_sat, _i8_i8_i8, )( a, b, c );
}

INLINE
short OVERLOADABLE mad_sat( short a,
                            short b,
                            short c )
{
    return SPIRV_OCL_BUILTIN(s_mad_sat, _i16_i16_i16, )( a, b, c );
}

INLINE
ushort OVERLOADABLE mad_sat( ushort a,
                             ushort b,
                             ushort c )
{
    return SPIRV_OCL_BUILTIN(u_mad_sat, _i16_i16_i16, )( a, b, c );
}

INLINE
int OVERLOADABLE mad_sat( int a,
                          int b,
                          int c )
{
    return SPIRV_OCL_BUILTIN(s_mad_sat, _i32_i32_i32, )( a, b, c );
}

INLINE
uint OVERLOADABLE mad_sat( uint a,
                           uint b,
                           uint c )
{
    return SPIRV_OCL_BUILTIN(u_mad_sat, _i32_i32_i32, )( a, b, c );
}

INLINE
char OVERLOADABLE max( char x, char y )
{
    return (x >= y) ? x : y;
}

INLINE
uchar OVERLOADABLE max( uchar x, uchar y )
{
    return (x >= y) ? x : y;
}

INLINE
short OVERLOADABLE max( short x, short y )
{
    return (x >= y) ? x : y;
}

INLINE
ushort OVERLOADABLE max( ushort x, ushort y )
{
    return (x >= y) ? x : y;
}

INLINE
int OVERLOADABLE max( int x, int y )
{
    return (x >= y) ? x : y;
}

INLINE
uint OVERLOADABLE max( uint x, uint y )
{
    return (x >= y) ? x : y;
}

INLINE
long OVERLOADABLE max( long x, long y )
{
    return (x >= y) ? x : y;
}

INLINE
ulong OVERLOADABLE max( ulong x, ulong y )
{
    return (x >= y) ? x : y;
}

INLINE
char OVERLOADABLE min( char x, char y )
{
    return (x <= y) ? x : y;
}

INLINE
uchar OVERLOADABLE min( uchar x, uchar y )
{
    return (x <= y) ? x : y;
}

INLINE
short OVERLOADABLE min( short x, short y )
{
    return (x <= y) ? x : y;
}

INLINE
ushort OVERLOADABLE min( ushort x, ushort y )
{
    return (x <= y) ? x : y;
}

INLINE
int OVERLOADABLE min( int x, int y )
{
    return (x <= y) ? x : y;
}

INLINE
uint OVERLOADABLE min( uint x, uint y )
{
    return (x <= y) ? x : y;
}

INLINE
long OVERLOADABLE min( long x, long y )
{
    return (x < y) ? x : y;
}

INLINE
ulong OVERLOADABLE min( ulong x, ulong y )
{
    return (x < y) ? x : y;
}

// !!! TODO: Why do we need this function?
INLINE
int OVERLOADABLE min( ulong x, int y )
{
    return ((int)x <= y) ? (int)x : y;
}

// !!! TODO: Why do we need this function?
INLINE
uint OVERLOADABLE min( ulong x, uint y )
{
    return ((uint)x <= y) ? (uint)x : y;
}

INLINE
uint OVERLOADABLE mul_hi( uint x,
                          uint y )
{
    return SPIRV_OCL_BUILTIN(u_mul_hi, _i32_i32, )( x, y );
}

INLINE
int OVERLOADABLE mul_hi( int x,
                         int y )
{
    return SPIRV_OCL_BUILTIN(s_mul_hi, _i32_i32, )( x, y );
}

INLINE
uchar OVERLOADABLE popcount( uchar x )
{
    return __builtin_IB_popcount_1u8(x);
}

INLINE
ushort OVERLOADABLE popcount( ushort x )
{
    return __builtin_IB_popcount_1u16(x);
}

INLINE
uint OVERLOADABLE popcount( uint x )
{
    return __builtin_IB_popcount_1u32(x);
}

INLINE
char OVERLOADABLE sub_sat( char x,
                           char y )
{
    return SPIRV_OCL_BUILTIN(s_sub_sat, _i8_i8, )( x, y );
}

INLINE
uchar OVERLOADABLE sub_sat( uchar x,
                            uchar y )
{
    return SPIRV_OCL_BUILTIN(u_sub_sat, _i8_i8, )( x, y );
}

INLINE
short OVERLOADABLE sub_sat( short x,
                            short y )
{
    return SPIRV_OCL_BUILTIN(s_sub_sat, _i16_i16, )( x, y );
}

INLINE
ushort OVERLOADABLE sub_sat( ushort x,
                             ushort y )
{
    return SPIRV_OCL_BUILTIN(u_sub_sat, _i16_i16, )( x, y );
}

INLINE
int OVERLOADABLE sub_sat( int x,
                          int y )
{
    return SPIRV_OCL_BUILTIN(s_sub_sat, _i32_i32, )( x, y );
}

INLINE
uint OVERLOADABLE sub_sat( uint x,
                           uint y )
{
    return SPIRV_OCL_BUILTIN(u_sub_sat, _i32_i32, )( x, y );
}

INLINE
float OVERLOADABLE acos( float x )
{
    return SPIRV_OCL_BUILTIN(acos, _f32, )( x );
}

INLINE
float OVERLOADABLE asin( float value )
{
    return SPIRV_OCL_BUILTIN(asin, _f32, )( value );
}

INLINE
float OVERLOADABLE atan( float value )
{
    return SPIRV_OCL_BUILTIN(atan, _f32, )( value );
}

INLINE
float OVERLOADABLE ceil( float x )
{
    return SPIRV_OCL_BUILTIN(ceil, _f32, )( x );
}

INLINE
float OVERLOADABLE fabs( float x )
{
    return SPIRV_OCL_BUILTIN(fabs, _f32, )( x );
}

INLINE
float OVERLOADABLE floor( float x )
{
    return SPIRV_OCL_BUILTIN(floor, _f32, )( x );
}

INLINE
float OVERLOADABLE rint( float x )
{
    return SPIRV_OCL_BUILTIN(rint, _f32, )( x );
}

INLINE
float OVERLOADABLE trunc( float x )
{
    return SPIRV_OCL_BUILTIN(trunc, _f32, )( x );
}

INLINE
float OVERLOADABLE native_cos( float x )
{
    return SPIRV_OCL_BUILTIN(native_cos, _f32, )( x );
}

INLINE
float OVERLOADABLE native_exp2( float x )
{
    return SPIRV_OCL_BUILTIN(native_exp2, _f32, )( x );
}

INLINE
float OVERLOADABLE native_log2( float x )
{
    return SPIRV_OCL_BUILTIN(native_log2, _f32, )( x );
}

INLINE
float OVERLOADABLE native_powr( float x,
                                float y )
{
    return SPIRV_OCL_BUILTIN(native_powr, _f32_f32, )( x, y );
}

INLINE
float OVERLOADABLE native_recip( float x )
{
    return SPIRV_OCL_BUILTIN(native_recip, _f32, )( x );
}

INLINE
float OVERLOADABLE native_rsqrt( float x )
{
    return SPIRV_OCL_BUILTIN(native_rsqrt, _f32, )( x );
}

INLINE
float OVERLOADABLE native_sin( float x )
{
    return SPIRV_OCL_BUILTIN(native_sin, _f32, )( x );
}

INLINE
float OVERLOADABLE native_sqrt( float x )
{
    return SPIRV_OCL_BUILTIN(native_sqrt, _f32, )( x );
}

INLINE
float OVERLOADABLE native_tan( float x )
{
    return SPIRV_OCL_BUILTIN(native_tan, _f32, )( x );
}

#ifdef cl_khr_fp16
INLINE half OVERLOADABLE clamp( half x, half minval, half maxval )
{
    return fmin( fmax( x, minval), maxval);
}

INLINE half OVERLOADABLE max( half x, half y )
{
    return __builtin_IB_HMAX(x, y);
}

INLINE half OVERLOADABLE min( half x, half y )
{
    return __builtin_IB_HMIN(x, y);
}

INLINE
half OVERLOADABLE acos( half x )
{
    return SPIRV_OCL_BUILTIN(acos, _f16, )( x );
}

INLINE
half OVERLOADABLE asin( half x )
{
    return SPIRV_OCL_BUILTIN(asin, _f16, )( x );
}

INLINE
half OVERLOADABLE atan( half x )
{
    return SPIRV_OCL_BUILTIN(atan, _f16, )( x );
}

INLINE
half OVERLOADABLE ceil( half x )
{
    return SPIRV_OCL_BUILTIN(ceil, _f16, )( x );
}

INLINE
half OVERLOADABLE fabs( half x )
{
    return SPIRV_OCL_BUILTIN(fabs, _f16, )( x );
}

INLINE
half OVERLOADABLE floor( half x )
{
    return SPIRV_OCL_BUILTIN(floor, _f16, )( x );
}

INLINE
half OVERLOADABLE fma( half a,
                       half b,
                       half c )
{
    return SPIRV_OCL_BUILTIN(fma, _f16_f16_f16, )( a, b, c );
}

INLINE
half OVERLOADABLE mad( half a,
                       half b,
                       half c )
{
    return SPIRV_OCL_BUILTIN(mad, _f16_f16_f16, )( a, b, c );
}

INLINE
half OVERLOADABLE rint( half x )
{
    return SPIRV_OCL_BUILTIN(rint, _f16, )( x );
}

INLINE
half OVERLOADABLE trunc( half x )
{
    return SPIRV_OCL_BUILTIN(trunc, _f16, )( x );
}

INLINE
half OVERLOADABLE native_cos( half x )
{
    return SPIRV_OCL_BUILTIN(native_cos, _f16, )( x );
}

INLINE
half OVERLOADABLE native_exp2( half x )
{
    return SPIRV_OCL_BUILTIN(native_exp2, _f16, )( x );
}

INLINE
half OVERLOADABLE native_log2( half x )
{
    return SPIRV_OCL_BUILTIN(native_log2, _f16, )( x );
}

INLINE
half OVERLOADABLE native_powr( half x,
                               half y )
{
    return SPIRV_OCL_BUILTIN(native_powr, _f16_f16, )( x, y );
}

INLINE
half OVERLOADABLE native_recip( half x )
{
    return SPIRV_OCL_BUILTIN(native_recip, _f16, )( x );
}

INLINE
half OVERLOADABLE native_rsqrt( half x )
{
    return SPIRV_OCL_BUILTIN(native_rsqrt, _f16, )( x );
}

INLINE
half OVERLOADABLE native_sin( half x )
{
    return SPIRV_OCL_BUILTIN(native_sin, _f16, )( x );
}

INLINE
half OVERLOADABLE native_sqrt( half x )
{
    return SPIRV_OCL_BUILTIN(native_sqrt, _f16, )( x );
}

INLINE
half OVERLOADABLE native_tan( half x )
{
    return SPIRV_OCL_BUILTIN(native_tan, _f16, )( x );
}

#endif

#if defined(cl_khr_fp64)

INLINE double OVERLOADABLE clamp( double x, double minval, double maxval )
{
    return fmin( fmax( x, minval), maxval);
}

INLINE
double OVERLOADABLE ceil( double x )
{
    return SPIRV_OCL_BUILTIN(ceil, _f64, )( x );
}

INLINE
double OVERLOADABLE fabs( double x )
{
    return SPIRV_OCL_BUILTIN(fabs, _f64, )( x );
}

INLINE
double OVERLOADABLE floor( double x )
{
    return SPIRV_OCL_BUILTIN(floor, _f64, )( x );
}

INLINE
double OVERLOADABLE trunc( double x )
{
    return SPIRV_OCL_BUILTIN(trunc, _f64, )( x );
}

INLINE double OVERLOADABLE max( double x, double y )
{
    return (x >= y) ? x : y;
}

INLINE double OVERLOADABLE min( double x, double y )
{
    return __builtin_IB_dmin(x, y);
}

INLINE double OVERLOADABLE native_sqrt( double x )
{
    return SPIRV_OCL_BUILTIN(native_sqrt, _f64, )( x );
}

INLINE double OVERLOADABLE native_rsqrt( double x )
{
    return SPIRV_OCL_BUILTIN(native_rsqrt, _f64, )( x );
}

#endif // defined(cl_khr_fp64)