[neurun] Rename `graph` to `ir` (#9362)
authorSergei Barannikov/AI Tools Lab /SRR/Engineer/Samsung Electronics <s.barannikov@samsung.com>
Wed, 4 Dec 2019 08:21:15 +0000 (11:21 +0300)
committer이한종/On-Device Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Wed, 4 Dec 2019 08:21:15 +0000 (17:21 +0900)
commit3f3600e4f73ccb20b1c3fb8f2899d911a6d130dd
treeca209a7012aae1a7b06d8fe99adebfcb80037d84
parentde60e200442cdf59d33ac7f8d577006eae40a920
[neurun] Rename `graph` to `ir` (#9362)

Rename `src/graph/` and `include/graph/` to `src/ir/` and `include/ir/`, respectively

Signed-off-by: Sergei Barannikov <s.barannikov@samsung.com>
63 files changed:
runtime/neurun/core/include/backend/IShapeFixer.h
runtime/neurun/core/include/backend/ITensorRegister.h
runtime/neurun/core/include/compiler/Compiler.h
runtime/neurun/core/include/exec/IExecutor.h
runtime/neurun/core/include/ir/BackendSet.h [moved from runtime/neurun/core/include/graph/BackendSet.h with 100% similarity]
runtime/neurun/core/include/ir/Graph.h [moved from runtime/neurun/core/include/graph/Graph.h with 99% similarity]
runtime/neurun/core/include/ir/LowerInfoMap.h [moved from runtime/neurun/core/include/graph/LowerInfoMap.h with 93% similarity]
runtime/neurun/core/include/ir/operand/LowerInfo.h [moved from runtime/neurun/core/include/graph/operand/LowerInfo.h with 98% similarity]
runtime/neurun/core/include/ir/operand/ParentInfo.h [moved from runtime/neurun/core/include/graph/operand/ParentInfo.h with 100% similarity]
runtime/neurun/core/include/ir/operand/PermuteFactor.h [moved from runtime/neurun/core/include/graph/operand/PermuteFactor.h with 100% similarity]
runtime/neurun/core/include/ir/operation/LowerInfo.h [moved from runtime/neurun/core/include/graph/operation/LowerInfo.h with 97% similarity]
runtime/neurun/core/include/model/Operand.h
runtime/neurun/core/src/compiler/Compiler.cc
runtime/neurun/core/src/compiler/ExecutorFactory.cc
runtime/neurun/core/src/compiler/ExecutorFactory.h
runtime/neurun/core/src/compiler/HEScheduler.cc
runtime/neurun/core/src/compiler/HEScheduler.h
runtime/neurun/core/src/compiler/IScheduler.h
runtime/neurun/core/src/compiler/Linear.h
runtime/neurun/core/src/compiler/OperationValidator.cc
runtime/neurun/core/src/compiler/ParamChecker.cc
runtime/neurun/core/src/compiler/SubTensorAnalyzer.h
runtime/neurun/core/src/dumper/dot/DotDumper.h
runtime/neurun/core/src/dumper/dot/OperandNode.cc
runtime/neurun/core/src/dumper/dot/OperationNode.cc
runtime/neurun/core/src/exec/ExecutorBase.h
runtime/neurun/core/src/exec/ParallelScheduler.h
runtime/neurun/core/src/exec/interp/ExecEnv.h
runtime/neurun/core/src/exec/interp/ExecManager.h
runtime/neurun/core/src/ir/Graph.cc [moved from runtime/neurun/core/src/graph/Graph.cc with 99% similarity]
runtime/neurun/core/src/ir/dumper/Dumper.cc [moved from runtime/neurun/core/src/graph/dumper/Dumper.cc with 100% similarity]
runtime/neurun/core/src/ir/dumper/Dumper.h [moved from runtime/neurun/core/src/graph/dumper/Dumper.h with 100% similarity]
runtime/neurun/core/src/ir/operand/LowerInfo.cc [moved from runtime/neurun/core/src/graph/operand/LowerInfo.cc with 95% similarity]
runtime/neurun/core/src/ir/operand/Shape4DConvert.h [moved from runtime/neurun/core/src/graph/operand/Shape4DConvert.h with 97% similarity]
runtime/neurun/core/src/ir/operation/LowerInfo.cc [moved from runtime/neurun/core/src/graph/operation/LowerInfo.cc with 95% similarity]
runtime/neurun/core/src/ir/pass/ConstantInsertionPass.cc [moved from runtime/neurun/core/src/graph/pass/ConstantInsertionPass.cc with 98% similarity]
runtime/neurun/core/src/ir/pass/ConstantInsertionPass.h [moved from runtime/neurun/core/src/graph/pass/ConstantInsertionPass.h with 97% similarity]
runtime/neurun/core/src/ir/pass/OperandPass.cc [moved from runtime/neurun/core/src/graph/pass/OperandPass.cc with 97% similarity]
runtime/neurun/core/src/ir/pass/OperandPass.h [moved from runtime/neurun/core/src/graph/pass/OperandPass.h with 100% similarity]
runtime/neurun/core/src/ir/pass/OperationPass.cc [moved from runtime/neurun/core/src/graph/pass/OperationPass.cc with 97% similarity]
runtime/neurun/core/src/ir/pass/OperationPass.h [moved from runtime/neurun/core/src/graph/pass/OperationPass.h with 100% similarity]
runtime/neurun/core/src/ir/pass/Pass.cc [moved from runtime/neurun/core/src/graph/pass/Pass.cc with 100% similarity]
runtime/neurun/core/src/ir/pass/Pass.h [moved from runtime/neurun/core/src/graph/pass/Pass.h with 100% similarity]
runtime/neurun/core/src/ir/pass/PermutationEliminationPass.cc [moved from runtime/neurun/core/src/graph/pass/PermutationEliminationPass.cc with 99% similarity]
runtime/neurun/core/src/ir/pass/PermutationEliminationPass.h [moved from runtime/neurun/core/src/graph/pass/PermutationEliminationPass.h with 100% similarity]
runtime/neurun/core/src/ir/pass/PermutationInsertionPass.cc [moved from runtime/neurun/core/src/graph/pass/PermutationInsertionPass.cc with 98% similarity]
runtime/neurun/core/src/ir/pass/PermutationInsertionPass.h [moved from runtime/neurun/core/src/graph/pass/PermutationInsertionPass.h with 97% similarity]
runtime/neurun/core/src/ir/pass/PermutationOperationPass.cc [moved from runtime/neurun/core/src/graph/pass/PermutationOperationPass.cc with 99% similarity]
runtime/neurun/core/src/ir/pass/PermutationOperationPass.h [moved from runtime/neurun/core/src/graph/pass/PermutationOperationPass.h with 100% similarity]
runtime/neurun/core/src/ir/verifier/Verifier.cc [moved from runtime/neurun/core/src/graph/verifier/Verifier.cc with 99% similarity]
runtime/neurun/core/src/ir/verifier/Verifier.h [moved from runtime/neurun/core/src/graph/verifier/Verifier.h with 100% similarity]
runtime/neurun/frontend/base_loader/base_loader.h
runtime/neurun/frontend/circle/circle_loader.h
runtime/neurun/frontend/nnapi/wrapper/ANeuralNetworksCompilation.h
runtime/neurun/frontend/nnapi/wrapper/ANeuralNetworksModel.h
runtime/neurun/frontend/tflite/tflite_loader.h
runtime/neurun/test/core/exec/ExecInstance.cc
runtime/neurun/test/core/exec/interp/ExecManager.cc
runtime/neurun/test/graph/Graph.cc
runtime/neurun/test/graph/operand/UseDef.cc
runtime/neurun/test/graph/operation/SetIO.cc
runtime/neurun/test/graph/verifier/Verifier.cc
tests/tools/tflite_loader/src/tflite_loader.cc