OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:reduceOp
(Results
1 - 6
of
6
) sorted by null
/external/opencv3/modules/core/perf/
perf_reduce.cpp
25
int
reduceOp
= get<2>(GetParam());
28
if( CV_MAT_DEPTH(matType) < CV_32S && (
reduceOp
== CV_REDUCE_SUM ||
reduceOp
== CV_REDUCE_AVG) )
38
TEST_CYCLE_MULTIRUN(runs) reduce(src, vec, 0,
reduceOp
, ddepth);
53
int
reduceOp
= get<2>(GetParam());
56
if( CV_MAT_DEPTH(matType)< CV_32S && (
reduceOp
== CV_REDUCE_SUM ||
reduceOp
== CV_REDUCE_AVG) )
65
TEST_CYCLE() reduce(src, vec, 1,
reduceOp
, ddepth);
/external/opencv3/modules/cudaarithm/src/cuda/
reduce.cu
62
void reduceToRowImpl(const GpuMat& _src, GpuMat& _dst, int
reduceOp
, Stream& stream)
67
switch (
reduceOp
)
88
void reduceToColumnImpl_(const GpuMat& _src, GpuMat& _dst, int
reduceOp
, Stream& stream)
93
switch (
reduceOp
)
114
void reduceToColumnImpl(const GpuMat& src, GpuMat& dst, int
reduceOp
, Stream& stream)
116
typedef void (*func_t)(const GpuMat& src, GpuMat& dst, int
reduceOp
, Stream& stream);
125
funcs[src.channels() - 1](src, dst,
reduceOp
, stream);
129
void cv::cuda::reduce(InputArray _src, OutputArray _dst, int dim, int
reduceOp
, int dtype, Stream& stream)
135
CV_Assert(
reduceOp
== REDUCE_SUM ||
reduceOp
== REDUCE_AVG || reduceOp == REDUCE_MAX || reduceOp == REDUCE_MIN )
[
all
...]
/libcore/ojluni/src/main/java/java/util/stream/
DistinctOps.java
61
TerminalOp<T, LinkedHashSet<T>>
reduceOp
64
return Nodes.node(
reduceOp
.evaluateParallel(helper, spliterator));
/external/opencv3/modules/cudaarithm/test/
test_reductions.cpp
831
int
reduceOp
;
844
reduceOp
= GET_PARAM(4);
851
if (
reduceOp
== cv::REDUCE_MAX ||
reduceOp
== cv::REDUCE_MIN)
853
else if (
reduceOp
== cv::REDUCE_SUM)
868
cv::cuda::reduce(loadMat(src, useRoi), dst, 0,
reduceOp
, dst_depth);
871
cv::reduce(src, dst_gold, 0,
reduceOp
, dst_depth);
881
cv::cuda::reduce(loadMat(src, useRoi), dst, 1,
reduceOp
, dst_depth);
884
cv::reduce(src, dst_gold, 1,
reduceOp
, dst_depth);
/external/opencv3/modules/cudaarithm/perf/
perf_reductions.cpp
356
const int
reduceOp
= GET_PARAM(3);
369
TEST_CYCLE() cv::cuda::reduce(d_src, dst, dim,
reduceOp
, CV_32F);
377
TEST_CYCLE() cv::reduce(src, dst, dim,
reduceOp
, CV_32F);
/external/opencv3/modules/cudaarithm/include/opencv2/
cudaarithm.hpp
627
@param
reduceOp
Reduction operation that could be one of the following:
647
CV_EXPORTS void reduce(InputArray mtx, OutputArray vec, int dim, int
reduceOp
, int dtype = -1, Stream& stream = Stream::Null());
[
all
...]
Completed in 5994 milliseconds