1 write to windowSize
Microsoft.ML.TorchSharp (1)
AutoFormerV2\AutoFormerV2Block.cs (1)
43
this.
windowSize
= windowSize;
12 references to windowSize
Microsoft.ML.TorchSharp (12)
AutoFormerV2\AutoFormerV2Block.cs (12)
78
int padB = (this.
windowSize
- (h % this.
windowSize
)) % this.
windowSize
;
79
int padR = (this.
windowSize
- (w % this.
windowSize
)) % this.
windowSize
;
106
var xWindows = WindowPartition(shiftedX, this.
windowSize
);
107
xWindows = xWindows.view(-1, this.
windowSize
* this.
windowSize
, c);
110
attnWindows = attnWindows.view(-1, this.
windowSize
, this.
windowSize
, c);
111
shiftedX = WindowsReverse(attnWindows, this.
windowSize
, pH, pW);