summaryrefslogtreecommitdiffstats
path: root/thirdparty/oidn/mkl-dnn/src/common/concat.cpp
diff options
context:
space:
mode:
authorDario <dariosamo@gmail.com>2023-09-18 10:05:20 -0300
committerDario <dariosamo@gmail.com>2023-09-25 14:53:45 -0300
commitab65effed015df76b0858df27127f62b3aa94e0e (patch)
treecab7bbbdd2b63235b809560e47c3ac3784fa892b /thirdparty/oidn/mkl-dnn/src/common/concat.cpp
parent1b2b726502eabaae4a15d544d92735cc2efe35b5 (diff)
downloadredot-engine-ab65effed015df76b0858df27127f62b3aa94e0e.tar.gz
Remove denoise module and thirdparty OIDN.
This is replaced by a much lighter weight and faster JNLM denoiser. OIDN is still much more accurate, and may be provided as an optional backend in the future, but the JNLM denoiser seems good enough for most use cases and removing OIDN reduces the build system complexity, binary size, and build times very significantly.
Diffstat (limited to 'thirdparty/oidn/mkl-dnn/src/common/concat.cpp')
-rw-r--r--thirdparty/oidn/mkl-dnn/src/common/concat.cpp86
1 files changed, 0 insertions, 86 deletions
diff --git a/thirdparty/oidn/mkl-dnn/src/common/concat.cpp b/thirdparty/oidn/mkl-dnn/src/common/concat.cpp
deleted file mode 100644
index ed4c35c6e9..0000000000
--- a/thirdparty/oidn/mkl-dnn/src/common/concat.cpp
+++ /dev/null
@@ -1,86 +0,0 @@
-/*******************************************************************************
-* Copyright 2018 Intel Corporation
-*
-* 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.
-*******************************************************************************/
-
-#include <assert.h>
-
-#include "mkldnn.h"
-
-#include "c_types_map.hpp"
-#include "engine.hpp"
-#include "type_helpers.hpp"
-#include "utils.hpp"
-
-#include "concat_pd.hpp"
-
-using namespace mkldnn::impl;
-using namespace mkldnn::impl::utils;
-using namespace mkldnn::impl::status;
-
-status_t mkldnn_concat_primitive_desc_create(primitive_desc_t **concat_pd,
- const memory_desc_t *dst_md, int n, int concat_dim,
- const memory_desc_t *src_mds,
- const primitive_attr_t *attr,
- engine_t *engine) {
- bool args_ok = !any_null(concat_pd, src_mds) && n > 0;
- if (!args_ok) return invalid_arguments;
-
- const primitive_attr_t dummy_attr;
- if (attr == NULL)
- attr = &dummy_attr;
-
- const int ndims = src_mds[0].ndims;
- const dims_t &dims = src_mds[0].dims;
- const data_type_t dt = src_mds[0].data_type;
-
- int concat_dim_sz = dims[concat_dim];
- for (int i = 1; i < n; ++i) {
- if (src_mds[i].ndims != ndims) return invalid_arguments;
- for (int d = 0; d < ndims; ++d) {
- if (d == concat_dim) continue;
- if (src_mds[i].dims[d] != dims[d])
- return invalid_arguments;
- }
- if (src_mds[i].data_type != dt) return invalid_arguments;
- concat_dim_sz += src_mds[i].dims[concat_dim];
- }
-
- memory_desc_t dummy_dst_md;
- if (dst_md) {
- if (dst_md->ndims != ndims) return invalid_arguments;
- for (int d = 0; d < ndims; ++d) {
- if (dst_md->dims[d] !=
- (d == concat_dim ? concat_dim_sz : dims[d]))
- return invalid_arguments;
- }
- } else {
- dummy_dst_md = src_mds[0];
- dummy_dst_md.dims[concat_dim] = concat_dim_sz;
- dummy_dst_md.format_kind = format_kind::any;
- dst_md = &dummy_dst_md;
- }
-
- auto c_pd = reinterpret_cast<concat_pd_t **>(concat_pd);
-
- for (auto c = engine->get_concat_implementation_list(); *c; ++c) {
- if ((*c)(c_pd, engine, attr, dst_md, n, concat_dim, src_mds)
- == success) {
- (*c_pd)->init_info();
- (*c_pd)->init_scratchpad_md();
- return success;
- }
- }
- return unimplemented;
-}