Home
last modified time | relevance | path

Searched refs:convolve (Results 1 – 20 of 20) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Support/
DAPFloat.cpp26 #define convolve(lhs, rhs) ((lhs) * 4 + (rhs)) macro
1291 switch (convolve(category, rhs.category)) { in addOrSubtractSpecials()
1295 case convolve(fcNaN, fcZero): in addOrSubtractSpecials()
1296 case convolve(fcNaN, fcNormal): in addOrSubtractSpecials()
1297 case convolve(fcNaN, fcInfinity): in addOrSubtractSpecials()
1298 case convolve(fcNaN, fcNaN): in addOrSubtractSpecials()
1299 case convolve(fcNormal, fcZero): in addOrSubtractSpecials()
1300 case convolve(fcInfinity, fcNormal): in addOrSubtractSpecials()
1301 case convolve(fcInfinity, fcZero): in addOrSubtractSpecials()
1304 case convolve(fcZero, fcNaN): in addOrSubtractSpecials()
[all …]
/external/eigen/unsupported/test/
Dcxx11_tensor_convolution.cpp30 typedef TensorEvaluator<decltype(input.convolve(kernel, dims3)), DefaultDevice> Evaluator; in test_evals()
31 Evaluator eval(input.convolve(kernel, dims3), DefaultDevice()); in test_evals()
57 result = input.convolve(kernel, dims); in test_expr()
88 valid = input.pad(padding).convolve(kernel, dims); in test_modes()
96 same = input.pad(padding).convolve(kernel, dims); in test_modes()
106 full = input.pad(padding).convolve(kernel, dims); in test_modes()
130 result = input.stride(stride_of_3).convolve(kernel, dims).stride(stride_of_2); in test_strides()
Dcxx11_tensor_device.cu156 …context->out().slice(indices, sizes).device(context->device()) = context->in1().convolve(context->… in test_1d_convolution()
166 …context->out().slice(indices, sizes).device(context->device()) = context->in1().convolve(context->… in test_2d_convolution()
176 …context->out().slice(indices, sizes).device(context->device()) = context->in1().convolve(context->… in test_3d_convolution()
Dcxx11_tensor_cuda.cu349 gpu_out.device(gpu_device) = gpu_input.convolve(gpu_kernel, dims); in test_cuda_convolution_1d()
402 gpu_out.device(gpu_device) = gpu_input.convolve(gpu_kernel, dims); in test_cuda_convolution_inner_dim_col_major_1d()
455 gpu_out.device(gpu_device) = gpu_input.convolve(gpu_kernel, dims); in test_cuda_convolution_inner_dim_row_major_1d()
509 gpu_out.device(gpu_device) = gpu_input.convolve(gpu_kernel, dims); in test_cuda_convolution_2d()
573 gpu_out.device(gpu_device) = gpu_input.convolve(gpu_kernel, dims); in test_cuda_convolution_3d()
/external/tensorflow/tensorflow/contrib/gan/python/eval/python/
Dsliced_wasserstein_test.py41 return ndimage.convolve(
51 return ndimage.convolve(
/external/skia/gm/
Dimagefiltersgraph.cpp128 sk_sp<SkImageFilter> convolve(SkMatrixConvolutionImageFilter::Make(kernelSize, in onDraw() local
138 paint.setImageFilter(std::move(convolve)); in onDraw()
/external/skqp/gm/
Dimagefiltersgraph.cpp128 sk_sp<SkImageFilter> convolve(SkMatrixConvolutionImageFilter::Make(kernelSize, in onDraw() local
138 paint.setImageFilter(std::move(convolve)); in onDraw()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorConvolution.h402 convolve(firstInput(index), 0, NumKernelDims-1, result);
440 convolve(startInputs[0], 0, NumKernelDims-1, data[0]);
443 convolve(firstInput(index+i), 0, NumKernelDims-1, data[i]);
446 convolve(startInputs[1], 0, NumKernelDims-1, data[PacketSize-1]);
490 …EIGEN_DEVICE_FUNC void convolve(Index firstIndex, Index firstKernel, int DimIndex, CoeffReturnType…
495 convolve(input, kernel, DimIndex-1, accum);
DTensorBase.h490 convolve(const KernelDerived& kernel, const Dimensions& dims) const { in convolve() function
DREADME.md1211 ### <Operation> convolve(const Kernel& kernel, const Dimensions& dims)
1230 output = input.convolve(kernel, dims);
/external/ltp/testcases/realtime/tools/
Dftqviz.py47 y = convolve(w/w.sum(), s, mode='same')
/external/libvpx/libvpx/vpx_dsp/ppc/
Dvpx_convolve_vsx.c294 static inline void convolve(const uint8_t *src, ptrdiff_t src_stride, in convolve() function
378 convolve(src, src_stride, dst, dst_stride, filter, x0_q4, x_step_q4, y0_q4, in vpx_convolve8_vsx()
/external/mesa3d/src/mesa/
DMakefile.sources54 main/convolve.c \
55 main/convolve.h \
/external/ImageMagick/Magick++/demo/
Ddemo.cpp143 example.convolve( 3, kernel ); in main()
/external/eigen/bench/tensors/
Dtensor_benchmarks.h436 C.device(device_) = A.convolve(B, dims); in convolution()
/external/libvpx/libvpx/vpx_dsp/
Dvpx_dsp.mk89 DSP_SRCS-$(ARCH_X86)$(ARCH_X86_64) += x86/convolve.h
/external/ImageMagick/Magick++/lib/Magick++/
DImage.h788 void convolve(const size_t order_,const double *kernel_);
/external/ImageMagick/Magick++/
DNEWS168 * Added convolve and unsharpmask methods to Image.
DChangeLog827 * lib/Image.cpp (convolve): New method to convolve image using
/external/ImageMagick/Magick++/lib/
DImage.cpp2577 void Magick::Image::convolve(const size_t order_,const double *kernel_) in convolve() function in Magick::Image