Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
17e33738
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
694
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
17e33738
编写于
10月 19, 2017
作者:
D
dangqingqing
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Enhance unit testing and fix bug.
上级
8bec26be
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
101 addition
and
62 deletion
+101
-62
paddle/operators/lstm_op.h
paddle/operators/lstm_op.h
+5
-12
paddle/operators/math/detail/hl_gpu_functions.h
paddle/operators/math/detail/hl_gpu_functions.h
+5
-1
paddle/operators/math/detail/lstm_gpu_kernel.h
paddle/operators/math/detail/lstm_gpu_kernel.h
+4
-2
paddle/operators/math/lstm_compute.h
paddle/operators/math/lstm_compute.h
+1
-1
python/paddle/v2/framework/tests/op_test.py
python/paddle/v2/framework/tests/op_test.py
+2
-2
python/paddle/v2/framework/tests/test_lstm_op.py
python/paddle/v2/framework/tests/test_lstm_op.py
+84
-44
未找到文件。
paddle/operators/lstm_op.h
浏览文件 @
17e33738
...
@@ -56,10 +56,6 @@ class LSTMKernel : public framework::OpKernel<T> {
...
@@ -56,10 +56,6 @@ class LSTMKernel : public framework::OpKernel<T> {
framework
::
DDim
dims
({
in_dims
[
0
],
frame_size
});
framework
::
DDim
dims
({
in_dims
[
0
],
frame_size
});
if
(
bias
)
{
if
(
bias
)
{
// framework::Tensor cpu_t;
// cpu_t.mutable_data<T>(in_dims, platform::CPUPlace());
// cpu_t.CopyFrom<T>(*batch_gate, platform::CPUPlace(),
// ctx.device_context());
Eigen
::
array
<
int
,
2
>
extents
({{
1
,
4
*
frame_size
}});
Eigen
::
array
<
int
,
2
>
extents
({{
1
,
4
*
frame_size
}});
Eigen
::
array
<
int
,
2
>
offsets
({{
0
,
0
}});
Eigen
::
array
<
int
,
2
>
offsets
({{
0
,
0
}});
auto
b
=
EigenMatrix
<
T
>::
From
(
*
bias
);
auto
b
=
EigenMatrix
<
T
>::
From
(
*
bias
);
...
@@ -105,14 +101,14 @@ class LSTMKernel : public framework::OpKernel<T> {
...
@@ -105,14 +101,14 @@ class LSTMKernel : public framework::OpKernel<T> {
int
cur_batch_size
=
bend
-
bstart
;
int
cur_batch_size
=
bend
-
bstart
;
if
(
n
!=
0
)
{
if
(
n
!=
0
)
{
int
pre_end
=
batch_lod
[
n
-
1
];
int
pre_h_start
=
batch_lod
[
n
-
1
];
auto
pre_hidden_t
=
batch_out
.
Slice
<
T
>
(
pre_end
,
bstart
);
int
pre_h_end
=
pre_h_start
+
cur_batch_size
;
auto
pre_hidden_t
=
batch_out
.
Slice
<
T
>
(
pre_h_start
,
pre_h_end
);
math
::
matmul
<
Place
,
T
>
(
ctx
.
device_context
(),
pre_hidden_t
,
false
,
math
::
matmul
<
Place
,
T
>
(
ctx
.
device_context
(),
pre_hidden_t
,
false
,
*
weight
,
false
,
static_cast
<
T
>
(
1.0
),
&
gate_t
,
*
weight
,
false
,
static_cast
<
T
>
(
1.0
),
&
gate_t
,
static_cast
<
T
>
(
0
.0
));
static_cast
<
T
>
(
1
.0
));
}
}
// else if : how to pass the state from
// else if : support the initial hidden and cell
// last mini-batch will be supported later
lstm_value
.
gateValue
=
gate_t
.
data
<
T
>
();
lstm_value
.
gateValue
=
gate_t
.
data
<
T
>
();
lstm_value
.
outputValue
=
out_t
.
data
<
T
>
();
lstm_value
.
outputValue
=
out_t
.
data
<
T
>
();
...
@@ -132,9 +128,6 @@ class LSTMKernel : public framework::OpKernel<T> {
...
@@ -132,9 +128,6 @@ class LSTMKernel : public framework::OpKernel<T> {
batch_cell
.
set_lod
(
batch_gate
->
lod
());
batch_cell
.
set_lod
(
batch_gate
->
lod
());
// restore the output cell state in LoDTensor from the batch cell
// restore the output cell state in LoDTensor from the batch cell
to_seq
(
ctx
.
device_context
(),
batch_cell
,
*
cell_out
);
to_seq
(
ctx
.
device_context
(),
batch_cell
,
*
cell_out
);
auto
t
=
framework
::
EigenVector
<
T
>::
Flatten
(
*
batch_gate
);
t
.
device
(
ctx
.
GetEigenDevice
<
Place
>
())
=
t
.
constant
(
static_cast
<
T
>
(
0
));
}
}
};
};
...
...
paddle/operators/math/detail/hl_gpu_functions.h
浏览文件 @
17e33738
...
@@ -30,7 +30,9 @@ __device__ static float sigmoid(const float a) {
...
@@ -30,7 +30,9 @@ __device__ static float sigmoid(const float a) {
}
}
__device__
static
float
tanh
(
const
float
a
)
{
__device__
static
float
tanh
(
const
float
a
)
{
return
__fdividef
(
2.0
f
,
(
1.0
f
+
__expf
(
-
2.0
f
*
a
)))
-
1.0
f
;
float
tmp
=
-
2.0
*
a
;
tmp
=
(
tmp
>
EXP_MAX_INPUT
)
?
EXP_MAX_INPUT
:
tmp
;
return
__fdividef
(
2.0
f
,
(
1.0
f
+
__expf
(
-
2.0
f
*
tmp
)))
-
1.0
f
;
}
}
__device__
static
float
linear
(
const
float
a
)
{
return
a
;
}
__device__
static
float
linear
(
const
float
a
)
{
return
a
;
}
...
@@ -63,6 +65,8 @@ __device__ static double sigmoid(const double a) {
...
@@ -63,6 +65,8 @@ __device__ static double sigmoid(const double a) {
}
}
__device__
static
double
tanh
(
const
double
a
)
{
__device__
static
double
tanh
(
const
double
a
)
{
double
tmp
=
-
2.0
*
a
;
tmp
=
(
tmp
>
EXP_MAX_INPUT
)
?
EXP_MAX_INPUT
:
tmp
;
return
(
2.0
/
(
1.0
+
exp
(
-
2.0
*
a
)))
-
1.0
;
return
(
2.0
/
(
1.0
+
exp
(
-
2.0
*
a
)))
-
1.0
;
}
}
...
...
paddle/operators/math/detail/lstm_gpu_kernel.h
浏览文件 @
17e33738
...
@@ -205,11 +205,13 @@ void gpu_lstm_forward(const platform::DeviceContext& context, Op op,
...
@@ -205,11 +205,13 @@ void gpu_lstm_forward(const platform::DeviceContext& context, Op op,
if
(
batchSize
==
1
)
{
if
(
batchSize
==
1
)
{
KeLstmForward
<
T
,
Op
,
KeLstmForward
<
T
,
Op
,
/* isBatch= */
false
><<<
grid
,
threads
,
0
,
stream
>>>
(
/* isBatch= */
false
><<<
grid
,
threads
,
0
,
stream
>>>
(
op
,
value
,
frameSize
,
batchSize
,
active_node
,
active_gate
,
active_gate
);
op
,
value
,
frameSize
,
batchSize
,
active_node
,
active_gate
,
active_state
);
}
else
{
}
else
{
KeLstmForward
<
T
,
Op
,
KeLstmForward
<
T
,
Op
,
/* isBatch= */
true
><<<
grid
,
threads
,
0
,
stream
>>>
(
/* isBatch= */
true
><<<
grid
,
threads
,
0
,
stream
>>>
(
op
,
value
,
frameSize
,
batchSize
,
active_node
,
active_gate
,
active_gate
);
op
,
value
,
frameSize
,
batchSize
,
active_node
,
active_gate
,
active_state
);
}
}
}
}
...
...
paddle/operators/math/lstm_compute.h
浏览文件 @
17e33738
...
@@ -60,7 +60,7 @@ inline activation_mode_t ActiveType(const std::string &type) {
...
@@ -60,7 +60,7 @@ inline activation_mode_t ActiveType(const std::string &type) {
return
HL_ACTIVATION_RELU
;
return
HL_ACTIVATION_RELU
;
}
else
if
(
type
==
"tanh"
)
{
}
else
if
(
type
==
"tanh"
)
{
return
HL_ACTIVATION_TANH
;
return
HL_ACTIVATION_TANH
;
}
else
if
(
type
==
"linear"
||
type
==
""
)
{
}
else
if
(
type
==
"linear"
||
type
==
"
identity"
||
type
==
"
"
)
{
return
HL_ACTIVATION_LINEAR
;
return
HL_ACTIVATION_LINEAR
;
}
else
{
}
else
{
PADDLE_THROW
(
"Do not support activation type."
);
PADDLE_THROW
(
"Do not support activation type."
);
...
...
python/paddle/v2/framework/tests/op_test.py
浏览文件 @
17e33738
...
@@ -242,7 +242,7 @@ class OpTest(unittest.TestCase):
...
@@ -242,7 +242,7 @@ class OpTest(unittest.TestCase):
self
.
assertTrue
(
self
.
assertTrue
(
np
.
allclose
(
np
.
allclose
(
actual
,
expect
,
atol
=
atol
),
actual
,
expect
,
atol
=
atol
),
"
output name: "
+
out_name
+
" has diff."
)
"
Output ("
+
out_name
+
") has diff at "
+
str
(
place
)
)
else
:
else
:
actual
=
np
.
array
(
self
.
scope
.
find_var
(
out_name
).
get_tensor
())
actual
=
np
.
array
(
self
.
scope
.
find_var
(
out_name
).
get_tensor
())
expect
=
self
.
outputs
[
out_name
]
expect
=
self
.
outputs
[
out_name
]
...
@@ -250,7 +250,7 @@ class OpTest(unittest.TestCase):
...
@@ -250,7 +250,7 @@ class OpTest(unittest.TestCase):
self
.
assertTrue
(
self
.
assertTrue
(
np
.
allclose
(
np
.
allclose
(
actual
,
expect
,
atol
=
atol
),
actual
,
expect
,
atol
=
atol
),
"
output name: "
+
out_name
+
" has diff."
)
"
Output ("
+
out_name
+
") has diff at "
+
str
(
place
)
)
def
check_output
(
self
,
atol
=
1e-5
):
def
check_output
(
self
,
atol
=
1e-5
):
places
=
[
core
.
CPUPlace
()]
places
=
[
core
.
CPUPlace
()]
...
...
python/paddle/v2/framework/tests/test_lstm_op.py
浏览文件 @
17e33738
...
@@ -28,6 +28,14 @@ def relu(x):
...
@@ -28,6 +28,14 @@ def relu(x):
return
np
.
maximum
(
x
,
0
)
return
np
.
maximum
(
x
,
0
)
ACTVATION
=
{
'identity'
:
identity
,
'sigmoid'
:
sigmoid
,
'tanh'
:
tanh
,
'relu'
:
relu
}
def
lstm
(
def
lstm
(
input
,
# T x 4D
input
,
# T x 4D
lod
,
# 1 x N
lod
,
# 1 x N
...
@@ -37,37 +45,45 @@ def lstm(
...
@@ -37,37 +45,45 @@ def lstm(
w_b
=
None
,
# 1 x 4D
w_b
=
None
,
# 1 x 4D
w_c
=
None
,
# 1 x 3D
w_c
=
None
,
# 1 x 3D
is_reverse
=
False
,
is_reverse
=
False
,
gate_act
=
None
,
act_gate
=
None
,
cell_act
=
None
,
act_cell
=
None
,
cand_act
=
None
):
act_cand
=
None
):
def
_step
(
x
,
w_h
,
w_c
,
h_pre
,
c_pre
,
gate_act
,
cell_act
,
cand_act
):
def
_step
(
x
,
w_h
,
w_c
,
h_pre
,
c_pre
,
act_gate
,
act_cell
,
act_cand
):
g
=
np
.
dot
(
h_pre
,
w_h
)
# 1 x 4D
g
=
np
.
dot
(
h_pre
,
w_h
)
# 1 x 4D
g
=
g
+
x
g
=
g
+
x
g
=
np
.
reshape
(
g
,
(
1
,
g
.
size
))
g
=
np
.
reshape
(
g
,
(
1
,
g
.
size
))
c_tmp
,
g_i
,
g_f
,
g_o
=
np
.
split
(
g
,
4
,
axis
=
1
)
c_tmp
,
g_i
,
g_f
,
g_o
=
np
.
split
(
g
,
4
,
axis
=
1
)
if
w_c
is
None
:
if
w_c
is
None
:
g_i
=
gate_act
(
g_i
)
# 1 x D
g_i
=
act_gate
(
g_i
)
# 1 x D
g_f
=
gate_act
(
g_f
)
# 1 x D
g_f
=
act_gate
(
g_f
)
# 1 x D
else
:
else
:
w_ic
,
w_fc
,
w_oc
=
np
.
split
(
w_c
,
3
,
axis
=
1
)
w_ic
,
w_fc
,
w_oc
=
np
.
split
(
w_c
,
3
,
axis
=
1
)
g_i
=
gate_act
(
g_i
+
w_ic
*
c_pre
)
# 1 x D
g_i
=
act_gate
(
g_i
+
w_ic
*
c_pre
)
# 1 x D
g_f
=
gate_act
(
g_f
+
w_fc
*
c_pre
)
# 1 x D
g_f
=
act_gate
(
g_f
+
w_fc
*
c_pre
)
# 1 x D
c
=
g_f
*
c_pre
+
g_i
*
cand_act
(
c_tmp
)
# 1 x D
c
=
g_f
*
c_pre
+
g_i
*
act_cand
(
c_tmp
)
# 1 x D
if
w_c
is
None
:
if
w_c
is
None
:
g_o
=
gate_act
(
g_o
)
# 1 x D
g_o
=
act_gate
(
g_o
)
# 1 x D
else
:
else
:
_
,
_
,
w_oc
=
np
.
split
(
w_c
,
3
,
axis
=
1
)
_
,
_
,
w_oc
=
np
.
split
(
w_c
,
3
,
axis
=
1
)
g_o
=
gate_act
(
g_o
+
w_oc
*
c
)
# 1 x D
g_o
=
act_gate
(
g_o
+
w_oc
*
c
)
# 1 x D
h
=
g_o
*
cell_act
(
c
)
h
=
g_o
*
act_cell
(
c
)
bg
=
np
.
concatenate
((
cand_act
(
c_tmp
),
g_i
,
g_f
,
g_o
),
axis
=
1
)
bg
=
np
.
concatenate
((
act_cand
(
c_tmp
),
g_i
,
g_f
,
g_o
),
axis
=
1
)
return
h
,
c
,
bg
return
h
,
c
,
bg
def
_reverse
(
x
,
lod
):
y
=
np
.
zeros_like
(
x
)
for
i
in
range
(
len
(
lod
)
-
1
):
b
,
e
=
lod
[
i
],
lod
[
i
+
1
]
y
[
b
:
e
,
:]
=
np
.
flip
(
x
[
b
:
e
,
:],
0
)
return
y
offset
=
lod
[
0
]
offset
=
lod
[
0
]
batch_size
=
len
(
offset
)
-
1
batch_size
=
len
(
offset
)
-
1
hidden
=
[]
hidden
=
[]
cell
=
[]
cell
=
[]
gate
=
[]
gate
=
[]
input
=
_reverse
(
input
,
offset
)
if
is_reverse
else
input
if
w_b
is
not
None
:
if
w_b
is
not
None
:
input
=
input
+
np
.
tile
(
w_b
,
(
offset
[
-
1
],
1
))
input
=
input
+
np
.
tile
(
w_b
,
(
offset
[
-
1
],
1
))
for
i
in
range
(
batch_size
):
for
i
in
range
(
batch_size
):
...
@@ -78,8 +94,8 @@ def lstm(
...
@@ -78,8 +94,8 @@ def lstm(
c_pre
=
c0
[
i
]
# 1 x D
c_pre
=
c0
[
i
]
# 1 x D
for
j
in
range
(
seq_len
):
for
j
in
range
(
seq_len
):
# compute one step
# compute one step
h_pre
,
c_pre
,
g_pre
=
_step
(
x
[
j
],
w_h
,
w_c
,
h_pre
,
c_pre
,
gate_act
,
h_pre
,
c_pre
,
g_pre
=
_step
(
x
[
j
],
w_h
,
w_c
,
h_pre
,
c_pre
,
act_gate
,
cell_act
,
cand_act
)
act_cell
,
act_cand
)
hidden
.
append
(
h_pre
.
flatten
())
hidden
.
append
(
h_pre
.
flatten
())
cell
.
append
(
c_pre
.
flatten
())
cell
.
append
(
c_pre
.
flatten
())
gate
.
append
(
g_pre
.
flatten
())
gate
.
append
(
g_pre
.
flatten
())
...
@@ -87,38 +103,53 @@ def lstm(
...
@@ -87,38 +103,53 @@ def lstm(
hidden
=
np
.
array
(
hidden
).
astype
(
"float64"
)
hidden
=
np
.
array
(
hidden
).
astype
(
"float64"
)
cell
=
np
.
array
(
cell
).
astype
(
"float64"
)
cell
=
np
.
array
(
cell
).
astype
(
"float64"
)
gate
=
np
.
array
(
gate
).
astype
(
"float64"
)
gate
=
np
.
array
(
gate
).
astype
(
"float64"
)
hidden
=
_reverse
(
hidden
,
offset
)
if
is_reverse
else
hidden
cell
=
_reverse
(
cell
,
offset
)
if
is_reverse
else
cell
assert
gate
.
shape
==
input
.
shape
assert
gate
.
shape
==
input
.
shape
assert
hidden
.
shape
==
(
input
.
shape
[
0
],
input
.
shape
[
1
]
/
4
)
assert
hidden
.
shape
==
(
input
.
shape
[
0
],
input
.
shape
[
1
]
/
4
)
assert
cell
.
shape
==
(
input
.
shape
[
0
],
input
.
shape
[
1
]
/
4
)
assert
cell
.
shape
==
(
input
.
shape
[
0
],
input
.
shape
[
1
]
/
4
)
return
hidden
,
cell
,
gate
return
hidden
,
cell
,
gate
class
LstmUnitTest
(
OpTest
):
class
TestLstmOp
(
OpTest
):
def
set_data
(
self
):
def
set_data
(
self
):
D
=
4
self
.
lod
=
[[
0
,
2
,
6
,
9
]]
#lod = [[0, 2, 6, 9]]
self
.
D
=
64
lod
=
[[
0
,
1
]]
self
.
sort_idx
=
[
2
,
6
,
0
,
3
,
7
,
1
,
4
,
8
,
5
]
shape
=
(
1
,
D
)
self
.
act_gate
=
"sigmoid"
x
=
np
.
random
.
normal
(
size
=
(
1
,
4
*
D
)).
astype
(
"float64"
)
self
.
act_cell
=
"tanh"
h0
=
np
.
zeros
((
4
,
D
)).
astype
(
"float64"
)
self
.
act_cand
=
"tanh"
c0
=
np
.
zeros
((
4
,
D
)).
astype
(
"float64"
)
w
=
np
.
random
.
normal
(
size
=
(
D
,
4
*
D
)).
astype
(
"float64"
)
self
.
is_reverse
=
False
b
=
np
.
random
.
normal
(
size
=
(
1
,
7
*
D
)).
astype
(
"float64"
)
def
setUp
(
self
):
w_b
=
b
[:,
0
:
4
*
D
]
self
.
set_data
()
w_c
=
b
[:,
4
*
D
:]
self
.
op_type
=
"lstm"
#h, c, g = lstm(x, lod, h0, c0, w, w_b, w_c, False, sigmoid, tanh, tanh)
h
,
c
,
g
=
lstm
(
x
,
lod
,
h0
,
c0
,
w
,
w_b
,
w_c
,
False
,
identity
,
identity
,
T
=
self
.
lod
[
0
][
-
1
]
identity
)
N
=
len
(
self
.
lod
[
0
])
-
1
x
=
np
.
random
.
normal
(
size
=
(
T
,
4
*
self
.
D
)).
astype
(
"float64"
)
h0
=
np
.
zeros
((
N
,
self
.
D
)).
astype
(
"float64"
)
c0
=
np
.
zeros
((
N
,
self
.
D
)).
astype
(
"float64"
)
w
=
np
.
random
.
normal
(
size
=
(
self
.
D
,
4
*
self
.
D
)).
astype
(
"float64"
)
b
=
np
.
random
.
normal
(
size
=
(
1
,
7
*
self
.
D
)).
astype
(
"float64"
)
w_b
=
b
[:,
0
:
4
*
self
.
D
]
w_c
=
b
[:,
4
*
self
.
D
:]
h
,
c
,
g
=
lstm
(
x
,
self
.
lod
,
h0
,
c0
,
w
,
w_b
,
w_c
,
self
.
is_reverse
,
ACTVATION
[
self
.
act_gate
],
ACTVATION
[
self
.
act_cell
],
ACTVATION
[
self
.
act_cand
])
g_sort
=
np
.
zeros_like
(
x
)
g_sort
=
np
.
zeros_like
(
x
)
#idx = [2,6,0,3,7,1,4,8,5]
for
i
,
j
in
enumerate
(
self
.
sort_idx
):
#for i, j in enumerate(idx):
g_sort
[
i
,
:]
=
g
[
j
,
:]
# g_sort[i, :] = g[j, :]
self
.
inputs
=
{
self
.
inputs
=
{
'Input'
:
(
x
,
lod
),
'Input'
:
(
x
,
self
.
lod
),
'H0'
:
h0
,
'H0'
:
h0
,
'C0'
:
c0
,
'C0'
:
c0
,
'Weight'
:
w
,
'Weight'
:
w
,
...
@@ -127,19 +158,28 @@ class LstmUnitTest(OpTest):
...
@@ -127,19 +158,28 @@ class LstmUnitTest(OpTest):
self
.
outputs
=
{
'Hidden'
:
h
,
'Cell'
:
c
,
'BatchGate'
:
g_sort
}
self
.
outputs
=
{
'Hidden'
:
h
,
'Cell'
:
c
,
'BatchGate'
:
g_sort
}
self
.
attrs
=
{
self
.
attrs
=
{
'usePeepholes'
:
True
,
'usePeepholes'
:
True
,
'isReverse'
:
Fal
se
,
'isReverse'
:
self
.
is_rever
se
,
'gateActivation'
:
'
linear
'
,
'gateActivation'
:
'
sigmoid
'
,
'cellActivation'
:
'
linear
'
,
'cellActivation'
:
'
tanh
'
,
'candidateActivation'
:
'
linear
'
'candidateActivation'
:
'
tanh
'
}
}
def
setUp
(
self
):
self
.
set_data
()
self
.
op_type
=
"lstm"
def
test_check_output
(
self
):
def
test_check_output
(
self
):
self
.
check_output
()
self
.
check_output
()
class
TestLstmOpRerverse
(
TestLstmOp
):
def
set_data
(
self
):
self
.
lod
=
[[
0
,
2
,
6
,
9
]]
self
.
D
=
64
self
.
sort_idx
=
[
2
,
6
,
0
,
3
,
7
,
1
,
4
,
8
,
5
]
self
.
act_gate
=
"sigmoid"
self
.
act_cell
=
"tanh"
self
.
act_cand
=
"tanh"
self
.
is_reverse
=
True
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
unittest
.
main
()
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录