summaryrefslogtreecommitdiff
path: root/compute/ncnn/src/srcn/sgemm_kernel.h
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2020-03-04 18:09:24 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2020-03-04 18:09:24 +0900
commit302e6564a7a76109e1178207e44e45a58631c477 (patch)
tree6cc4bd95e5e438331fc2c53234af4ed0e0f3bc20 /compute/ncnn/src/srcn/sgemm_kernel.h
parentbd11b24234d7d43dfe05a81c520aa01ffad06e42 (diff)
downloadnnfw-upstream/1.1.0.tar.gz
nnfw-upstream/1.1.0.tar.bz2
nnfw-upstream/1.1.0.zip
Diffstat (limited to 'compute/ncnn/src/srcn/sgemm_kernel.h')
-rw-r--r--compute/ncnn/src/srcn/sgemm_kernel.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/compute/ncnn/src/srcn/sgemm_kernel.h b/compute/ncnn/src/srcn/sgemm_kernel.h
new file mode 100644
index 000000000..9e220bc33
--- /dev/null
+++ b/compute/ncnn/src/srcn/sgemm_kernel.h
@@ -0,0 +1,52 @@
+/*
+ * 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__