forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconv_backprop_depthwise_webgpu.ts
154 lines (129 loc) · 4.9 KB
/
conv_backprop_depthwise_webgpu.ts
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
/**
* @license
* Copyright 2023 Google LLC.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =============================================================================
*/
import {backend_util} from '@tensorflow/tfjs-core';
import {getMainHeaderString as main, WebGPUProgram} from './webgpu_program';
import {computeDispatch, flatDispatchLayout} from './webgpu_util';
export class DepthwiseConv2DDerFilterProgram implements WebGPUProgram {
outputShape: number[];
shaderKey: string;
dispatchLayout: {x: number[]};
dispatch: [number, number, number];
variableNames = ['x', 'dy'];
uniforms =
`strides : vec2<i32>, pads : vec2<i32>, filterDims : vec2<i32>, outHeight : i32,
outWidth : i32, inHeight : i32, inWidth : i32, batchSize : i32, channelMul : i32,`;
workgroupSize: [number, number, number] = [64, 1, 1];
size = true;
constructor(convInfo: backend_util.Conv2DInfo) {
this.outputShape = convInfo.filterShape;
this.dispatchLayout = flatDispatchLayout(this.outputShape);
this.dispatch = computeDispatch(
this.dispatchLayout, this.outputShape, this.workgroupSize);
this.shaderKey = `depthwise_conv2d_backprop_filter`;
}
getUserCode(): string {
const userCode = `
${main('index')} {
if (index < uniforms.size) {
let coords = getCoordsFromIndex(index);
let wR = coords[0];
let wC = coords[1];
let d1 = coords[2];
let dm = coords[3];
let d2 = d1 * uniforms.channelMul + dm;
var dotProd = 0.0;
for (var b = 0; b < uniforms.batchSize; b++) {
for (var yR = 0; yR < uniforms.outHeight; yR++) {
let xR = wR + yR * uniforms.strides[0] - uniforms.pads[0];
if (xR < 0 || xR >= uniforms.inHeight) {
continue;
}
for (var yC = 0; yC < uniforms.outWidth; yC++) {
let xC = wC + yC * uniforms.strides[1] - uniforms.pads[1];
if (xC < 0 || xC >= uniforms.inWidth) {
continue;
}
let dyValue = getDy(b, yR, yC, d2);
let xValue = getX(b, xR, xC, d1);
dotProd += xValue * dyValue;
}
}
}
setOutputAtIndex(index, dotProd);
}
}
`;
return userCode;
}
}
export class DepthwiseConv2DDerInputProgram implements WebGPUProgram {
outputShape: number[];
shaderKey: string;
dispatchLayout: {x: number[]};
dispatch: [number, number, number];
variableNames = ['dy', 'W'];
uniforms = `strides : vec2<i32>, pads : vec2<i32>, filterDims : vec2<i32>,
outHeight : i32, outWidth : i32, channelMul : i32,`;
workgroupSize: [number, number, number] = [64, 1, 1];
size = true;
constructor(convInfo: backend_util.Conv2DInfo) {
this.outputShape = convInfo.inShape;
this.dispatchLayout = flatDispatchLayout(this.outputShape);
this.dispatch = computeDispatch(
this.dispatchLayout, this.outputShape, this.workgroupSize);
this.shaderKey = `depthwise_conv2d_backprop_input`;
}
getUserCode(): string {
const userCode = `
${main('index')} {
if (index < uniforms.size) {
let coords = getCoordsFromIndex(index);
let batch = coords[0];
let d1 = coords[3];
let dyCorner = coords.yz - uniforms.pads;
let dyRCorner = dyCorner.x;
let dyCCorner = dyCorner.y;
var dotProd = 0.0;
for (var wR = 0; wR < uniforms.filterDims[0]; wR++) {
let dyR = f32(dyRCorner + wR) / f32(uniforms.strides[0]);
if (dyR < 0.0 || dyR >= f32(uniforms.outHeight) || fract(dyR) > 0.0) {
continue;
}
let idyR = i32(dyR);
let wRPerm = uniforms.filterDims[0] - 1 - wR;
for (var wC = 0; wC < uniforms.filterDims[1]; wC++) {
let dyC = f32(dyCCorner + wC) / f32(uniforms.strides[1]);
if (dyC < 0.0 || dyC >= f32(uniforms.outWidth) || fract(dyC) > 0.0) {
continue;
}
let idyC = i32(dyC);
let wCPerm = uniforms.filterDims[1] - 1 - wC;
for (var dm = 0; dm < uniforms.channelMul; dm++) {
let d2 = d1 * uniforms.channelMul + dm;
let xValue = getDy(batch, idyR, idyC, d2);
let wValue = getW(wRPerm, wCPerm, d1, dm);
dotProd += xValue * wValue;
}
}
}
setOutputAtIndex(index, dotProd);
}
}
`;
return userCode;
}
}