Home
last modified time | relevance | path

Searched refs:weights0 (Results 1 – 21 of 21) sorted by relevance

/dports/math/gecode/gecode-0916a1a/gecode/set/int/
H A Dweights.hpp67 SharedArray<int>& weights0,
72 SharedArray<int>& weights0,
111 SharedArray<int>& weights0, in OverweightValues() argument
115 weights(weights0), in OverweightValues()
124 SharedArray<int>& weights0, in init() argument
127 elements = elements0; weights = weights0; in init()
148 const SharedArray<int>& weights0, in Weights() argument
150 : Propagator(home), elements(elements0), weights(weights0), in Weights()
/dports/graphics/photoflow/PhotoFlow-8472024f/src/operations/
H A Dgaussian_conv_sii.cc56 static const float weights0[SII_MAX_K - SII_MIN_K + 1][SII_MAX_K] = in sii_precomp() local
71 sum += weights0[i][k] * (2 * c->radii[k] + 1); in sii_precomp()
75 c->weights[k] = (double)(weights0[i][k] / sum); in sii_precomp()
/dports/misc/mnn/MNN-1.2.0/source/backend/opencl/execution/cl/
H A Dconv_2d.cl11 out##i = mad(in##i.x, weights0, out##i); \
17 out##i = mad(in_sm##i[local_idx].x, weights0, out##i); \
76 FLOAT4 weights0;
108 weights0 = vload4(offset, (__global FLOAT *)kernel_ptr);
114 out0.x += dot(weights0, in0);
119 out1.x += dot(weights0, in1);
124 out2.x += dot(weights0, in2);
129 out3.x += dot(weights0, in3);
195 FLOAT4 weights0;
319 FLOAT4 weights0;
[all …]
H A Ddeconv_2d.cl65 FLOAT4 weights0, weights1, weights2, weights3;
79weights0 = vload4(kernel_x_0*(out_channel_blocks*kernel_shape.x*kernel_shape.y)+kernel_y, weights);
88 out0 = mad(in0.x, weights0, out0);
101 weights0 = RI_F(weights, SAMPLER, (int2)(kernel_x_0, kernel_y));
112 out0 = mad(in0.x, weights0, out0);
H A Dconv_2d_buf.cl448 out0.x += dot(weights0, in0);
453 out1.x += dot(weights0, in1);
458 out2.x += dot(weights0, in2);
463 out3.x += dot(weights0, in3);
565 out0.x += dot(weights0, in0);
570 out1.x += dot(weights0, in1);
575 out2.x += dot(weights0, in2);
580 out3.x += dot(weights0, in3);
723 out0.x += dot(weights0, in0);
728 out1.x += dot(weights0, in1);
[all …]
H A Ddepthwise_conv2d_buf.cl15 outValue##i = mad(inValue##i.x, weights0, outValue##i); \
28 x = mad(inValue0, weights0, x); \
31 y = mad(inValue1, weights0, y); \
765 outValue0 = mad(inValue0, weights0, outValue0);
766 outValue1 = mad(inValue1, weights0, outValue1);
788 weights0 = vload4(0, filter+(filter_idx*c_blocks+c_idx)*4);
789 outValue0 = mad(inValue0, weights0, outValue0);
790 outValue1 = mad(inValue1, weights0, outValue1);
811 weights0 = vload4(0, filter+(filter_idx*c_blocks+c_idx)*4);
812 outValue0 = mad(inValue0, weights0, outValue0);
[all …]
H A Ddepthwise_deconv2d.cl8 out##i = mad(in##i.x, weights0, out##i); \
H A Ddepthwise_conv2d.cl11 outValue##i = mad(inValue##i.x, weights0, outValue##i); \
/dports/audio/praat/praat-6.2.03/dwsys/
H A DNMF.cpp245 autoMAT weights0 = zero_MAT (my numberOfFeatures, my numberOfColumns); in NMF_improveFactorization_mu() local
256 weights0.all() <<= my weights.all(); in NMF_improveFactorization_mu()
279 weights0.all() <<= my weights.all(); in NMF_improveFactorization_mu()
282 mul_MAT_out (productFtFW.get(), productFtF.get(), weights0.get()); in NMF_improveFactorization_mu()
283 update (my weights.get(), weights0.get(), productFtD.get(), productFtFW.get(), eps, maximum); in NMF_improveFactorization_mu()
304 const double dw = getMaximumChange (my weights.get(), weights0.get(), sqrteps); in NMF_improveFactorization_mu()
328 autoMAT weights0 = zero_MAT (my numberOfFeatures, my numberOfColumns); in NMF_improveFactorization_als() local
361 weights0.all() <<= my weights.all(); // save previous weights for convergence test in NMF_improveFactorization_als()
389 const double dw = getMaximumChange (my weights.get(), weights0.get(), sqrteps); in NMF_improveFactorization_als()
/dports/misc/vxl/vxl-3.3.2/contrib/mul/clsfy/tests/
H A Dtest_binary_hyperplane.cxx385 vnl_vector<double> weights0(weights); in test_clsfy_geman_mcclure_build()
386 weights0+= 2.0*delta; in test_clsfy_geman_mcclure_build()
387 double f0 = costFn.f(weights0); in test_clsfy_geman_mcclure_build()
393 weights = weights0; in test_clsfy_geman_mcclure_build()
396 weights = weights0; in test_clsfy_geman_mcclure_build()
401 costFn.gradf(weights0,gradf1); in test_clsfy_geman_mcclure_build()
/dports/science/dynare/dynare-4.6.4/matlab/ep/
H A Dsetup_integration_nodes.m7 [nodes0,weights0] = gauss_hermite_weights_and_nodes(EpOptions.stochastic.quadrature.nodes);
13 ww(i) = {weights0};
/dports/graphics/opencv/opencv-4.5.3/modules/ml/src/
H A Dem.cpp142 Mat means0 = _means0.getMat(), weights0 = _weights0.getMat(); in trainE() local
145 !_covs0.empty() ? &covs0 : 0, !_weights0.empty() ? &weights0 : 0); in trainE()
327 const Mat* weights0) in setTrainData() argument
331 checkTrainData(startStep, samples, nclusters, covMatType, probs0, means0, covs0, weights0); in setTrainData()
333 …t = (startStep == START_AUTO_STEP) || (startStep == START_E_STEP && (covs0 == 0 || weights0 == 0)); in setTrainData()
345 if(weights0 && (startStep == START_E_STEP && covs0)) in setTrainData()
347 weights0->convertTo(weights, CV_64FC1); in setTrainData()
357 if(covs0 && (startStep == START_E_STEP && weights0)) in setTrainData()
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavfilter/
H A Dvf_nnedi.c66 float *weights0; member
421 const float *weights0 = s->weights0; in evalfunc_0() local
461 s->compute_network0(s, input, weights0, tempu+x); in evalfunc_0()
471 s->compute_network0(s, input, weights0, tempu + x); in evalfunc_0()
980 s->weights0 = av_malloc_array(FFMAX(dims0, dims0new), sizeof(float)); in init()
981 if (!s->weights0) { in init()
1012 ws = (int16_t *)s->weights0; in init()
1045 int16_t *ws = (int16_t *)s->weights0; in init()
1068 s->weights0[j * 48 + k] = (float)((bdata[j * 48 + k] - mean[j]) / half); in init()
1069 memcpy(s->weights0 + 4 * 48, bdata + 4 * 48, (dims0 - 4 * 48) * sizeof(float)); in init()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavfilter/
H A Dvf_nnedi.c66 float *weights0; member
421 const float *weights0 = s->weights0; in evalfunc_0() local
461 s->compute_network0(s, input, weights0, tempu+x); in evalfunc_0()
471 s->compute_network0(s, input, weights0, tempu + x); in evalfunc_0()
980 s->weights0 = av_malloc_array(FFMAX(dims0, dims0new), sizeof(float)); in init()
981 if (!s->weights0) { in init()
1012 ws = (int16_t *)s->weights0; in init()
1045 int16_t *ws = (int16_t *)s->weights0; in init()
1068 s->weights0[j * 48 + k] = (float)((bdata[j * 48 + k] - mean[j]) / half); in init()
1069 memcpy(s->weights0 + 4 * 48, bdata + 4 * 48, (dims0 - 4 * 48) * sizeof(float)); in init()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavfilter/
H A Dvf_nnedi.c66 float *weights0; member
421 const float *weights0 = s->weights0; in evalfunc_0() local
461 s->compute_network0(s, input, weights0, tempu+x); in evalfunc_0()
471 s->compute_network0(s, input, weights0, tempu + x); in evalfunc_0()
980 s->weights0 = av_malloc_array(FFMAX(dims0, dims0new), sizeof(float)); in init()
981 if (!s->weights0) { in init()
1012 ws = (int16_t *)s->weights0; in init()
1045 int16_t *ws = (int16_t *)s->weights0; in init()
1068 s->weights0[j * 48 + k] = (float)((bdata[j * 48 + k] - mean[j]) / half); in init()
1069 memcpy(s->weights0 + 4 * 48, bdata + 4 * 48, (dims0 - 4 * 48) * sizeof(float)); in init()
[all …]
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/emplike/
H A Ddescriptive.py436 def _opt_correl(self, nuis_params, corr0, endog, nobs, x0, weights0): argument
456 eta_star = self._modif_newton(x0, est_vect, weights0)
1097 weights0 = np.array([1. / nobs] * int(nobs))
1098 args = (corr0, endog, nobs, x0, weights0)
/dports/graphics/opencv/opencv-4.5.3/modules/ml/include/opencv2/
H A Dml.hpp994 InputArray weights0=noArray(),
/dports/databases/mariadb104-server/mariadb-10.4.24/strings/
H A Dctype-uca.ic636 const uint16 *weights0= level->weights[0];
646 weight= weights0 + (((uint) *src) * lengths0);
/dports/databases/mariadb104-client/mariadb-10.4.24/strings/
H A Dctype-uca.ic636 const uint16 *weights0= level->weights[0];
646 weight= weights0 + (((uint) *src) * lengths0);
/dports/databases/mariadb105-client/mariadb-10.5.15/strings/
H A Dctype-uca.ic636 const uint16 *weights0= level->weights[0];
646 weight= weights0 + (((uint) *src) * lengths0);
/dports/databases/mariadb105-server/mariadb-10.5.15/strings/
H A Dctype-uca.ic636 const uint16 *weights0= level->weights[0];
646 weight= weights0 + (((uint) *src) * lengths0);