MCPcopy Create free account
hub / github.com/ROCm/AMDMIGraphX / copy

Function copy

src/targets/gpu/kernels/include/migraphx/kernels/algorithm.hpp:83–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81
82template <class InputIt, class OutputIt>
83constexpr OutputIt copy(InputIt first, InputIt last, OutputIt d_first)
84{
85 while(first != last)
86 {
87 *d_first++ = *first++;
88 }
89 return d_first;
90}
91
92template <class InputIt, class OutputIt, class UnaryPredicate>
93constexpr OutputIt copy_if(InputIt first, InputIt last, OutputIt d_first, UnaryPredicate pred)

Callers 15

scatterndFunction · 0.70
mergeFunction · 0.70
auto_copyMethod · 0.70
parseMethod · 0.50
parseMethod · 0.50
get_data_valsFunction · 0.50
find_outputsMethod · 0.50
parseMethod · 0.50
parseMethod · 0.50
get_operator_valueMethod · 0.50
insert_mlirFunction · 0.50
hip_vectorMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected