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

Function equal

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

Source from the content-addressed store, hash-verified

237
238template <class Iterator1, class Iterator2, class BinaryPred>
239constexpr bool equal(Iterator1 first1, Iterator1 last1, Iterator2 first2, BinaryPred p)
240{
241 for(; first1 != last1; ++first1, ++first2)
242 if(not p(*first1, *first2))
243 {
244 return false;
245 }
246 return true;
247}
248
249template <class Iterator, class T>
250constexpr void iota(Iterator first, Iterator last, T value)

Callers 7

scatterFunction · 0.70
use_miopen_poolingMethod · 0.50
compute_shapeMethod · 0.50
is_mlir_compatibleMethod · 0.50
fixed_padFunction · 0.50
reduceFunction · 0.50
compile_pointwise_moduleFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected