Path: blob/master/modules/dnn/src/vkcom/shader/spv_shader.hpp
16349 views
// This file is part of OpenCV project.1// It is subject to the license terms in the LICENSE file found in the top-level directory2// of this distribution and at http://opencv.org/license.html.3//4// Copyright (C) 2018, Intel Corporation, all rights reserved.5// Third party copyrights are property of their respective owners.67#ifndef OPENCV_DNN_SPV_SHADER_HPP8#define OPENCV_DNN_SPV_SHADER_HPP91011namespace cv { namespace dnn { namespace vkcom {1213extern const unsigned int dw_conv_spv[1655];14extern const unsigned int permute_spv[765];15extern const unsigned int lrn_spv[1845];16extern const unsigned int concat_spv[541];17extern const unsigned int avg_pool_spv[1538];18extern const unsigned int softmax_spv[1440];19extern const unsigned int prior_box_spv[1480];20extern const unsigned int max_pool_spv[1449];21extern const unsigned int relu_spv[502];22extern const unsigned int conv_spv[1859];2324}}} // namespace cv::dnn::vkcom2526#endif /* OPENCV_DNN_SPV_SHADER_HPP */272829