summaryrefslogtreecommitdiff
path: root/compute/ncnn/src/srcn/sgemm_kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'compute/ncnn/src/srcn/sgemm_kernel.h')
-rw-r--r--compute/ncnn/src/srcn/sgemm_kernel.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/compute/ncnn/src/srcn/sgemm_kernel.h b/compute/ncnn/src/srcn/sgemm_kernel.h
deleted file mode 100644
index 9e220bc33..000000000
--- a/compute/ncnn/src/srcn/sgemm_kernel.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef __NNFW_SRCN_SGEMM_KERNEL_H__
-#define __NNFW_SRCN_SGEMM_KERNEL_H__
-
-#include "ncnn/srcn/conv_type.h"
-
-namespace nnfw
-{
-namespace srcn
-{
-
-void _sgemm_rowmajor_macro_kernel_divnm(const int mr, const int nr, const int mb, const int nb,
- const int kb, const float *lhs_ptr, const float *rhs_ptr,
- float *res_ptr, const int k0, const int nstride,
- const int kstride);
-
-void _sgemm_rowmajor_macro_kernel_divmn(const int mr, const int nr, const int mb, const int nb,
- const int kb, const float *lhs_ptr, const float *rhs_ptr,
- float *res_ptr, const int k0, const int nstride,
- const int kstride);
-
-void _sgemm_colmajor_macro_kernel_divnm(const int mr, const int nr, const int mb, const int nb,
- const int kb, const float *lhs_ptr, const float *rhs_ptr,
- float *res_ptr, const int k0, const int mstride,
- const int kstride);
-
-void _sgemm_colmajor_macro_kernel_divmn(const int mr, const int nr, const int mb, const int nb,
- const int kb, const float *lhs_ptr, const float *rhs_ptr,
- float *res_ptr, const int k0, const int mstride,
- const int kstride);
-
-void _sparse_sgemm_kernel(const int nb, float lhs_data, const float *rhs_ptr, float *res_ptr);
-
-} // namespace srcn
-} // namespace nnfw
-
-#endif // __NNFW_SRCN_SGEMM_KERNEL_H__