Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
c5e433b5
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
404
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
c5e433b5
编写于
8月 31, 2020
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor(mge): cpp license
GitOrigin-RevId: 2f67f84724f628c0477d468c3f741b0876a939ee
上级
6e882c1a
变更
60
显示空白变更内容
内联
并排
Showing
60 changed file
with
438 addition
and
174 deletion
+438
-174
imperative/python/src/common.cpp
imperative/python/src/common.cpp
+11
-0
imperative/python/src/common.h
imperative/python/src/common.h
+11
-0
imperative/python/src/graph_rt.cpp
imperative/python/src/graph_rt.cpp
+11
-0
imperative/python/src/graph_rt.h
imperative/python/src/graph_rt.h
+11
-0
imperative/python/src/helper.cpp
imperative/python/src/helper.cpp
+11
-0
imperative/python/src/helper.h
imperative/python/src/helper.h
+11
-0
imperative/python/src/imperative_rt.cpp
imperative/python/src/imperative_rt.cpp
+11
-0
imperative/python/src/imperative_rt.h
imperative/python/src/imperative_rt.h
+11
-0
imperative/python/src/module.cpp
imperative/python/src/module.cpp
+11
-0
imperative/python/src/numpy_dtypes.h
imperative/python/src/numpy_dtypes.h
+6
-5
imperative/python/src/numpy_dtypes_bfloat16.cpp
imperative/python/src/numpy_dtypes_bfloat16.cpp
+6
-5
imperative/python/src/numpy_dtypes_intbx.cpp
imperative/python/src/numpy_dtypes_intbx.cpp
+6
-5
imperative/python/src/ops.cpp
imperative/python/src/ops.cpp
+11
-0
imperative/python/src/ops.h
imperative/python/src/ops.h
+11
-0
imperative/python/src/utils.cpp
imperative/python/src/utils.cpp
+11
-0
imperative/python/src/utils.h
imperative/python/src/utils.h
+11
-0
imperative/src/impl/blob_manager_impl.cpp
imperative/src/impl/blob_manager_impl.cpp
+6
-4
imperative/src/impl/blob_manager_impl.h
imperative/src/impl/blob_manager_impl.h
+6
-4
imperative/src/impl/dnn_op_helper.h
imperative/src/impl/dnn_op_helper.h
+6
-4
imperative/src/impl/interpreter_impl.cpp
imperative/src/impl/interpreter_impl.cpp
+11
-0
imperative/src/impl/interpreter_impl.h
imperative/src/impl/interpreter_impl.h
+11
-0
imperative/src/impl/op_def.cpp
imperative/src/impl/op_def.cpp
+6
-4
imperative/src/impl/op_trait.cpp
imperative/src/impl/op_trait.cpp
+6
-4
imperative/src/impl/op_trait.h
imperative/src/impl/op_trait.h
+6
-4
imperative/src/impl/opr_utility.cpp
imperative/src/impl/opr_utility.cpp
+6
-4
imperative/src/impl/ops/backward_graph.cpp
imperative/src/impl/ops/backward_graph.cpp
+6
-4
imperative/src/impl/ops/collective_comm.cpp
imperative/src/impl/ops/collective_comm.cpp
+7
-4
imperative/src/impl/ops/cond_take.cpp
imperative/src/impl/ops/cond_take.cpp
+6
-4
imperative/src/impl/ops/io_remote.cpp
imperative/src/impl/ops/io_remote.cpp
+7
-4
imperative/src/impl/ops/nms.cpp
imperative/src/impl/ops/nms.cpp
+7
-4
imperative/src/impl/ops/opr_attr.cpp
imperative/src/impl/ops/opr_attr.cpp
+6
-4
imperative/src/impl/ops/tensor_manip.cpp
imperative/src/impl/ops/tensor_manip.cpp
+6
-4
imperative/src/impl/physical_tensor.cpp
imperative/src/impl/physical_tensor.cpp
+6
-4
imperative/src/impl/profiler.cpp
imperative/src/impl/profiler.cpp
+6
-4
imperative/src/impl/proxy_graph.cpp
imperative/src/impl/proxy_graph.cpp
+6
-4
imperative/src/impl/proxy_graph.h
imperative/src/impl/proxy_graph.h
+6
-4
imperative/src/impl/proxy_graph_detail.cpp
imperative/src/impl/proxy_graph_detail.cpp
+6
-4
imperative/src/impl/proxy_graph_detail.h
imperative/src/impl/proxy_graph_detail.h
+6
-4
imperative/src/include/megbrain/imperative.h
imperative/src/include/megbrain/imperative.h
+6
-4
imperative/src/include/megbrain/imperative/blob_manager.h
imperative/src/include/megbrain/imperative/blob_manager.h
+6
-4
imperative/src/include/megbrain/imperative/interpreter.h
imperative/src/include/megbrain/imperative/interpreter.h
+11
-0
imperative/src/include/megbrain/imperative/op_def.h
imperative/src/include/megbrain/imperative/op_def.h
+6
-4
imperative/src/include/megbrain/imperative/opr_utility.h
imperative/src/include/megbrain/imperative/opr_utility.h
+6
-4
imperative/src/include/megbrain/imperative/ops/backward_graph.h
...tive/src/include/megbrain/imperative/ops/backward_graph.h
+6
-4
imperative/src/include/megbrain/imperative/ops/collective_comm.h
...ive/src/include/megbrain/imperative/ops/collective_comm.h
+6
-4
imperative/src/include/megbrain/imperative/ops/cond_take.h
imperative/src/include/megbrain/imperative/ops/cond_take.h
+6
-4
imperative/src/include/megbrain/imperative/ops/io_remote.h
imperative/src/include/megbrain/imperative/ops/io_remote.h
+6
-4
imperative/src/include/megbrain/imperative/ops/nms.h
imperative/src/include/megbrain/imperative/ops/nms.h
+6
-4
imperative/src/include/megbrain/imperative/ops/opr_attr.h
imperative/src/include/megbrain/imperative/ops/opr_attr.h
+6
-4
imperative/src/include/megbrain/imperative/ops/tensor_manip.h
...rative/src/include/megbrain/imperative/ops/tensor_manip.h
+6
-4
imperative/src/include/megbrain/imperative/physical_tensor.h
imperative/src/include/megbrain/imperative/physical_tensor.h
+6
-4
imperative/src/include/megbrain/imperative/profiler.h
imperative/src/include/megbrain/imperative/profiler.h
+6
-4
imperative/src/test/backward_graph.cpp
imperative/src/test/backward_graph.cpp
+5
-3
imperative/src/test/collective_comm.cpp
imperative/src/test/collective_comm.cpp
+6
-4
imperative/src/test/cond_take.cpp
imperative/src/test/cond_take.cpp
+6
-4
imperative/src/test/helper.cpp
imperative/src/test/helper.cpp
+5
-3
imperative/src/test/helper.h
imperative/src/test/helper.h
+5
-3
imperative/src/test/imperative.cpp
imperative/src/test/imperative.cpp
+5
-3
imperative/src/test/io_remote.cpp
imperative/src/test/io_remote.cpp
+6
-4
imperative/src/test/opr_utility.cpp
imperative/src/test/opr_utility.cpp
+5
-3
未找到文件。
imperative/python/src/common.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/common.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./common.h"
#include <pybind11/operators.h>
...
...
imperative/python/src/common.h
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/common.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
#include "./helper.h"
...
...
imperative/python/src/graph_rt.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/graph_rt.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./graph_rt.h"
#include "megbrain/imperative/opr_utility.h"
...
...
imperative/python/src/graph_rt.h
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/graph_rt.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
#include "./helper.h"
...
...
imperative/python/src/helper.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/helper.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./helper.h"
#include <pybind11/eval.h>
...
...
imperative/python/src/helper.h
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/helper.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
#include "megbrain/graph.h"
...
...
imperative/python/src/imperative_rt.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/imperative_rt.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./imperative_rt.h"
#include <future>
...
...
imperative/python/src/imperative_rt.h
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/imperative_rt.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
#include "./helper.h"
...
...
imperative/python/src/module.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/module.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include <pybind11/eval.h>
#define DO_IMPORT_ARRAY
...
...
imperative/python/src/numpy_dtypes.h
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/numpy_dtypes.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \brief import numpy array with proper settings
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
#ifndef DO_IMPORT_ARRAY
...
...
imperative/python/src/numpy_dtypes_bfloat16.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/numpy_dtypes_bfloat16.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \brief numpy dtypes for bfloat16
*
* \copyright Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./numpy_dtypes.h"
#include <Python.h>
...
...
imperative/python/src/numpy_dtypes_intbx.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/numpy_dtypes_intbx.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \brief numpy dtypes for low bit
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./numpy_dtypes.h"
#include <Python.h>
...
...
imperative/python/src/ops.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/ops.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./ops.h"
#include "megbrain/imperative.h"
...
...
imperative/python/src/ops.h
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/ops.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
#include "./helper.h"
...
...
imperative/python/src/utils.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/utils.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "utils.h"
#ifdef WIN32
#include <stdio.h>
...
...
imperative/python/src/utils.h
浏览文件 @
c5e433b5
/**
* \file imperative/python/src/utils.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
#include "./helper.h"
...
...
imperative/src/impl/blob_manager_impl.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/impl/imperative/physical_tensor.cpp
* \file imperative/src/impl/blob_manager_impl.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./blob_manager_impl.h"
...
...
imperative/src/impl/blob_manager_impl.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/blob_manager_impl.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/impl/dnn_op_helper.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/dnn_op_helper.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/comp_node_env.h"
...
...
imperative/src/impl/interpreter_impl.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/src/impl/interpreter_impl.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./interpreter_impl.h"
...
...
imperative/src/impl/interpreter_impl.h
浏览文件 @
c5e433b5
/**
* \file imperative/src/impl/interpreter_impl.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include <variant>
#include <future>
...
...
imperative/src/impl/op_def.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/op_def.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/imperative/op_def.h"
...
...
imperative/src/impl/op_trait.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/op_trait.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include <sstream>
...
...
imperative/src/impl/op_trait.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/op_trait.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/impl/opr_utility.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/impl/imperative/opr_utility.cpp
* \file imperative/src/impl/opr_utility.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/imperative/opr_utility.h"
...
...
imperative/src/impl/ops/backward_graph.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/impl/imperative/physical_tensor.cpp
* \file imperative/src/impl/ops/backward_graph.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/imperative/ops/backward_graph.h"
...
...
imperative/src/impl/ops/collective_comm.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/ops/collective_comm.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain_build_config.h"
#if MGB_ENABLE_OPR_MM
...
...
imperative/src/impl/ops/cond_take.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/ops/cond_take.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/imperative/ops/cond_take.h"
...
...
imperative/src/impl/ops/io_remote.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/ops/io_remote.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain_build_config.h"
#if MGB_ENABLE_OPR_MM
...
...
imperative/src/impl/ops/nms.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/ops/nms.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "../op_trait.h"
#include "megbrain/imperative/ops/nms.h"
...
...
imperative/src/impl/ops/opr_attr.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/impl/imperative/physical_tensor.cpp
* \file imperative/src/impl/ops/opr_attr.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/imperative/ops/opr_attr.h"
...
...
imperative/src/impl/ops/tensor_manip.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/ops/tensor_manip.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/imperative/ops/tensor_manip.h"
...
...
imperative/src/impl/physical_tensor.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/impl/imperative/physical_tensor.cpp
* \file imperative/src/impl/physical_tensor.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/imperative.h"
...
...
imperative/src/impl/profiler.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/impl/imperative/profiler.cpp
* \file imperative/src/impl/profiler.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/imperative/profiler.h"
...
...
imperative/src/impl/proxy_graph.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/impl/imperative/proxy_graph.cpp
* \file imperative/src/impl/proxy_graph.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./blob_manager_impl.h"
...
...
imperative/src/impl/proxy_graph.h
浏览文件 @
c5e433b5
/**
* \file src/core/impl/imperative/proxy_graph.h
* \file imperative/src/impl/proxy_graph.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/impl/proxy_graph_detail.cpp
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/proxy_graph_detail.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./proxy_graph.h"
...
...
imperative/src/impl/proxy_graph_detail.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/impl/proxy_graph_detail.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/blob_manager.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative/blob_manager.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/interpreter.h
浏览文件 @
c5e433b5
/**
* \file imperative/src/include/megbrain/imperative/interpreter.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include <atomic>
#include "megbrain/imperative/op_def.h"
...
...
imperative/src/include/megbrain/imperative/op_def.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative/op_def.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/opr_utility.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/opr_utility.h
* \file imperative/src/include/megbrain/imperative/opr_utility.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/ops/backward_graph.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative/ops/backward_graph.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/ops/collective_comm.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative/ops/collective_comm.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/ops/cond_take.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative/ops/cond_take.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/ops/io_remote.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative/ops/io_remote.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/ops/nms.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative/ops/nms.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/ops/opr_attr.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative/ops/opr_attr.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/ops/tensor_manip.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative/ops/tensor_manip.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/physical_tensor.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/imperative.h
* \file imperative/src/include/megbrain/imperative/physical_tensor.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/include/megbrain/imperative/profiler.h
浏览文件 @
c5e433b5
/**
* \file src/core/include/megbrain/profiler.h
* \file imperative/src/include/megbrain/imperative/profiler.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/test/backward_graph.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/src/test/backward_graph.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./helper.h"
...
...
imperative/src/test/collective_comm.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/src/test/imperative.cpp
* \file imperative/src/test/collective_comm.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./helper.h"
...
...
imperative/src/test/cond_take.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/src/test/imperative.cpp
* \file imperative/src/test/cond_take.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./helper.h"
...
...
imperative/src/test/helper.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/src/test/helper.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "helper.h"
...
...
imperative/src/test/helper.h
浏览文件 @
c5e433b5
/**
* \file imperative/src/test/helper.h
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
...
...
imperative/src/test/imperative.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/src/test/imperative.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./helper.h"
...
...
imperative/src/test/io_remote.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/src/test/imperative.cpp
* \file imperative/src/test/io_remote.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "./helper.h"
...
...
imperative/src/test/opr_utility.cpp
浏览文件 @
c5e433b5
/**
* \file imperative/src/test/opr_utility.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* This file is part of MegBrain, a deep learning framework developed by Megvii.
*
* \copyright Copyright (c) 2014-2019 Megvii Inc. All rights reserved.
* Copyright (c) 2014-2020 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/imperative/opr_utility.h"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录