op type checker in onnx frontend & code style checker on thirdparty/ngraph (#71)
This commit is contained in:
Родитель
6a041fe607
Коммит
a9d804a3cd
|
@ -8,8 +8,9 @@ echo "Using ${CLANG_FORMAT} formating source code tree..."
|
|||
PWD="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
# TO source code root
|
||||
pushd "${PWD}/../../" > /dev/null
|
||||
find . -path './thirdparty' -prune -o -path './artifacts' -prune -o -path './build' -prune -o \
|
||||
-type f -and \( -name '*.cpp' -or -name '*.hpp' \) \
|
||||
(find . -path './thirdparty' -prune -o -path './artifacts' -prune -o -path './build' -prune -o \
|
||||
-type f -and \( -name '*.cpp' -or -name '*.hpp' \) ;\
|
||||
find './thirdparty/ngraph' -type f -and \( -name '*.cpp' -or -name '*.hpp' \) ) | cat \
|
||||
| xargs "${CLANG_FORMAT}" -i -style=file 2>&1 \
|
||||
| grep -v "Is a directory"
|
||||
echo "Done."
|
||||
|
|
|
@ -11,7 +11,7 @@ pushd "${PWD}/../../" > /dev/null
|
|||
|
||||
EXITCODE=0
|
||||
|
||||
for SRC_FILE in $(find . -path './thirdparty' -prune -o -path './artifacts' -prune -o -path './build' -prune -o -type f -and \( -name '*.cpp' -or -name '*.hpp' \) ); do
|
||||
for SRC_FILE in $(( find . -path './thirdparty' -prune -o -path './artifacts' -prune -o -path './build' -prune -o -type f -and \( -name '*.cpp' -or -name '*.hpp' \) ; find './thirdparty/ngraph' -type f -and \( -name '*.cpp' -or -name '*.hpp' \) ) | cat); do
|
||||
if "${CLANG_FORMAT}" -style=file -output-replacements-xml "${SRC_FILE}" 2>&1 | grep -v "Is a directory" | grep -c "<replacement " >/dev/null; then
|
||||
echo "[ERROR] Require: ${CLANG_FORMAT}" -style=file -i "${SRC_FILE}"
|
||||
EXITCODE=1
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "autobroadcast.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
//*****************************************************************************
|
||||
|
|
|
@ -14,14 +14,13 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "nnfusion/common/axis_vector.hpp"
|
||||
#include "nnfusion/core/graph/gnode.hpp"
|
||||
#include "nnfusion/core/graph/graph.hpp"
|
||||
#include "nnfusion/common/axis_vector.hpp"
|
||||
|
||||
namespace nnfusion
|
||||
{
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include <memory>
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "abs.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "acos.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "add.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "allreduce.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "and.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "argmax.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "argmin.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "asin.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "atan.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "avg_pool.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include <set>
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "broadcast.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "ceiling.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include <cassert>
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include <cmath>
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "convert.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include <numeric>
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "cos.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "cosh.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "divide.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include <functional>
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "equal.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "erf.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "exp.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "floor.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,12 +14,11 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "fused.hpp"
|
||||
#include "nnfusion/core/operators/generic_op/generic_op.hpp"
|
||||
#include "nnfusion/core/graph/gnode.hpp"
|
||||
#include "nnfusion/core/operators/generic_op/generic_op.hpp"
|
||||
|
||||
using namespace nnfusion::op;
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "../op.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2020, NNFusion Team
|
||||
|
||||
#include "gelu.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2020, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "greater.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "greater_eq.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "less.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "less_eq.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "log.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "lrn.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "max.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "max_pool.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "maximum.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "min.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "minimum.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "multiply.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "negative.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "not.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "not_equal.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "or.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "pad.hpp"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#pragma once
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
// limitations under the License.
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
// Microsoft (c) 2019, NNFusion Team
|
||||
|
||||
#include "parameter.hpp"
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче