Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
0fc9919b
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
0fc9919b
编写于
11月 12, 2021
作者:
C
Chen Weihang
提交者:
GitHub
11月 12, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
infershape to infermeta (#37107)
上级
ca7f1cd2
变更
14
隐藏空白更改
内联
并排
Showing
14 changed file
with
14 addition
and
13 deletion
+14
-13
paddle/pten/CMakeLists.txt
paddle/pten/CMakeLists.txt
+2
-2
paddle/pten/api/lib/manipulation.cc
paddle/pten/api/lib/manipulation.cc
+1
-1
paddle/pten/api/lib/math.cc
paddle/pten/api/lib/math.cc
+1
-1
paddle/pten/include/infershape.h
paddle/pten/include/infershape.h
+3
-3
paddle/pten/infermeta/CMakeLists.txt
paddle/pten/infermeta/CMakeLists.txt
+0
-0
paddle/pten/infermeta/binary.cc
paddle/pten/infermeta/binary.cc
+2
-1
paddle/pten/infermeta/binary.h
paddle/pten/infermeta/binary.h
+0
-0
paddle/pten/infermeta/nary.cc
paddle/pten/infermeta/nary.cc
+1
-1
paddle/pten/infermeta/nary.h
paddle/pten/infermeta/nary.h
+0
-0
paddle/pten/infermeta/unary.cc
paddle/pten/infermeta/unary.cc
+1
-1
paddle/pten/infermeta/unary.h
paddle/pten/infermeta/unary.h
+0
-0
paddle/pten/kernels/cpu/manipulation.cc
paddle/pten/kernels/cpu/manipulation.cc
+1
-1
paddle/pten/kernels/cuda/manipulation.cu
paddle/pten/kernels/cuda/manipulation.cu
+1
-1
paddle/pten/kernels/xpu/manipulation.cc
paddle/pten/kernels/xpu/manipulation.cc
+1
-1
未找到文件。
paddle/pten/CMakeLists.txt
浏览文件 @
0fc9919b
...
...
@@ -5,8 +5,8 @@ add_subdirectory(api)
add_subdirectory
(
core
)
# pten kernels for diff device
add_subdirectory
(
kernels
)
# pten infer
shape
add_subdirectory
(
infer
shape
)
# pten infer
meta
add_subdirectory
(
infer
meta
)
# pten tests
add_subdirectory
(
tests
)
...
...
paddle/pten/api/lib/manipulation.cc
浏览文件 @
0fc9919b
...
...
@@ -20,7 +20,7 @@ limitations under the License. */
#include "paddle/pten/api/lib/kernel_dispatch.h"
#include "paddle/pten/api/lib/utils/allocator.h"
#include "paddle/pten/include/core.h"
#include "paddle/pten/infer
shape
/unary.h"
#include "paddle/pten/infer
meta
/unary.h"
namespace
paddle
{
namespace
experimental
{
...
...
paddle/pten/api/lib/math.cc
浏览文件 @
0fc9919b
...
...
@@ -22,7 +22,7 @@ limitations under the License. */
#include "paddle/pten/api/lib/utils/allocator.h"
#include "paddle/pten/include/core.h"
#include "paddle/pten/include/infershape.h"
#include "paddle/pten/infer
shape
/unary.h"
#include "paddle/pten/infer
meta
/unary.h"
namespace
paddle
{
namespace
experimental
{
...
...
paddle/pten/include/infershape.h
浏览文件 @
0fc9919b
...
...
@@ -15,6 +15,6 @@ limitations under the License. */
#pragma once
// See Note: [ How do we organize the kernel directory ]
#include "paddle/pten/infer
shape
/binary.h"
#include "paddle/pten/infer
shape
/nary.h"
#include "paddle/pten/infer
shape
/unary.h"
#include "paddle/pten/infer
meta
/binary.h"
#include "paddle/pten/infer
meta
/nary.h"
#include "paddle/pten/infer
meta
/unary.h"
paddle/pten/infer
shape
/CMakeLists.txt
→
paddle/pten/infer
meta
/CMakeLists.txt
浏览文件 @
0fc9919b
文件已移动
paddle/pten/infer
shape
/binary.cc
→
paddle/pten/infer
meta
/binary.cc
浏览文件 @
0fc9919b
...
...
@@ -13,8 +13,9 @@ See the License for the specific language governing permissions and
limitations under the License. */
// See Note [ Why still include the fluid headers? ]
#include "paddle/pten/infer
shape
/binary.h"
#include "paddle/pten/infer
meta
/binary.h"
#include "paddle/pten/kernels/functions/general/elementwise_base.h"
namespace
pten
{
DenseTensorMeta
DotInferShape
(
const
DenseTensorMeta
&
x_meta
,
...
...
paddle/pten/infer
shape
/binary.h
→
paddle/pten/infer
meta
/binary.h
浏览文件 @
0fc9919b
文件已移动
paddle/pten/infer
shape
/nary.cc
→
paddle/pten/infer
meta
/nary.cc
浏览文件 @
0fc9919b
...
...
@@ -13,7 +13,7 @@ See the License for the specific language governing permissions and
limitations under the License. */
// See Note [ Why still include the fluid headers? ]
#include "paddle/pten/infer
shape
/nary.h"
#include "paddle/pten/infer
meta
/nary.h"
namespace
pten
{
...
...
paddle/pten/infer
shape
/nary.h
→
paddle/pten/infer
meta
/nary.h
浏览文件 @
0fc9919b
文件已移动
paddle/pten/infer
shape
/unary.cc
→
paddle/pten/infer
meta
/unary.cc
浏览文件 @
0fc9919b
...
...
@@ -13,7 +13,7 @@ See the License for the specific language governing permissions and
limitations under the License. */
// See Note [ Why still include the fluid headers? ]
#include "paddle/pten/infer
shape
/unary.h"
#include "paddle/pten/infer
meta
/unary.h"
namespace
pten
{
...
...
paddle/pten/infer
shape
/unary.h
→
paddle/pten/infer
meta
/unary.h
浏览文件 @
0fc9919b
文件已移动
paddle/pten/kernels/cpu/manipulation.cc
浏览文件 @
0fc9919b
...
...
@@ -13,7 +13,7 @@
// limitations under the License.
#include "paddle/pten/kernels/cpu/manipulation.h"
#include "paddle/pten/infer
shape
/unary.h"
#include "paddle/pten/infer
meta
/unary.h"
#include "paddle/pten/kernels/cpu/utils.h"
namespace
pten
{
...
...
paddle/pten/kernels/cuda/manipulation.cu
浏览文件 @
0fc9919b
...
...
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#include "paddle/pten/infer
shape
/unary.h"
#include "paddle/pten/infer
meta
/unary.h"
#include "paddle/pten/kernels/cuda/manipulation.h"
#include "paddle/pten/kernels/cuda/utils.h"
...
...
paddle/pten/kernels/xpu/manipulation.cc
浏览文件 @
0fc9919b
...
...
@@ -13,7 +13,7 @@
// limitations under the License.
#include "paddle/pten/kernels/xpu/manipulation.h"
#include "paddle/pten/infer
shape
/unary.h"
#include "paddle/pten/infer
meta
/unary.h"
#include "paddle/pten/kernels/xpu/utils.h"
namespace
pten
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录