Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
ab163063
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
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看板
未验证
提交
ab163063
编写于
4月 14, 2023
作者:
G
Galaxy1458
提交者:
GitHub
4月 14, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix some [-Wunused-function] and [-Wunused-function] warning (#52868)
* test,test=develop * test,test=develop * test,test=develop
上级
630d14f5
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
10 addition
and
9 deletion
+10
-9
paddle/phi/core/enforce.h
paddle/phi/core/enforce.h
+2
-2
paddle/phi/core/generator.cc
paddle/phi/core/generator.cc
+6
-0
paddle/phi/core/generator.h
paddle/phi/core/generator.h
+0
-5
paddle/phi/core/utils/unroll_array_ops.h
paddle/phi/core/utils/unroll_array_ops.h
+2
-2
未找到文件。
paddle/phi/core/enforce.h
浏览文件 @
ab163063
...
...
@@ -51,7 +51,7 @@ limitations under the License. */
#include <string>
#include <type_traits>
#include <utility>
#include "paddle/phi/core/macros.h"
#if !defined(_WIN32) && !defined(PADDLE_WITH_MUSL)
#include <execinfo.h>
#endif
...
...
@@ -222,7 +222,7 @@ struct BinaryCompareMessageConverter {
template
<
>
struct
BinaryCompareMessageConverter
<
false
>
{
template
<
typename
T
>
static
const
char
*
Convert
(
const
char
*
expression
,
const
T
&
value
)
{
static
const
char
*
Convert
(
const
char
*
expression
,
const
T
&
value
UNUSED
)
{
return
expression
;
}
};
...
...
paddle/phi/core/generator.cc
浏览文件 @
ab163063
...
...
@@ -23,6 +23,12 @@ limitations under the License. */
#include "paddle/phi/backends/xpu/xpu_info.h"
#include "paddle/phi/core/enforce.h"
static
uint64_t
GetRandomSeed
()
{
std
::
random_device
rd
;
// double has 53 bit significant, so limit uint64 to 53 bits
return
((((
uint64_t
)
rd
())
<<
32
)
+
rd
())
&
0x1FFFFFFFFFFFFF
;
}
namespace
phi
{
const
std
::
shared_ptr
<
Generator
>&
DefaultXPUGenerator
(
int64_t
device_id
)
{
...
...
paddle/phi/core/generator.h
浏览文件 @
ab163063
...
...
@@ -24,11 +24,6 @@ limitations under the License. */
#include <random>
#include <typeinfo>
#include <utility>
static
uint64_t
GetRandomSeed
()
{
std
::
random_device
rd
;
// double has 53 bit significant, so limit uint64 to 53 bits
return
((((
uint64_t
)
rd
())
<<
32
)
+
rd
())
&
0x1FFFFFFFFFFFFF
;
}
namespace
phi
{
...
...
paddle/phi/core/utils/unroll_array_ops.h
浏览文件 @
ab163063
...
...
@@ -15,8 +15,8 @@
#pragma once
#include <cstddef>
#include <type_traits>
#include "paddle/phi/core/hostdevice.h"
#include "paddle/phi/core/macros.h"
namespace
phi
{
namespace
detail
{
...
...
@@ -47,7 +47,7 @@ struct UnrollAssign {
template
<
size_t
kStart
,
size_t
kEnd
>
struct
UnrollAssign
<
kStart
,
kEnd
,
true
>
{
template
<
typename
Tin
,
typename
Tout
>
HOSTDEVICE
inline
static
void
Run
(
const
Tin
*
d1
,
Tout
*
d2
)
{}
HOSTDEVICE
inline
static
void
Run
(
const
Tin
*
d1
UNUSED
,
Tout
*
d2
UNUSED
)
{}
};
template
<
typename
T
,
size_t
kStart
,
size_t
kEnd
,
bool
kStop
>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录