MCPcopy Create free account
hub / github.com/CRVI/OpenCLIPP / Mul

Method Mul

C++/programs/Arithmetic.cpp:69–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69void Arithmetic::Mul(Image& Source1, Image& Source2, Image& Dest)
70{
71 CheckSimilarity(Source1, Source2);
72 CheckSimilarity(Source1, Dest);
73
74 Kernel(mul_images, In(Source1, Source2), Out(Dest), Source1.Step(), Source2.Step(), Dest.Step(), Source1.Width() * Source1.NbChannels());
75}
76
77void Arithmetic::Div(Image& Source1, Image& Source2, Image& Dest)
78{

Callers

nothing calls this directly

Calls 4

CheckSimilarityFunction · 0.85
StepMethod · 0.80
WidthMethod · 0.80
NbChannelsMethod · 0.80

Tested by

no test coverage detected