-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolonel-common.inc
More file actions
984 lines (771 loc) · 16.1 KB
/
colonel-common.inc
File metadata and controls
984 lines (771 loc) · 16.1 KB
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
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
void kaddvec(const double *a, const double *b, unsigned int n, double *c) {
CALL_KERNEL(kaddvec, n, a, b, n, c);
}
void ksubvec(const double *a, const double *b, unsigned int n, double *c) {
CALL_KERNEL(ksubvec, n, a, b, n, c);
}
void kmul(const double *a, const double b, unsigned int n, double *c) {
CALL_KERNEL(kmul, n, a, b, n, c);
}
double ksum(
const double *a, unsigned int n
) {
if (n == 0)
return 0;
double *sump = NULL;
unsigned int sumn = ((n + 127) / 128);
kmake(&sump, sumn);
CALL_KERNEL(ksum, sumn, a, n, sump);
double *sumv = new double[sumn];
dek(sump, sumn, sumv);
kfree(sump);
double s = 0;
for (int i = 0; i < sumn; ++i)
s += sumv[i];
delete[] sumv;
return s;
}
double ksumsq(
const double *a, unsigned int n
) {
if (n == 0)
return 0;
double *sumsqp = NULL;
unsigned int sumsqn = ((n + 127) / 128);
kmake(&sumsqp, sumsqn);
CALL_KERNEL(ksumsq, sumsqn, a, n, sumsqp);
double *sumsqv = new double[sumsqn];
dek(sumsqp, sumsqn, sumsqv);
kfree(sumsqp);
double s = 0;
for (int i = 0; i < sumsqn; ++i)
s += sumsqv[i];
delete[] sumsqv;
return s;
}
double kmaxabs(
const double *a, unsigned int n
) {
if (n == 0)
return 0;
double *maxp = NULL;
unsigned int maxn = ((n + 127) / 128);
kmake(&maxp, maxn);
CALL_KERNEL(kmaxabs, maxn, a, n, maxp);
double *maxv = new double[maxn];
dek(maxp, maxn, maxv);
double s = maxv[0];
for (int i = 1; i < maxn; ++i)
if (maxv[i] > s)
s = maxv[i];
kfree(maxp);
delete[] maxv;
return s;
}
void kspliceadd(
const double *x, int n, int xm, int xa, int xk,
double *y, int ym, int ya
) {
CALL_KERNEL(kspliceadd, n * xk, x, n, xm, xa, xk, y, ym, ya);
}
void ksplice(
const double *x, int n, int xm, int xa, int xk,
double *y, int ym, int ya
) {
CALL_KERNEL(ksplice, n * xk, x, n, xm, xa, xk, y, ym, ya);
}
void ksplice2(
const double *x, const double *z, double l, int n, int xm, int xa, int xk,
double *y, int ym, int ya
) {
CALL_KERNEL(ksplice2, n * xk, x, z, l, n, xm, xa, xk, y, ym, ya);
}
int size_norm(
int ic, int ow, int oh, int oc
) {
return (2 * 3 * (ow * oh * oc));
}
void synth_norm(
const double *in, int iw, int ih,
double *out,
int ic, int oc,
const double *wmv
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_norm, outn,
in, iw, ih, out, ic, oc, wmv
);
}
void learn_norm(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc,
double *wmv, double *dwv,
double nu, double b1, double b2, double eps, double clip, double rounds
) {
int outn = iw * ih * oc;
int wn = outn * 2;
int inn = iw * ih * ic;
CALL_KERNEL(learn_norm1, wn, fin, iw, ih, fout, ic, oc, dwv, nu, b1, b2);
CALL_KERNEL(learn_norm2, inn, fin, iw, ih, fout, ic, oc, wmv);
CALL_KERNEL(learn_norm3, wn, iw, ih, ic, oc, wmv, dwv, nu, b1, b2, eps, clip, rounds);
}
int size_bias(
int ic, int ow, int oh, int oc
) {
return (3 * (ow * oh * oc));
}
void synth_bias(
const double *in, int iw, int ih,
double *out,
int ic, int oc,
const double *wmv
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_bias, outn,
in, iw, ih, out, ic, oc, wmv
);
}
void learn_bias(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc,
double *wmv, double *dwv,
double nu, double b1, double b2, double eps, double clip, double rounds
) {
int outn = iw * ih * oc;
int wn = outn;
int inn = iw * ih * ic;
CALL_KERNEL(learn_bias1, wn, fin, iw, ih, fout, ic, oc, dwv, nu, b1, b2);
CALL_KERNEL(learn_bias2, inn, fin, iw, ih, fout, ic, oc, wmv);
CALL_KERNEL(learn_bias3, wn, iw, ih, ic, oc, wmv, dwv, nu, b1, b2, eps, clip, rounds);
}
int size_local(
int d, int ic, int ow, int oh, int oc
) {
int f = d * 2 + 1;
return (3 * (ow * oh * oc * (1 + ic * f * f)));
}
void synth_local(
const double *in, int iw, int ih,
double *out,
int d, int ic, int oc,
const double *wmv
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_local, outn,
in, iw, ih, out, d, ic, oc, wmv
);
}
void learn_local(
double *fin, int iw, int ih,
const double *fout,
int d, int ic, int oc,
double *wmv, double *dwv,
double nu, double b1, double b2, double eps, double clip, double rounds
) {
int f = d * 2 + 1;
int outn = iw * ih * oc;
int wn = (outn + ic * f * f * outn);
int inn = iw * ih * ic;
CALL_KERNEL(learn_local1, wn, fin, iw, ih, fout, d, ic, oc, dwv, nu, b1, b2);
CALL_KERNEL(learn_local2, inn, fin, iw, ih, fout, d, ic, oc, wmv);
CALL_KERNEL(learn_local3, wn, iw, ih, d, ic, oc, wmv, dwv, nu, b1, b2, eps, clip, rounds);
}
int size_conv(
int d, int ic, int oc, int dim
) {
int f = d * 2 + 1;
assert(f > 0);
assert(dim == 1 || dim == 2);
if (dim == 1) {
return (3 * (oc + ic * f * oc));
} else {
return (3 * (oc + ic * f * f * oc));
}
}
void synth_crop(
const double *in, int iw, int ih,
double *out,
int d, int ic,
int ix0, int iy0
) {
assert(d > 0);
int ow = d;
int oh = d;
int oc = ic;
int outn = ow * oh * oc;
CALL_KERNEL(synth_crop, outn,
in, iw, ih, out, d, ic, ix0, iy0
);
}
void synth_padd(
const double *in, int iw, int ih,
double *out,
int d, int ic
) {
int ow = iw + 2 * d;
int oh = ih + 2 * d;
int oc = ic;
int outn = ow * oh * oc;
CALL_KERNEL(synth_padd, outn,
in, iw, ih, out, d, ic
);
}
void synth_trim(
const double *in, int iw, int ih,
double *out,
int d, int ic
) {
int ow = iw - 2 * d;
int oh = ih - 2 * d;
int oc = ic;
int outn = ow * oh * oc;
assert(ow > 0 && oh > 0 && oc > 0);
CALL_KERNEL(synth_trim, outn,
in, iw, ih, out, d, ic
);
}
void synth_conv(
const double *in, int iw, int ih,
double *out,
int d, int ic, int oc,
bool relu, int freeze, int dim,
const double *wmv
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_conv, outn,
in, iw, ih, out, d, ic, oc, relu, freeze, dim, wmv
);
}
void learn_crop(
double *fin, int iw, int ih,
const double *fout,
int d, int ic
) {
assert(0);
}
void learn_padd(
double *fin, int iw, int ih,
const double *fout,
int d, int ic
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_padd, inn, fin, iw, ih, fout, d, ic);
}
void learn_trim(
double *fin, int iw, int ih,
const double *fout,
int d, int ic
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_trim, inn, fin, iw, ih, fout, d, ic);
}
void learn_conv(
double *fin, int iw, int ih,
const double *fout,
int d, int ic, int oc,
bool relu, int freeze, int dim,
double *wmv, double *dwv,
double nu, double b1, double b2, double eps, double clip, double rounds
) {
int f = d * 2 + 1;
int wn = (oc + ic * f * f * oc);
int inn = iw * ih * ic;
CALL_KERNEL(learn_conv1, wn, fin, iw, ih, fout, d, ic, oc, relu, freeze, dim, dwv, nu, b1, b2);
CALL_KERNEL(learn_conv2, inn, fin, iw, ih, fout, d, ic, oc, relu, freeze, dim, wmv);
CALL_KERNEL(learn_conv3, wn, d, ic, oc, dim, wmv, dwv, nu, b1, b2, eps, clip, rounds);
}
void synth_addgeo(
const double *in, int iw, int ih,
double *out,
int ic, int oc
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
assert(oc == ic + 4);
CALL_KERNEL(synth_addgeo, outn,
in, iw, ih, out, ic, oc
);
}
void learn_addgeo(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_addgeo, inn,
fin, iw, ih, fout, ic, oc
);
}
void synth_pad(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_pad, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void learn_pad(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_pad, inn,
fin, iw, ih, fout, ic, oc
);
}
void synth_zero(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_zero, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void learn_zero(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_zero, inn,
fin, iw, ih, fout, ic, oc
);
}
void synth_tlab(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
assert(ic == 3);
assert(oc == 3);
CALL_KERNEL(synth_tlab, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void synth_flab(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
assert(ic == 3);
assert(oc == 3);
CALL_KERNEL(synth_flab, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void synth_popp(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_popp, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void learn_popp(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_popp, inn,
fin, iw, ih, fout, ic, oc
);
}
void synth_iden(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_iden, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void learn_iden(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_iden, inn,
fin, iw, ih, fout, ic, oc
);
}
void synth_smax(
double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_smax, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void learn_smax(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_smax, inn,
fin, iw, ih, fout, ic, oc
);
}
void synth_mean(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_mean, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void learn_mean(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_mean, inn,
fin, iw, ih, fout, ic, oc
);
}
void synth_blur(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_blur, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void learn_blur(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
assert(0);
// int inn = iw * ih * ic;
// CALL_KERNEL(learn_blur, inn,
// fin, iw, ih, fout, ic, oc
// );
}
void synth_median(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_median, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void learn_median(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_median, inn,
fin, iw, ih, fout, ic, oc
);
}
void synth_diff(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
assert(oc * 2 == ic);
CALL_KERNEL(synth_diff, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void learn_diff(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
int inn = iw * ih * ic;
assert(oc * 2 == ic);
CALL_KERNEL(learn_diff, inn,
fin, iw, ih, fout, ic, oc
);
}
void synth_sum(
const double *in, int iw, int ih,
double *out,
int ic, int oc, const double *kbuf
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
CALL_KERNEL(synth_sum, outn,
in, iw, ih, out, ic, oc, kbuf
);
}
void learn_sum(
double *fin, int iw, int ih,
const double *fout,
int ic, int oc
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_sum, inn,
fin, iw, ih, fout, ic, oc
);
}
void synth_cent(
const double *in, int iw, int ih,
double *out,
int ic
) {
int ow = iw;
int oh = ih;
int oc = ic;
int outn = ow * oh * oc;
CALL_KERNEL(synth_cent, outn,
in, iw, ih, out, ic
);
}
void learn_cent(
double *fin, int iw, int ih,
const double *fout,
int ic
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_cent, inn,
fin, iw, ih, fout, ic
);
}
void synth_sigm(
const double *in, int iw, int ih,
double *out,
int ic
) {
int ow = iw;
int oh = ih;
int oc = ic;
int outn = ow * oh * oc;
CALL_KERNEL(synth_sigm, outn,
in, iw, ih, out, ic
);
}
void learn_sigm(
double *fin, int iw, int ih,
const double *fout,
int ic
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_sigm, inn,
fin, iw, ih, fout, ic
);
}
void synth_nerf(
const double *in, int iw, int ih,
double *out,
int ic
) {
int ow = iw;
int oh = ih;
int oc = ic;
int outn = ow * oh * oc;
CALL_KERNEL(synth_nerf, outn,
in, iw, ih, out, ic
);
}
void learn_nerf(
double *fin, int iw, int ih,
const double *fout,
int ic
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_nerf, inn,
fin, iw, ih, fout, ic
);
}
void synth_inrf(
const double *in, int iw, int ih,
double *out,
int ic
) {
int ow = iw;
int oh = ih;
int oc = ic;
int outn = ow * oh * oc;
CALL_KERNEL(synth_inrf, outn,
in, iw, ih, out, ic
);
}
void learn_inrf(
double *fin, int iw, int ih,
const double *fout,
int ic
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_inrf, inn,
fin, iw, ih, fout, ic
);
}
void synth_clamp(
const double *in, int iw, int ih,
double *out,
int ic
) {
int ow = iw;
int oh = ih;
int oc = ic;
int outn = ow * oh * oc;
CALL_KERNEL(synth_clamp, outn,
in, iw, ih, out, ic
);
}
void learn_clamp(
double *fin, int iw, int ih,
const double *fout,
int ic
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_clamp, inn,
fin, iw, ih, fout, ic
);
}
void synth_relu(
const double *in, int iw, int ih,
double *out,
int ic
) {
int ow = iw;
int oh = ih;
int oc = ic;
int outn = ow * oh * oc;
CALL_KERNEL(synth_relu, outn,
in, iw, ih, out, ic
);
}
void learn_relu(
double *fin, int iw, int ih,
const double *fout,
int ic
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_relu, inn,
fin, iw, ih, fout, ic
);
}
void synth_abs(
const double *in, int iw, int ih,
double *out,
int ic
) {
int ow = iw;
int oh = ih;
int oc = ic;
int outn = ow * oh * oc;
CALL_KERNEL(synth_abs, outn,
in, iw, ih, out, ic
);
}
void learn_abs(
double *fin, int iw, int ih,
const double *fout,
int ic
) {
int inn = iw * ih * ic;
CALL_KERNEL(learn_abs, inn,
fin, iw, ih, fout, ic
);
}
void synth_upscale(
const double *in, int iw, int ih,
double *out,
int s, int ic, int oc, int dim
) {
assert(dim == 1 || dim == 2);
if (dim == 1) {
assert((oc << s) == ic);
} else {
assert((oc << (s + s)) == ic);
}
int ow = (iw << s);
int oh = (ih << s);
int outn = ow * oh * oc;
assert(dim == 1 || dim == 2);
CALL_KERNEL(synth_upscale, outn,
in, iw, ih, out, s, ic, oc, dim
);
}
void learn_upscale(
double *fin, int iw, int ih,
const double *fout,
int s, int ic, int oc, int dim
) {
int inn = iw * ih * ic;
assert(dim == 1 || dim == 2);
CALL_KERNEL(learn_upscale, inn, fin, iw, ih, fout, s, ic, oc, dim);
}
void synth_downscale(
const double *in, int iw, int ih,
double *out,
int s, int ic, int oc, int dim
) {
int ow = iw;
int oh = ih;
int outn = ow * oh * oc;
assert(dim == 1 || dim == 2);
CALL_KERNEL(synth_downscale, outn,
in, iw, ih, out, s, ic, oc, dim
);
}
void learn_downscale(
double *fin, int iw, int ih,
const double *fout,
int s, int ic, int oc, int dim
) {
int inn = iw * ih * ic;
assert(dim == 1 || dim == 2);
CALL_KERNEL(learn_downscale, inn, fin, iw, ih, fout, s, ic, oc, dim);
}