mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 04:00:30 +08:00
Disabled native_sqrt for double, since it may be not implemented and gives compilation error.
This commit is contained in:
parent
21f1a0ee49
commit
491bf41356
@ -293,7 +293,11 @@
|
||||
#define PROCESS_ELEM storedst(pown(srcelem1, srcelem2))
|
||||
|
||||
#elif defined OP_SQRT
|
||||
#if depth <= 5
|
||||
#define PROCESS_ELEM storedst(native_sqrt(srcelem1))
|
||||
#else
|
||||
#define PROCESS_ELEM storedst(sqrt(srcelem1))
|
||||
#endif
|
||||
|
||||
#elif defined OP_LOG
|
||||
#define PROCESS_ELEM \
|
||||
|
Loading…
Reference in New Issue
Block a user