summaryrefslogtreecommitdiff
path: root/runtime/neurun/core/src/util/Utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/neurun/core/src/util/Utils.cc')
-rw-r--r--runtime/neurun/core/src/util/Utils.cc68
1 files changed, 0 insertions, 68 deletions
diff --git a/runtime/neurun/core/src/util/Utils.cc b/runtime/neurun/core/src/util/Utils.cc
deleted file mode 100644
index 1e24e28d4..000000000
--- a/runtime/neurun/core/src/util/Utils.cc
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (c) 2018 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.
- */
-
-#include "util/Utils.h"
-
-#include <cassert>
-
-namespace neurun
-{
-namespace util
-{
-
-const char *to_string(const ir::PaddingType type)
-{
- assert((type == ir::PaddingType::EXPLICIT) || (type == ir::PaddingType::SAME) ||
- (type == ir::PaddingType::VALID));
-
- switch (type)
- {
- case ir::PaddingType::EXPLICIT:
- return "Padding::EXPLICIT";
- case ir::PaddingType::SAME:
- return "Padding::SAME";
- case ir::PaddingType::VALID:
- return "Padding::VALID";
- }
-
- return nullptr;
-}
-
-Coordinates convertCoordinates(const Coordinates &from_coordinates, ir::Layout from_layout,
- ir::Layout to_layout)
-{
- assert(from_coordinates.size() == 4);
- Coordinates to{from_coordinates};
- if (from_layout == ir::Layout::NHWC && to_layout == ir::Layout::NCHW)
- {
- to.set(0, from_coordinates[0]);
- to.set(1, from_coordinates[3]);
- to.set(2, from_coordinates[1]);
- to.set(3, from_coordinates[2]);
- }
- else if (from_layout == ir::Layout::NCHW && to_layout == ir::Layout::NHWC)
- {
- to.set(0, from_coordinates[0]);
- to.set(1, from_coordinates[2]);
- to.set(2, from_coordinates[3]);
- to.set(3, from_coordinates[1]);
- }
-
- return to;
-}
-
-} // namespace util
-} // namespace neurun