Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/dnn/src/vkcom/shader/spv_shader.hpp
16349 views
1
// This file is part of OpenCV project.
2
// It is subject to the license terms in the LICENSE file found in the top-level directory
3
// of this distribution and at http://opencv.org/license.html.
4
//
5
// Copyright (C) 2018, Intel Corporation, all rights reserved.
6
// Third party copyrights are property of their respective owners.
7
8
#ifndef OPENCV_DNN_SPV_SHADER_HPP
9
#define OPENCV_DNN_SPV_SHADER_HPP
10
11
12
namespace cv { namespace dnn { namespace vkcom {
13
14
extern const unsigned int dw_conv_spv[1655];
15
extern const unsigned int permute_spv[765];
16
extern const unsigned int lrn_spv[1845];
17
extern const unsigned int concat_spv[541];
18
extern const unsigned int avg_pool_spv[1538];
19
extern const unsigned int softmax_spv[1440];
20
extern const unsigned int prior_box_spv[1480];
21
extern const unsigned int max_pool_spv[1449];
22
extern const unsigned int relu_spv[502];
23
extern const unsigned int conv_spv[1859];
24
25
}}} // namespace cv::dnn::vkcom
26
27
#endif /* OPENCV_DNN_SPV_SHADER_HPP */
28
29