MCPcopy Create free account
hub / github.com/davisking/dlib / log10

Function log10

dlib/cuda/tensor_tools.cpp:188–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186// ----------------------------------------------------------------------------------------
187
188 void log10 (
189 tensor& dest,
190 const tensor& src
191 )
192 {
193 DLIB_CASSERT(dest.size() == src.size());
194
195#ifdef DLIB_USE_CUDA
196 cuda::log10(dest,src);
197#else
198 dest = log10(mat(src));
199#endif
200 }
201
202// ----------------------------------------------------------------------------------------
203

Callers 4

test_basic_tensor_opsFunction · 0.85
gg18Method · 0.85
psnrFunction · 0.85
zero_pad_part_namesFunction · 0.85

Calls 2

matFunction · 0.70
sizeMethod · 0.45

Tested by 3

test_basic_tensor_opsFunction · 0.68
gg18Method · 0.68
psnrFunction · 0.68