Home
last modified time | relevance | path

Searched refs:reduce_w (Results 1 – 14 of 14) sorted by relevance

/dports/graphics/vapoursynth-waifu2x-ncnn-vulkan/vapoursynth-waifu2x-ncnn-vulkan-r4/deps/ncnn/src/layer/
H A Dreduction.cpp70 if (reduce_w && reduce_h) in reduction_op()
102 if (reduce_w && !reduce_h) in reduction_op()
122 if (!reduce_w && reduce_h) in reduction_op()
147 if (reduce_w && reduce_h && reduce_c) in reduction_op()
178 if (reduce_w && reduce_h && !reduce_c) in reduction_op()
387 if (reduce_w && reduce_h) in reduction_op_keepdims()
419 if (reduce_w && !reduce_h) in reduction_op_keepdims()
440 if (!reduce_w && reduce_h) in reduction_op_keepdims()
840 bool reduce_w = false; in forward() local
846 reduce_w = true; in forward()
[all …]
/dports/graphics/waifu2x-ncnn-vulkan/waifu2x-ncnn-vulkan-20210521/src/ncnn/src/layer/
H A Dreduction.cpp70 if (reduce_w && reduce_h) in reduction_op()
102 if (reduce_w && !reduce_h) in reduction_op()
122 if (!reduce_w && reduce_h) in reduction_op()
147 if (reduce_w && reduce_h && reduce_c) in reduction_op()
178 if (reduce_w && reduce_h && !reduce_c) in reduction_op()
387 if (reduce_w && reduce_h) in reduction_op_keepdims()
419 if (reduce_w && !reduce_h) in reduction_op_keepdims()
440 if (!reduce_w && reduce_h) in reduction_op_keepdims()
840 bool reduce_w = false; in forward() local
846 reduce_w = true; in forward()
[all …]
/dports/benchmarks/vkpeak/vkpeak-20210430/ncnn/src/layer/
H A Dreduction.cpp70 if (reduce_w && reduce_h) in reduction_op()
102 if (reduce_w && !reduce_h) in reduction_op()
122 if (!reduce_w && reduce_h) in reduction_op()
147 if (reduce_w && reduce_h && reduce_c) in reduction_op()
178 if (reduce_w && reduce_h && !reduce_c) in reduction_op()
387 if (reduce_w && reduce_h) in reduction_op_keepdims()
419 if (reduce_w && !reduce_h) in reduction_op_keepdims()
440 if (!reduce_w && reduce_h) in reduction_op_keepdims()
840 bool reduce_w = false; in forward() local
846 reduce_w = true; in forward()
[all …]
/dports/misc/ncnn/ncnn-20211208/src/layer/
H A Dreduction.cpp70 if (reduce_w && reduce_h) in reduction_op()
102 if (reduce_w && !reduce_h) in reduction_op()
122 if (!reduce_w && reduce_h) in reduction_op()
147 if (reduce_w && reduce_h && reduce_c) in reduction_op()
178 if (reduce_w && reduce_h && !reduce_c) in reduction_op()
387 if (reduce_w && reduce_h) in reduction_op_keepdims()
419 if (reduce_w && !reduce_h) in reduction_op_keepdims()
440 if (!reduce_w && reduce_h) in reduction_op_keepdims()
840 bool reduce_w = false; in forward() local
846 reduce_w = true; in forward()
[all …]
/dports/graphics/realsr-ncnn-vulkan/realsr-ncnn-vulkan-20210210/src/ncnn/src/layer/
H A Dreduction.cpp70 if (reduce_w && reduce_h) in reduction_op()
102 if (reduce_w && !reduce_h) in reduction_op()
122 if (!reduce_w && reduce_h) in reduction_op()
147 if (reduce_w && reduce_h && reduce_c) in reduction_op()
178 if (reduce_w && reduce_h && !reduce_c) in reduction_op()
387 if (reduce_w && reduce_h) in reduction_op_keepdims()
419 if (reduce_w && !reduce_h) in reduction_op_keepdims()
440 if (!reduce_w && reduce_h) in reduction_op_keepdims()
840 bool reduce_w = false; in forward() local
846 reduce_w = true; in forward()
[all …]
/dports/multimedia/transcode/transcode-1.1.7/testsuite/
H A Dnewtest.pl1123 my ($csp, $frameref, $widthref, $heightref, $reduce_h, $reduce_w) = @_;
1128 for (my $x = 0; $x < int($$widthref/$reduce_w); $x++) {
1130 +($x*$reduce_w))*$Bpp, $Bpp);
1136 for (my $x = 0; $x < int($$widthref/2/$reduce_w); $x++) {
1139 +($x*$reduce_w)), 1);
1144 for (my $x = 0; $x < int($$widthref/2/$reduce_w); $x++) {
1147 +($x*$reduce_w)), 1);
1152 $$widthref = int($$widthref / $reduce_w);
/dports/multimedia/transcode/transcode-1.1.7/libtcvideo/
H A Dtcvideo.c678 int reduce_w, int reduce_h) in tcv_reduce() argument
684 if (reduce_w <= 0 || reduce_h <= 0) { in tcv_reduce()
686 " (%d,%d)!", reduce_w, reduce_h); in tcv_reduce()
690 if (reduce_w != 1) { in tcv_reduce()
693 int xstep = Bpp * reduce_w; in tcv_reduce()
695 for (x = 0; x < width / reduce_w; x++) { in tcv_reduce()
H A Dtcvideo.h77 int reduce_w, int reduce_h);
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/topi/arm_cpu/
H A Ddepthwise_conv2d.py261 reduce_w = te.reduce_axis((0, KW), name="reduce_w")
269 w * WSTR + reduce_w * dilation_w,
273 reduce_h, reduce_w, idxdiv(c, channel_multiplier), idxmod(c, channel_multiplier)
275 axis=[reduce_h, reduce_w],
/dports/multimedia/transcode/transcode-1.1.7/src/
H A Dtranscode.h241 int reduce_w; // Reduction factor for frame width member
H A Dvideo_trans.c343 preadjust_frame_size(&vtd, ptr->v_width / vob->reduce_w, in do_process_frame()
345 PROCESS_FRAME(tcv_reduce, &vtd, vob->reduce_w, vob->reduce_h); in do_process_frame()
H A Dcmdline_def.h1133 int n = sscanf(optarg, "%d,%d", &vob->reduce_h,&vob->reduce_w);
1135 vob->reduce_w = vob->reduce_h;
1136 if (n < 1 || vob->reduce_h <= 0 || vob->reduce_w <= 0) {
H A Dsocket.c207 SEND(reduce_w, "%d"); in dump_vob()
H A Dtranscode.c1034 vob->reduce_w = 1; in new_vob()
2059 vob->ex_v_width /= vob->reduce_w; in main()
2063 (vob->reduce_w*vob->ex_v_width); in main()