aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compute/skc/cl_20/extent.c
blob: 4c073e8b6977c8c26e5ee477e3d2854ac5349a20 (plain)
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
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can
 * be found in the LICENSE file.
 *
 */

#include <string.h>

// #include "extent.h"

//
// EXTENT TYPES
//
// Classification of operations on allocated GPU memory
//
// h  = host
// d  = device
//
// c  = append using non-atomic incremented count
// x  = append using atomically incremented index
// p  = allocated from pool of indices
// g  = gathered by pull kernel
// s  = size is available
//
// w1 = write once
// wN = write many
//
// r1 = read once
// rN = read many
//
// rw = read/write many
//
//                                host<>device memory model
//                       +--------------------+--------------------+
//     extent type       |      split         |      shared        |  examples
//  ---------------------+--------------------+--------------------+--------------------
//                       |                    |                    |
//   extent_atomic       |   device+mapped    |   device+mapped    |  atomically op'd device extent + read-only host snapshot
//                       |                    |                    |
//   extent_dxrw         |      device        |      device        |  ttsk_array, ttpk_array, ttck_array, *_offsets
//   extent_hcw1_dr1     |      mapped        |      mapped        |  command_queue, buffer
//   extent_hcrw         |       host         |       host         |  queue
//                       |                    |                    |
//  ---------------------+--------------------+--------------------+--------------------
//                       |                    |                    |
//   extent_hcw1_drN     |     memcpy'd       |      mapped        |  stack_transforms, stack_stroke_props
//   extent_hgw1_drN     |   scatter/gather   |      mapped        |  layer_props
//                       |                    |                    |
//   block_pool_dprw     |      device        |      device        |  ttsb_pool, ttpb_pool
//   block_pool_hp_drw   |      device        |      device        |  raster_pool
//                       |                    |                    |
//  ---------------------+--------------------+--------------------+--------------------
//                       |                    |                    |
//   block_pool_hp_drw   | block_pool_hp_drw  | block_pool_hp_drw  |  path_block_pool
//   staging buffer      | extent_hw_dr       |        --          |
//                       |                    |                    |
//

//
// HIGH-LEVEL EXTENTS ARE BUILT FROM SIMPLER STRUCTURES
//

//
// COUNTERS FOR POOLS -- TYPICALLY ATOMIC WHEN ON DEVICE
//

union skc_ring
{
  skc_uint2  u32v2;

  skc_uint   u32a2[2];
  
  struct {
    skc_uint reads;  // number of reads
    skc_uint writes; // number of writes
  };
};

//
// POOL OF INDICES TO BLOCKS
//

struct skc_pool_h
{
  skc_uint * indices;
};

struct skc_pool_d
{
  cl_mem   * indices; // FIXME -- READ POOL INDICES THROUGH CONSTANT CACHE?
};

//
// LOW-LEVEL EXTENTS -- SIZES ARE STORED ELSEWHERE
//

struct skc_extent_hrw
{
  void * hrw; // host pointer to host extent -- read/write
};

struct skc_extent_drw
{
  cl_mem drw; // device pointer to device extent -- read/write
};

struct skc_extent_hw_dr
{
  void * hw;  // host   pointer to shared extent -- write-only + write-combined
  cl_mem dr;  // device pointer to shared extent -- read-only
};

//
//
//

#if 0
static
void * 
skc_runtime_svm_alloc(struct skc_runtime_cl * const runtime_cl, size_t const size)
{
  return clSVMAlloc(runtime_cl->context,
                    CL_MEM_READ_WRITE | CL_MEM_SVM_FINE_GRAIN_BUFFER,
                    size,
                    0);
}

static
void * 
skc_runtime_svm_atomic_alloc(struct skc_runtime_cl * const runtime_cl, size_t const size) // WE DON'T NEED THIS HERE
{
  return clSVMAlloc(runtime_cl->context,
                    CL_MEM_READ_WRITE | CL_MEM_SVM_FINE_GRAIN_BUFFER | CL_MEM_SVM_ATOMICS,
                    size,
                    0);
}

static 
void
skc_runtime_svm_free(struct skc_runtime_cl * const runtime_cl, void * const buffer)
{
  clSVMFree(runtime_cl->context,buffer);
}
#endif

//
//
//

void 
skc_command_queue_fill_device(struct skc_command_queue * const cq,
                              cl_mem                           buffer, 
                              void               const * const pattern, 
                              size_t                     const pattern_size,
                              size_t                     const size);

void *
skc_command_queue_map_wi(struct skc_command_queue * const cq,
                         cl_mem                           buffer);

void
skc_command_queue_unmap(struct skc_command_queue * const cq, 
                        cl_mem                           buffer, 
                        void                     * const mapped);

void
skc_command_queue_read(struct skc_command_queue * const cq, 
                       cl_mem                           buffer, 
                       void                     * const ptr);

//
//
//

struct skc_extent_hrw *
skc_extent_hrw_alloc(struct skc_allocator * const allocator,
                     size_t                 const size)
{
  struct skc_extent_hrw * extent;
  
  extent      = skc_allocator_alloc_host(allocator,sizeof(*extent));
  extent->hrw = skc_allocator_alloc_host(allocator,size);

  return extent;
}



void
skc_extent_hrw_free(struct skc_allocator  * const allocator,
                    struct skc_extent_hrw * const extent)
{
  skc_allocator_free_host(allocator,extent->hrw);
  skc_allocator_free_host(allocator,extent);
}

//
//
//

struct skc_extent_drw *
skc_extent_drw_alloc(struct skc_allocator * const allocator,
                     size_t                 const size)
{
  struct skc_extent_drw * extent;

  extent      = skc_allocator_alloc_host  (allocator,sizeof(*extent));
  extent->drw = skc_allocator_alloc_device(allocator,size);

  return extent;
}

void
skc_extent_drw_free(struct skc_allocator  * const allocator,
                    struct skc_extent_drw * const extent)
{
  skc_allocator_free_device(allocator,extent->drw);
  skc_allocator_free_host  (allocator,extent);
}

void
skc_extent_drw_fill(struct skc_command_queue * const cq,
                    struct skc_extent_drw    * const extent,
                    void               const * const pattern,
                    size_t                     const pattern_size,
                    size_t                     const size)
{
  skc_command_queue_fill_device(cq,extent->drw,pattern,pattern_size,size);
}

//
// WRITE-COMBINED / WRITE-INVALIDATE
//

struct skc_extent_hw_dr *
skc_extent_hw_dr_alloc(struct skc_allocator * const allocator,
                       size_t                 const size)
{
  struct skc_extent_hw_dr * extent;

  extent     = skc_allocator_alloc_host(allocator,sizeof(*extent));
  extent->hw = NULL;
  extent->dr = skc_allocator_alloc_device_wc(allocator,size); // write-combined mem

  return extent;
}

void
skc_extent_hw_dr_free(struct skc_allocator    * const allocator,
                      struct skc_extent_hw_dr * const extent)
{
  skc_allocator_free_device(allocator,extent->dr);
  skc_allocator_free_host  (allocator,extent);
}

void
skc_extent_hw_dr_map(struct skc_command_queue * const cq,
                     struct skc_extent_hw_dr  * const extent)
{
  extent->hw = skc_command_queue_map_wi(cq,extent->dr);
}

void
skc_extent_hw_dr_unmap(struct skc_command_queue * const cq,
                       struct skc_extent_hw_dr  * const extent)
{
  skc_command_queue_unmap(cq,extent->dr,extent->hw);
}

void
skc_extent_hw_dr_memcpy(struct skc_extent_hw_dr * const extent,
                        void const * SKC_RESTRICT const src, 
                        size_t                    const offset, 
                        size_t                    const size)
{
  void * SKC_RESTRICT const dst = (char *)extent->hw + offset;

  memcpy(dst,src,size);
}
//
// SNAPSHOT
//

struct skc_extent_hr_drw
{
  void * hr;  // host   pointer to shared extent -- readable snapshot
  cl_mem drw; // device pointer to shared extent -- read/write
};

struct skc_extent_hr_drw *
skc_extent_hr_drw_alloc(struct skc_allocator * const allocator,
                        size_t                 const size)
{
  struct skc_extent_hr_drw * extent;

  extent      = skc_allocator_alloc_host  (allocator,sizeof(*extent));
  extent->hr  = skc_allocator_alloc_host  (allocator,size);
  extent->drw = skc_allocator_alloc_device(allocator,size);

  return extent;
}

void
skc_extent_hr_drw_free(struct skc_allocator     * const allocator,
                       struct skc_extent_hr_drw * const extent)
{
  skc_allocator_free_host  (allocator,extent->hr);
  skc_allocator_free_device(allocator,extent->drw);
  skc_allocator_free_host  (allocator,extent);
}

void
skc_extent_hr_drw_snap(struct skc_command_queue * const cq,
                       struct skc_extent_hr_drw * const extent,
                       size_t                     const size)
{
  skc_command_queue_read(cq,extent->drw,extent->hr);
}

void
skc_extent_hr_drw_fill(struct skc_command_queue * const cq,
                       struct skc_extent_hr_drw * const extent,
                       void               const * const pattern,
                       size_t                     const pattern_size,
                       size_t                     const size)
{
  skc_command_queue_fill_device(cq,extent->drw,pattern,pattern_size,size);
}

//
//
//

struct skc_extent_atomic
{
  struct skc_extent_hr_drw * hr_drw;
  size_t                     size; // typically a very small extent
};

//
//
//

struct skc_extent_atomic *
skc_extent_atomic_alloc(struct skc_allocator * const allocator,
                        size_t                 const size)
{
  struct skc_extent_atomic * extent;

  extent         = skc_allocator_alloc_host(allocator,sizeof(*extent));
  extent->hr_drw = skc_extent_hr_drw_alloc(allocator,size);
  extent->size   = size;

  return extent;
}

void
skc_extent_atomic_free(struct skc_allocator     * const allocator,
                       struct skc_extent_atomic * const extent)
{
  skc_extent_hr_drw_free (allocator,extent->hr_drw);
  skc_allocator_free_host(allocator,extent);
}

void
skc_extent_atomic_snap(struct skc_command_queue       * const cq,
                       struct skc_extent_atomic const * const extent)
{
  skc_extent_hr_drw_snap(cq,extent->hr_drw,extent->size);
}

void
skc_extent_atomic_zero(struct skc_command_queue       * const cq,
                       struct skc_extent_atomic const * const extent)
{
  skc_uint const zero = 0;

  skc_extent_hr_drw_fill(cq,extent->hr_drw,&zero,sizeof(zero),extent->size);
}

//
//
//

struct skc_extent_dxrw
{
  struct skc_extent_drw    * drw;

  size_t                     elem_size;
  skc_uint                   elem_count;

#if 0 // SKC_EXTENT_ATOMIC_IS_IGNORED
  struct skc_extent_atomic * atomic;
  size_t                     atomic_offset;
#endif
};

//
//
//

struct skc_extent_dxrw *
skc_extent_dxrw_alloc(struct skc_allocator     * const allocator,
                      size_t                     const elem_size,
                      skc_uint                   const elem_count,
                      struct skc_extent_atomic * const atomic,
                      size_t                     const atomic_offset)
{
  struct skc_extent_dxrw * extent;

  extent                = skc_allocator_alloc_host(allocator,sizeof(*extent));
  extent->drw           = skc_extent_drw_alloc(allocator,elem_size * elem_count);

  extent->elem_size     = elem_size;
  extent->elem_count    = elem_count;

  //
  // note that passing in the atomic and its member has no real use at
  // this point since the current programming style requires passing
  // in the atomic extent -- which may have multiple members -- to the
  // compute kernel
  //
#if 0 // SKC_EXTENT_ATOMIC_IS_IGNORED  
  extent->atomic        = atomic;
  extent->atomic_offset = atomic_offset;
#endif
  
  return extent;
}

void
skc_extent_dxrw_free(struct skc_allocator   * const allocator,
                     struct skc_extent_dxrw * const extent)
{
  skc_extent_drw_free    (allocator,extent->drw);
  skc_allocator_free_host(allocator,extent);
}

//
//
//

struct skc_extent_hcrw
{
  struct skc_extent_hrw * hrw;
  size_t                  elem_size;
  skc_uint                elem_count;
  skc_uint                counter;
};

//
//
//

struct skc_extent_hcrw *
skc_extent_hcrw_alloc(struct skc_allocator * const allocator,
                      size_t                 const elem_size,
                      skc_uint               const elem_count)
{
  struct skc_extent_hcrw * extent;

  extent             = skc_allocator_alloc_host(allocator,sizeof(*extent));
  extent->hrw        = skc_extent_hrw_alloc(allocator,elem_size * elem_count);
  extent->elem_size  = elem_size;
  extent->elem_count = elem_count;
  extent->counter    = 0;

  return extent;
}

void
skc_extent_hcrw_free(struct skc_allocator   * const allocator,
                     struct skc_extent_hcrw * const extent)
{
  skc_extent_hrw_free    (allocator,extent->hrw);
  skc_allocator_free_host(allocator,extent);
}

void
skc_extent_hcrw_reset(struct skc_extent_hcrw * const extent)
{
  extent->counter = 0;
}

skc_bool
skc_extent_hcrw_is_full(struct skc_extent_hcrw const * const extent)
{
  return (extent->counter == extent->elem_count);
}

//
//
//

struct skc_extent_hcw1_dr1
{
  struct skc_extent_hw_dr * hw_dr; // mapped memory
  size_t                    elem_size;
  skc_uint                  elem_count;
  skc_uint                  counter;
};

//
//
//

struct skc_extent_hcw1_dr1 *
skc_extent_hcw1_dr1_alloc(struct skc_allocator * const allocator,
                          skc_uint               const elem_size,
                          skc_uint               const elem_count)
{
  struct skc_extent_hcw1_dr1 * extent;

  extent             = skc_allocator_alloc_host(allocator,sizeof(*extent));
  extent->hw_dr      = skc_extent_hw_dr_alloc(allocator,elem_size * elem_count);
  extent->elem_size  = elem_size;
  extent->elem_count = elem_count;
  extent->counter    = 0;

  return extent;
}

void
skc_extent_hcw1_dr1_free(struct skc_allocator       * const allocator,
                         struct skc_extent_hcw1_dr1 * const extent)
{
  skc_extent_hw_dr_free  (allocator,extent->hw_dr);
  skc_allocator_free_host(allocator,extent);
}

void
skc_extent_hcw1_dr1_map(struct skc_command_queue   * const cq,
                        struct skc_extent_hcw1_dr1 * const extent)
{
  skc_extent_hw_dr_map(cq,extent->hw_dr);
}

void
skc_extent_hcw1_dr1_unmap(struct skc_command_queue   * const cq,
                          struct skc_extent_hcw1_dr1 * const extent)
{
  skc_extent_hw_dr_unmap(cq,extent->hw_dr);
}

void
skc_extent_hcw1_dr1_reset(struct skc_extent_hcw1_dr1 * const extent)
{
  extent->counter = 0;
}

skc_bool
skc_extent_hcw1_dr1_is_full(struct skc_extent_hcw1_dr1 const * const extent)
{
  return (extent->counter == extent->elem_count);
}

skc_uint
skc_extent_hcw1_dr1_rem(struct skc_extent_hcw1_dr1 * const extent)
{
  return extent->elem_count - extent->counter;
}

void
skc_extent_hcw1_dr1_append(struct skc_extent_hcw1_dr1 * const extent,
                           void  const * SKC_RESTRICT   const elem_ptr,
                           skc_uint                     const elem_count_clamped)
{
  skc_extent_hw_dr_memcpy(extent->hw_dr,
                          elem_ptr,
                          extent->elem_size * extent->counter,
                          extent->elem_size * elem_count_clamped);
}

//
//
//

struct skc_extent_hcw1_drN_unified
{
  struct skc_extent_hw_dr * hw_dr; // mapped memory
  size_t                    elem_size;
  skc_uint                  elem_count;
  skc_uint                  counter;
};

//
//
//

struct skc_extent_hcw1_drN_unified *
skc_extent_hcw1_drN_unified_alloc(struct skc_allocator * const allocator,
                                  skc_uint               const elem_size,
                                  skc_uint               const elem_count)
{
  struct skc_extent_hcw1_drN_unified * extent;

  extent             = skc_allocator_alloc_host(allocator,sizeof(*extent));
  extent->hw_dr      = skc_extent_hw_dr_alloc(allocator,elem_size * elem_count);
  extent->elem_size  = elem_size;
  extent->elem_count = elem_count;
  extent->counter    = 0;

  return extent;
}

void
skc_extent_hcw1_drN_unified_free(struct skc_allocator               * const allocator,
                                 struct skc_extent_hcw1_drN_unified * const extent)
{
  skc_extent_hw_dr_free  (allocator,extent->hw_dr);
  skc_allocator_free_host(allocator,extent);
}

void
skc_extent_hcw1_drN_unified_map(struct skc_command_queue           * const cq,
                                struct skc_extent_hcw1_drN_unified * const extent)
{
  skc_extent_hw_dr_map(cq,extent->hw_dr);
}


void
skc_extent_hcw1_drN_unified_unmap(struct skc_command_queue           * const cq,
                                  struct skc_extent_hcw1_drN_unified * const extent)
{
  skc_extent_hw_dr_unmap(cq,extent->hw_dr);
}

void
skc_extent_hcw1_drN_unified_reset(struct skc_extent_hcw1_drN_unified * const extent)
{
  extent->counter = 0;
}

skc_bool
skc_extent_hcw1_drN_unified_is_full(struct skc_extent_hcw1_drN_unified const * const extent)
{
  return (extent->counter == extent->elem_count);
}


skc_uint
skc_extent_hcw1_drN_unified_rem(struct skc_extent_hcw1_drN_unified * const extent)
{
  return extent->elem_count - extent->counter;
}


void
skc_extent_hcw1_drN_unified_append(struct skc_extent_hcw1_drN_unified * const extent,
                                   void            const * SKC_RESTRICT const elem_ptr,
                                   skc_uint                             const elem_count_clamped)
{
  skc_extent_hw_dr_memcpy(extent->hw_dr,
                          elem_ptr,
                          extent->elem_size * extent->counter,
                          extent->elem_size * elem_count_clamped);
}

//
//
//

struct skc_id_pool_hp *
skc_id_pool_hp_alloc(struct skc_allocator * const allocator,
                     skc_uint               const count)
{
  return NULL;
}

void
skc_id_pool_hp_free(struct skc_allocator  * const allocator,
                    struct skc_id_pool_hp * const extent)
{
  ;
}

void
skc_id_pool_hp_acquire(struct skc_id_pool_hp * const extent, 
                       skc_uint              * const id)
{
  ;
}

void
skc_id_pool_hp_release_1(struct skc_id_pool_hp * const extent, 
                         skc_uint                const id)
{
  ;
}

void
skc_id_pool_hp_release_n(struct skc_id_pool_hp * const extent, 
                         skc_uint        const * const id, 
                         skc_uint                const count)
{
  ;
}

//
//
//

struct skc_block_pool_dprw *
skc_block_pool_dprw_alloc(struct skc_allocator * const allocator,
                          union skc_ring       * const ring_d,
                          skc_uint               const block_size,
                          skc_uint               const block_count)
{
  return NULL;
}

void
skc_block_pool_dprw_free(struct skc_allocator       * const allocator,
                         struct skc_block_pool_dprw * const extent)
{
  ;
}

//
//
//

struct skc_extent_hgw1_drN *
skc_extent_hgw1_drN_alloc(struct skc_allocator * const allocator,
                          skc_uint               const elem_size,
                          skc_uint               const elem_count)
{
  return NULL;
}

void
skc_extent_hgw1_drN_free(struct skc_allocator       * const allocator,
                         struct skc_extent_hgw1_drN * const extent)
{
  ;
}

void
skc_extent_hgw1_drN_reset(struct skc_extent_hgw1_drN * const extent)
{
  ;
}

void
skc_extent_hgw1_drN_snap(struct skc_command_queue         * const cq,
                         struct skc_extent_hgw1_drN const * const extent)
{
  ;
}

//
//
//

#if 0

//
//
//

struct skc_block_pool_hp_drw *
skc_block_pool_hp_drw_alloc(struct skc_allocator * const allocator,
                            skc_uint               const elem_size,
                            skc_uint               const elem_count)
{
  return NULL;
}

void
skc_block_pool_hp_drw_free(struct skc_allocator         * const allocator,
                           struct skc_block_pool_hp_drw * const extent)
{
  ;
}

//
//
//

#endif

//
//
//