File: IBiF_Intrinsics_Impl.cl

package info (click to toggle)
intel-graphics-compiler2 2.24.13-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 113,504 kB
  • sloc: cpp: 812,849; lisp: 288,219; ansic: 102,423; python: 4,010; yacc: 2,588; lex: 1,666; pascal: 318; sh: 162; makefile: 38
file content (643 lines) | stat: -rw-r--r-- 10,581 bytes parent folder | download
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_fclamp(x,minval,maxval);
}

INLINE float OVERLOADABLE max( float x, float y )
{
    return __spirv_ocl_fmax_common(x, y);
}

INLINE float OVERLOADABLE min( float x, float y )
{
    return __spirv_ocl_fmin_common(x, y);
}

INLINE
uchar OVERLOADABLE abs( char x )
{
    return __spirv_ocl_s_abs( x );
}

INLINE
ushort OVERLOADABLE abs( short x )
{
    return __spirv_ocl_s_abs( x );
}

INLINE
uint OVERLOADABLE abs( int x )
{
    return __spirv_ocl_s_abs( x );
}

INLINE
char OVERLOADABLE add_sat( char x,
                           char y )
{
    return __spirv_ocl_s_add_sat( x, y );
}

INLINE
uchar OVERLOADABLE add_sat( uchar x,
                            uchar y )
{
    return __spirv_ocl_u_add_sat( x, y );
}

INLINE
short OVERLOADABLE add_sat( short x,
                            short y )
{
    return __spirv_ocl_s_add_sat( x, y );
}

INLINE
ushort OVERLOADABLE add_sat( ushort x,
                             ushort y )
{
    return __spirv_ocl_u_add_sat( x, y );
}

INLINE
int OVERLOADABLE add_sat( int x,
                          int y )
{
    return __spirv_ocl_s_add_sat( x, y );
}

INLINE
uint OVERLOADABLE add_sat( uint x,
                           uint y )
{
    return __spirv_ocl_u_add_sat( x, y );
}

INLINE
uchar OVERLOADABLE ctz( uchar x )
{
    return __spirv_ocl_ctz( x );
}

INLINE
ushort OVERLOADABLE ctz( ushort x )
{
    return __spirv_ocl_ctz( x );
}

INLINE
uint OVERLOADABLE ctz( uint x )
{
    return as_uint(__spirv_ocl_ctz( as_int(x) ) );
}

INLINE
int OVERLOADABLE mad24( int x,
                        int y,
                        int z )
{
    return __spirv_ocl_s_mad24( x, y, z );
}

INLINE
uint OVERLOADABLE mad24( uint x,
                         uint y,
                         uint z )
{
    return __spirv_ocl_u_mad24( x, y, z );
}

INLINE
char OVERLOADABLE mad_sat( char a,
                           char b,
                           char c )
{
    return __spirv_ocl_s_mad_sat( a, b, c );
}

INLINE
uchar OVERLOADABLE mad_sat( uchar a,
                            uchar b,
                            uchar c )
{
    return __spirv_ocl_u_mad_sat( a, b, c );
}

INLINE
short OVERLOADABLE mad_sat( short a,
                            short b,
                            short c )
{
    return __spirv_ocl_s_mad_sat( a, b, c );
}

INLINE
ushort OVERLOADABLE mad_sat( ushort a,
                             ushort b,
                             ushort c )
{
    return __spirv_ocl_u_mad_sat( a, b, c );
}

INLINE
int OVERLOADABLE mad_sat( int a,
                          int b,
                          int c )
{
    return __spirv_ocl_s_mad_sat( a, b, c );
}

INLINE
uint OVERLOADABLE mad_sat( uint a,
                           uint b,
                           uint c )
{
    return __spirv_ocl_u_mad_sat( 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_u_mul_hi( x, y );
}

INLINE
int OVERLOADABLE mul_hi( int x,
                         int y )
{
    return __spirv_ocl_s_mul_hi( 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_s_sub_sat( x, y );
}

INLINE
uchar OVERLOADABLE sub_sat( uchar x,
                            uchar y )
{
    return __spirv_ocl_u_sub_sat( x, y );
}

INLINE
short OVERLOADABLE sub_sat( short x,
                            short y )
{
    return __spirv_ocl_s_sub_sat( x, y );
}

INLINE
ushort OVERLOADABLE sub_sat( ushort x,
                             ushort y )
{
    return __spirv_ocl_u_sub_sat( x, y );
}

INLINE
int OVERLOADABLE sub_sat( int x,
                          int y )
{
    return __spirv_ocl_s_sub_sat( x, y );
}

INLINE
uint OVERLOADABLE sub_sat( uint x,
                           uint y )
{
    return __spirv_ocl_u_sub_sat( x, y );
}

INLINE
float OVERLOADABLE acos( float x )
{
    return __spirv_ocl_acos( x );
}

INLINE
float OVERLOADABLE asin( float value )
{
    return __spirv_ocl_asin( value );
}

INLINE
float OVERLOADABLE atan( float value )
{
    return __spirv_ocl_atan( value );
}

INLINE
float OVERLOADABLE ceil( float x )
{
    return __spirv_ocl_ceil( x );
}

INLINE
float OVERLOADABLE fabs( float x )
{
    return __spirv_ocl_fabs( x );
}

INLINE
float OVERLOADABLE floor( float x )
{
    return __spirv_ocl_floor( x );
}

INLINE
float OVERLOADABLE rint( float x )
{
    return __spirv_ocl_rint( x );
}

INLINE
float OVERLOADABLE trunc( float x )
{
    return __spirv_ocl_trunc( x );
}

INLINE
float OVERLOADABLE native_cos( float x )
{
    return __spirv_ocl_native_cos( x );
}

INLINE
float OVERLOADABLE native_exp2( float x )
{
    return __spirv_ocl_native_exp2( x );
}

INLINE
float OVERLOADABLE native_log2( float x )
{
    return __spirv_ocl_native_log2( x );
}

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

INLINE
float OVERLOADABLE native_recip( float x )
{
    return __spirv_ocl_native_recip( x );
}

INLINE
float OVERLOADABLE native_rsqrt( float x )
{
    return __spirv_ocl_native_rsqrt( x );
}

INLINE
float OVERLOADABLE native_sin( float x )
{
    return __spirv_ocl_native_sin( x );
}

INLINE
float OVERLOADABLE native_sqrt( float x )
{
    return __spirv_ocl_native_sqrt( x );
}

INLINE
float OVERLOADABLE native_tan( float x )
{
    return __spirv_ocl_native_tan( 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_acos( x );
}

INLINE
half OVERLOADABLE asin( half x )
{
    return __spirv_ocl_asin( x );
}

INLINE
half OVERLOADABLE atan( half x )
{
    return __spirv_ocl_atan( x );
}

INLINE
half OVERLOADABLE ceil( half x )
{
    return __spirv_ocl_ceil( x );
}

INLINE
half OVERLOADABLE fabs( half x )
{
    return __spirv_ocl_fabs( x );
}

INLINE
half OVERLOADABLE floor( half x )
{
    return __spirv_ocl_floor( x );
}

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

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

INLINE
half OVERLOADABLE rint( half x )
{
    return __spirv_ocl_rint( x );
}

INLINE
half OVERLOADABLE trunc( half x )
{
    return __spirv_ocl_trunc( x );
}

INLINE
half OVERLOADABLE native_cos( half x )
{
    return __spirv_ocl_native_cos( x );
}

INLINE
half OVERLOADABLE native_exp2( half x )
{
    return __spirv_ocl_native_exp2( x );
}

INLINE
half OVERLOADABLE native_log2( half x )
{
    return __spirv_ocl_native_log2( x );
}

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

INLINE
half OVERLOADABLE native_recip( half x )
{
    return __spirv_ocl_native_recip( x );
}

INLINE
half OVERLOADABLE native_rsqrt( half x )
{
    return __spirv_ocl_native_rsqrt( x );
}

INLINE
half OVERLOADABLE native_sin( half x )
{
    return __spirv_ocl_native_sin( x );
}

INLINE
half OVERLOADABLE native_sqrt( half x )
{
    return __spirv_ocl_native_sqrt( x );
}

INLINE
half OVERLOADABLE native_tan( half x )
{
    return __spirv_ocl_native_tan( 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_ceil( x );
}

INLINE
double OVERLOADABLE fabs( double x )
{
    return __spirv_ocl_fabs( x );
}

INLINE
double OVERLOADABLE floor( double x )
{
    return __spirv_ocl_floor( x );
}

INLINE
double OVERLOADABLE trunc( double x )
{
    return __spirv_ocl_trunc( 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_native_sqrt( x );
}

INLINE double OVERLOADABLE native_rsqrt( double x )
{
    return __spirv_ocl_native_rsqrt( x );
}

#endif // defined(cl_khr_fp64)