#ifndef OPENPOSE_NET_MAXIMUM_BASE_HPP #define OPENPOSE_NET_MAXIMUM_BASE_HPP #include namespace op { template void maximumCpu(T* targetPtr, const T* const sourcePtr, const std::array& targetSize, const std::array& sourceSize); // Windows: Cuda functions do not include OP_API template void maximumGpu(T* targetPtr, const T* const sourcePtr, const std::array& targetSize, const std::array& sourceSize); } #endif // OPENPOSE_NET_MAXIMUM_BASE_HPP