template struct cv::cudev::VecTraits<float1>

#include <vec_traits.hpp>

template <>
struct VecTraits<float1>
{
    // typedefs

    typedef float elem_type;

    // enums

    enum
    {
        cn =1,
    };

    // methods

    static
    __host__ __device__ static __forceinline__ float1
    all(float v);

    static
    __host__ __device__ static __forceinline__ float1
    make(const float* v);

    static
    __host__ __device__ static __forceinline__ float1
    make(float x);
};