Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
ea9e3e54
提交
ea9e3e54
authored
11月 13, 2014
作者:
Frédéric Bastien
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #2250 from daemonmaker/cudnn
Implemented grad for cudnn softmax.
上级
c416c5eb
15826072
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
225 行增加
和
42 行删除
+225
-42
dnn.py
theano/sandbox/cuda/dnn.py
+142
-37
test_nnet.py
theano/sandbox/cuda/tests/test_nnet.py
+83
-5
没有找到文件。
theano/sandbox/cuda/dnn.py
浏览文件 @
ea9e3e54
...
@@ -5,11 +5,12 @@ from theano import Apply, gof, tensor
...
@@ -5,11 +5,12 @@ from theano import Apply, gof, tensor
from
theano.gof
import
Optimizer
from
theano.gof
import
Optimizer
from
theano.gof.type
import
CDataType
from
theano.gof.type
import
CDataType
from
theano.compat
import
PY3
from
theano.compat
import
PY3
from
theano.tensor.nnet
import
SoftmaxGrad
from
theano.sandbox.cuda.type
import
CudaNdarrayType
from
theano.sandbox.cuda.type
import
CudaNdarrayType
from
theano.sandbox.cuda
import
(
GpuOp
,
cuda_available
,
active_device_number
,
from
theano.sandbox.cuda
import
(
GpuOp
,
cuda_available
,
active_device_number
,
device_properties
)
device_properties
)
from
theano.sandbox.cuda.basic_ops
import
(
as_cuda_ndarray_variable
,
from
theano.sandbox.cuda.basic_ops
import
(
as_cuda_ndarray_variable
,
gpu_contiguous
)
gpu_contiguous
,
HostFromGpu
)
from
theano.sandbox.cuda.blas
import
(
GpuConv
,
GpuDownsampleFactorMax
,
from
theano.sandbox.cuda.blas
import
(
GpuConv
,
GpuDownsampleFactorMax
,
GpuDownsampleFactorMaxGrad
)
GpuDownsampleFactorMaxGrad
)
from
theano.sandbox.cuda.nnet
import
GpuSoftmax
from
theano.sandbox.cuda.nnet
import
GpuSoftmax
...
@@ -849,7 +850,7 @@ def dnn_pool(img, ws, stride=(1, 1), mode='max'):
...
@@ -849,7 +850,7 @@ def dnn_pool(img, ws, stride=(1, 1), mode='max'):
return
GpuDnnPool
()(
img
,
desc
)
return
GpuDnnPool
()(
img
,
desc
)
class
GpuDnnSoftmax
(
DnnBase
):
class
GpuDnnSoftmax
Base
(
DnnBase
):
"""
"""
Op for the cuDNN Softmax.
Op for the cuDNN Softmax.
...
@@ -873,46 +874,54 @@ class GpuDnnSoftmax(DnnBase):
...
@@ -873,46 +874,54 @@ class GpuDnnSoftmax(DnnBase):
assert
(
mode
in
(
'instance'
,
'channel'
))
assert
(
mode
in
(
'instance'
,
'channel'
))
self
.
mode
=
mode
self
.
mode
=
mode
def
make_node
(
self
,
x
):
self
.
tensor_4d_descs
=
[
softmax_input
x
=
as_cuda_ndarray_variable
(
x
)
for
softmax_input
in
self
.
softmax_inputs
]
assert
x
.
ndim
==
4
self
.
tensor_4d_descs
.
append
(
'softmax_output'
)
return
Apply
(
self
,
[
x
],
[
x
.
type
()])
def
c_support_code_struct
(
self
,
node
,
struct_
id
):
def
_define_tensor4d_desc
(
self
,
name
,
id
):
return
"""
return
"""
cudnnTensor4dDescriptor_t softmax_input_
%(id)
d;
cudnnTensor4dDescriptor_t
%(name)
s_
%(id)
d;
cudnnTensor4dDescriptor_t softmax_output_
%(id)
d;
"""
%
dict
(
name
=
name
,
id
=
id
)
"""
%
dict
(
id
=
struct_id
)
def
c_init_code_struct
(
self
,
node
,
struct_id
,
sub
):
def
_init_tensor4d_desc
(
self
,
name
,
id
,
fail
):
return
"""
return
"""
softmax_input_
%(id)
d = NULL;
%(name)
s_
%(id)
d = NULL;
softmax_output_
%(id)
d = NULL;
if ((err
%(id)
d = cudnnCreateTensor4dDescriptor(&
%(name)
s_
%(id)
d)) != CUDNN_STATUS_SUCCESS) {
cudnnStatus_t err
%(id)
d;
if ((err
%(id)
d = cudnnCreateTensor4dDescriptor(&softmax_input_
%(id)
d)) != CUDNN_STATUS_SUCCESS) {
PyErr_Format(PyExc_MemoryError, "could not allocate tensor4d descriptor "
PyErr_Format(PyExc_MemoryError, "could not allocate tensor4d descriptor "
"(inp):
%%
s", cudnnGetErrorString(err
%(id)
d));
":
%%
s", cudnnGetErrorString(err
%(id)
d));
%(fail)
s
}
if ((err
%(id)
d = cudnnCreateTensor4dDescriptor(&softmax_output_
%(id)
d)) != CUDNN_STATUS_SUCCESS) {
PyErr_Format(PyExc_MemoryError, "could not allocate tensor4d descriptor "
"(out):
%%
s", cudnnGetErrorString(err
%(id)
d));
%(fail)
s
%(fail)
s
}
}
"""
%
dict
(
id
=
struct_id
,
fail
=
sub
[
'fail'
]
)
"""
%
dict
(
name
=
name
,
id
=
id
,
fail
=
fail
)
def
c_cleanup_code_struct
(
self
,
node
,
struct_
id
):
def
_clean_tensor4d_desc
(
self
,
name
,
id
):
return
"""
return
"""
if(softmax_input_
%(id)
d != NULL)
if(
%(name)
s_
%(id)
d!= NULL)
cudnnDestroyTensor4dDescriptor(softmax_input_
%(id)
d);
cudnnDestroyTensor4dDescriptor(
%(name)
s_
%(id)
d);
"""
%
dict
(
name
=
name
,
id
=
id
)
def
c_support_code_struct
(
self
,
node
,
struct_id
):
result
=
''
for
name
in
self
.
tensor_4d_descs
:
result
+=
self
.
_define_tensor4d_desc
(
name
,
struct_id
)
return
result
if(softmax_output_
%(id)
d != NULL)
def
c_init_code_struct
(
self
,
node
,
struct_id
,
sub
):
cudnnDestroyTensor4dDescriptor(softmax_output_
%(id)
d);
result
=
"""
cudnnStatus_t err
%(id)
d;
"""
%
dict
(
id
=
struct_id
)
"""
%
dict
(
id
=
struct_id
)
for
name
in
self
.
tensor_4d_descs
:
result
+=
self
.
_init_tensor4d_desc
(
name
,
struct_id
,
sub
[
'fail'
])
return
result
def
c_cleanup_code_struct
(
self
,
node
,
struct_id
):
result
=
''
for
name
in
self
.
tensor_4d_descs
:
result
+=
self
.
_clean_tensor4d_desc
(
name
,
struct_id
)
return
result
def
c_code
(
self
,
node
,
name
,
inputs
,
outputs
,
sub
):
def
c_code
(
self
,
node
,
name
,
inputs
,
outputs
,
sub
):
ins
,
=
inputs
ins
=
inputs
outs
,
=
outputs
outs
,
=
outputs
if
self
.
tensor_format
==
'b01c'
:
if
self
.
tensor_format
==
'b01c'
:
...
@@ -930,7 +939,8 @@ if(softmax_output_%(id)d != NULL)
...
@@ -930,7 +939,8 @@ if(softmax_output_%(id)d != NULL)
else
:
else
:
algo
=
0
algo
=
0
return
"""
# Setup configuration variables.
result
=
"""
cudnnStatus_t err
%(name)
s;
cudnnStatus_t err
%(name)
s;
cudnnTensorFormat_t format
%(id)
d = CUDNN_TENSOR_NCHW;
cudnnTensorFormat_t format
%(id)
d = CUDNN_TENSOR_NCHW;
if (
%(tensor_format)
d == 1)
if (
%(tensor_format)
d == 1)
...
@@ -943,14 +953,19 @@ if (%(algo)d == 1)
...
@@ -943,14 +953,19 @@ if (%(algo)d == 1)
cudnnSoftmaxMode_t mode
%(id)
d = CUDNN_SOFTMAX_MODE_CHANNEL;
cudnnSoftmaxMode_t mode
%(id)
d = CUDNN_SOFTMAX_MODE_CHANNEL;
if (
%(mode)
d == 1)
if (
%(mode)
d == 1)
mode
%(id)
d = CUDNN_SOFTMAX_MODE_INSTANCE;
mode
%(id)
d = CUDNN_SOFTMAX_MODE_INSTANCE;
"""
%
dict
(
id
=
sub
[
'struct_id'
],
name
=
name
,
tensor_format
=
tensor_format
,
mode
=
mode
,
algo
=
algo
)
# Validate the input and build the input variables.
for
input_idx
,
input_name
in
enumerate
(
self
.
softmax_inputs
):
result
+=
"""
if (!CudaNdarray_is_c_contiguous(
%(ins)
s)) {
if (!CudaNdarray_is_c_contiguous(
%(ins)
s)) {
PyErr_SetString(PyExc_ValueError, "Only contiguous inputs are supported.");
PyErr_SetString(PyExc_ValueError, "Only contiguous inputs are supported.");
%(fail)
s
%(fail)
s
}
}
err
%(name)
s = cudnnSetTensor4dDescriptor(
err
%(name)
s = cudnnSetTensor4dDescriptor(
softmax_input
_
%(id)
d,
%(input_name)
s
_
%(id)
d,
format
%(id)
d,
format
%(id)
d,
CUDNN_DATA_FLOAT,
CUDNN_DATA_FLOAT,
CudaNdarray_HOST_DIMS(
%(ins)
s)[0],
CudaNdarray_HOST_DIMS(
%(ins)
s)[0],
...
@@ -959,11 +974,15 @@ err%(name)s = cudnnSetTensor4dDescriptor(
...
@@ -959,11 +974,15 @@ err%(name)s = cudnnSetTensor4dDescriptor(
CudaNdarray_HOST_DIMS(
%(ins)
s)[3]
CudaNdarray_HOST_DIMS(
%(ins)
s)[3]
);
);
if (err
%(name)
s != CUDNN_STATUS_SUCCESS) {
if (err
%(name)
s != CUDNN_STATUS_SUCCESS) {
PyErr_Format(PyExc_RuntimeError, "could not set tensor4d descriptor:
%%
s",
PyErr_Format(PyExc_RuntimeError, "could not set tensor4d descriptor:
%%
%%
s",
cudnnGetErrorString(err
%(name)
s));
cudnnGetErrorString(err
%(name)
s));
%(fail)
s
%(fail)
s
}
}
"""
%
dict
(
id
=
sub
[
'struct_id'
],
name
=
name
,
input_name
=
input_name
,
ins
=
ins
[
input_idx
],
fail
=
sub
[
'fail'
])
# Build and prepare the output variable.
result
+=
"""
if (CudaNdarray_prep_output(&
%(outs)
s, 4, CudaNdarray_HOST_DIMS(
%(ins)
s)) != 0)
if (CudaNdarray_prep_output(&
%(outs)
s, 4, CudaNdarray_HOST_DIMS(
%(ins)
s)) != 0)
{
{
%(fail)
s
%(fail)
s
...
@@ -979,11 +998,41 @@ err%(name)s = cudnnSetTensor4dDescriptor(
...
@@ -979,11 +998,41 @@ err%(name)s = cudnnSetTensor4dDescriptor(
CudaNdarray_HOST_DIMS(
%(outs)
s)[3]
CudaNdarray_HOST_DIMS(
%(outs)
s)[3]
);
);
if (err
%(name)
s != CUDNN_STATUS_SUCCESS) {
if (err
%(name)
s != CUDNN_STATUS_SUCCESS) {
PyErr_Format(PyExc_RuntimeError, "could not set out descriptor:
%%
s",
PyErr_Format(PyExc_RuntimeError, "could not set out descriptor:
%%
%%
s",
cudnnGetErrorString(err
%(name)
s));
cudnnGetErrorString(err
%(name)
s));
%(fail)
s
%(fail)
s
}
}
"""
# Add on a call to the method that does the actual work.
result
+=
self
.
method
()
subs
=
dict
(
ins
=
ins
[
-
1
],
outs
=
outs
,
fail
=
sub
[
'fail'
],
id
=
sub
[
'struct_id'
],
name
=
name
)
for
idx
,
softmax_input
in
enumerate
(
self
.
softmax_inputs
):
subs
[
'name
%
d'
%
idx
]
=
softmax_input
subs
[
'ins
%
d'
%
idx
]
=
inputs
[
idx
]
return
result
%
subs
def
c_code_cache_version
(
self
):
return
(
0
,
6
)
def
method
(
self
):
raise
NotImplementedError
(
'GpuDnnSoftmaxBase::method'
)
class
GpuDnnSoftmax
(
GpuDnnSoftmaxBase
):
softmax_inputs
=
[
'softmax_input'
]
def
make_node
(
self
,
x
):
x
=
as_cuda_ndarray_variable
(
x
)
assert
x
.
ndim
==
4
return
Apply
(
self
,
[
x
],
[
x
.
type
()])
def
method
(
self
):
return
"""
err
%(name)
s = cudnnSoftmaxForward(
err
%(name)
s = cudnnSoftmaxForward(
_handle,
_handle,
algo
%(id)
d,
algo
%(id)
d,
...
@@ -993,11 +1042,43 @@ err%(name)s = cudnnSoftmaxForward(
...
@@ -993,11 +1042,43 @@ err%(name)s = cudnnSoftmaxForward(
softmax_output_
%(id)
d,
softmax_output_
%(id)
d,
CudaNdarray_DEV_DATA(
%(outs)
s)
CudaNdarray_DEV_DATA(
%(outs)
s)
);
);
"""
%
dict
(
ins
=
ins
,
outs
=
outs
,
tensor_format
=
tensor_format
,
mode
=
mode
,
"""
algo
=
algo
,
fail
=
sub
[
'fail'
],
id
=
sub
[
'struct_id'
],
name
=
name
)
def
c_code_cache_version
(
self
):
def
grad
(
self
,
inp
,
grads
):
return
(
0
,
3
)
x
,
=
inp
g_sm
,
=
grads
sm
=
self
.
make_node
(
x
)
.
outputs
[
0
]
return
[
GpuDnnSoftmaxGrad
(
self
.
tensor_format
,
self
.
algo
,
self
.
mode
)(
g_sm
,
sm
)]
class
GpuDnnSoftmaxGrad
(
GpuDnnSoftmaxBase
):
softmax_inputs
=
[
'softmax_gout'
,
'softmax_input'
]
def
make_node
(
self
,
dy
,
sm
):
dy
=
as_cuda_ndarray_variable
(
dy
)
sm
=
as_cuda_ndarray_variable
(
sm
)
assert
dy
.
ndim
==
4
assert
sm
.
ndim
==
4
return
Apply
(
self
,
[
dy
,
sm
],
[
sm
.
type
.
make_variable
()])
def
method
(
self
):
return
"""
err
%(name)
s = cudnnSoftmaxBackward(
_handle,
algo
%(id)
d,
mode
%(id)
d,
%(name1)
s_
%(id)
d,
CudaNdarray_DEV_DATA(
%(ins1)
s),
%(name0)
s_
%(id)
d,
CudaNdarray_DEV_DATA(
%(ins0)
s),
softmax_output_
%(id)
d,
CudaNdarray_DEV_DATA(
%(outs)
s)
);
"""
# We need this since other stuff from opt is not importable.
# We need this since other stuff from opt is not importable.
...
@@ -1072,3 +1153,27 @@ if cuda_available:
...
@@ -1072,3 +1153,27 @@ if cuda_available:
" to use it. We got this error:
\n
"
+
" to use it. We got this error:
\n
"
+
dnn_available
.
msg
)
dnn_available
.
msg
)
gpu_seqopt
.
register
(
"NoCuDNNRaise"
,
NoCuDNNRaise
(),
0
,
'cudnn'
)
gpu_seqopt
.
register
(
"NoCuDNNRaise"
,
NoCuDNNRaise
(),
0
,
'cudnn'
)
@register_opt
(
'cudnn'
)
@local_optimizer
([
SoftmaxGrad
])
def
local_softmax_dnn_grad
(
node
):
if
(
isinstance
(
node
.
op
,
SoftmaxGrad
)
and
(
isinstance
(
node
.
inputs
[
0
]
.
owner
.
op
,
HostFromGpu
)
or
isinstance
(
node
.
inputs
[
1
]
.
owner
.
op
,
HostFromGpu
))
):
ins
=
[]
for
n
in
node
.
inputs
:
if
isinstance
(
n
.
owner
.
op
,
HostFromGpu
):
n
=
n
.
owner
.
inputs
[
0
]
ins
.
append
(
n
.
dimshuffle
(
0
,
1
,
'x'
,
'x'
))
out
=
GpuDnnSoftmaxGrad
(
'bc01'
,
'accurate'
,
'channel'
)(
gpu_contiguous
(
ins
[
0
]),
gpu_contiguous
(
ins
[
1
])
)
return
[
out
.
dimshuffle
(
0
,
1
)]
theano/sandbox/cuda/tests/test_nnet.py
浏览文件 @
ea9e3e54
...
@@ -276,7 +276,7 @@ class test_SoftMax(unittest.TestCase):
...
@@ -276,7 +276,7 @@ class test_SoftMax(unittest.TestCase):
x
=
T
.
fmatrix
(
'x'
)
x
=
T
.
fmatrix
(
'x'
)
z
=
T
.
nnet
.
softmax
z
=
T
.
nnet
.
softmax
def
check_types
(
graph
,
graph_gpu
):
def
check_types
_without_cudnn
(
graph
,
graph_gpu
):
self
.
_check_types
(
self
.
_check_types
(
graph
,
graph
,
graph_gpu
,
graph_gpu
,
...
@@ -285,14 +285,15 @@ class test_SoftMax(unittest.TestCase):
...
@@ -285,14 +285,15 @@ class test_SoftMax(unittest.TestCase):
cuda
.
nnet
.
GpuSoftmax
cuda
.
nnet
.
GpuSoftmax
)
)
mode_wo_cudnn
=
mode_with_gpu
.
excluding
(
"cudnn"
)
f
,
f_gpu
=
self
.
_test_softmax
(
f
,
f_gpu
=
self
.
_test_softmax
(
x
,
x
,
x
,
x
,
z
,
z
,
z
,
z
,
self
.
_cmp
,
self
.
_cmp
,
mode_w
ith_gpu
,
mode_w
o_cudnn
,
check_types
check_types
_without_cudnn
)
)
# cuDNN R1 cannot handle these test cases but the Theano softmax can so
# cuDNN R1 cannot handle these test cases but the Theano softmax can so
...
@@ -300,6 +301,25 @@ class test_SoftMax(unittest.TestCase):
...
@@ -300,6 +301,25 @@ class test_SoftMax(unittest.TestCase):
self
.
_cmp
(
2
<<
15
,
5
,
f
,
f_gpu
)
self
.
_cmp
(
2
<<
15
,
5
,
f
,
f_gpu
)
self
.
_cmp
(
0
,
10
,
f
,
f_gpu
)
self
.
_cmp
(
0
,
10
,
f
,
f_gpu
)
def
check_types_with_cudnn
(
graph
,
graph_gpu
):
self
.
_check_types
(
graph
,
graph_gpu
,
-
3
,
type
(
z
),
theano
.
sandbox
.
cuda
.
dnn
.
GpuDnnSoftmax
)
f
,
f_gpu
=
self
.
_test_softmax
(
x
,
x
,
z
,
z
,
self
.
_cmp
,
mode_with_gpu
,
check_types_with_cudnn
)
def
test_cudnn_softmax
(
self
):
def
test_cudnn_softmax
(
self
):
if
not
cuda
.
dnn
.
dnn_available
():
if
not
cuda
.
dnn
.
dnn_available
():
raise
SkipTest
(
cuda
.
dnn
.
dnn_available
.
msg
)
raise
SkipTest
(
cuda
.
dnn
.
dnn_available
.
msg
)
...
@@ -320,6 +340,14 @@ class test_SoftMax(unittest.TestCase):
...
@@ -320,6 +340,14 @@ class test_SoftMax(unittest.TestCase):
'channel'
'channel'
)
)
# Verify the grad operation
dims
=
(
2
,
3
,
4
,
5
)
gdata
=
numpy
.
arange
(
numpy
.
product
(
dims
),
dtype
=
'float32'
)
.
reshape
(
dims
)
T
.
verify_grad
(
f_gpu
,
[
gdata
],
rng
=
numpy
.
random
)
def
check_types
(
graph
,
graph_gpu
):
def
check_types
(
graph
,
graph_gpu
):
self
.
_check_types
(
self
.
_check_types
(
graph
,
graph
,
...
@@ -337,6 +365,8 @@ class test_SoftMax(unittest.TestCase):
...
@@ -337,6 +365,8 @@ class test_SoftMax(unittest.TestCase):
theano
.
sandbox
.
cuda
.
dnn
.
GpuDnnSoftmax
theano
.
sandbox
.
cuda
.
dnn
.
GpuDnnSoftmax
)])
==
1
)])
==
1
# Verify that the CPU and GPU implementations return the same results
# up to a tolerance.
self
.
_test_softmax
(
self
.
_test_softmax
(
x
,
x
,
x_gpu
,
x_gpu
,
...
@@ -347,5 +377,53 @@ class test_SoftMax(unittest.TestCase):
...
@@ -347,5 +377,53 @@ class test_SoftMax(unittest.TestCase):
check_types
check_types
)
)
mode
=
mode_with_gpu
.
including
(
"cudnn"
)
mode_w_cudnn
=
mode_with_gpu
.
including
(
"cudnn"
)
self
.
_test_softmax
(
x
,
x
,
f_z
,
f_z
,
self
.
_cmp
,
mode
,
check_types_opt
)
self
.
_test_softmax
(
x
,
x
,
f_z
,
f_z
,
self
.
_cmp
,
mode_w_cudnn
,
check_types_opt
)
# Verify that the SoftmaxGrad -> GpuDnnSoftmaxGrad optimization is
# applied when cudnn is required
y
=
T
.
fvector
(
'y'
)
f
=
theano
.
function
(
[
y
],
T
.
grad
(
T
.
nnet
.
softmax
(
y
)
.
mean
(),
y
),
mode
=
mode_with_gpu
)
sorted_f
=
f
.
maker
.
fgraph
.
toposort
()
assert
(
len
([
i
for
i
in
sorted_f
if
isinstance
(
i
.
op
,
theano
.
sandbox
.
cuda
.
dnn
.
GpuDnnSoftmaxGrad
)])
==
1
)
assert
(
len
([
i
for
i
in
sorted_f
if
isinstance
(
i
.
op
,
theano
.
tensor
.
nnet
.
SoftmaxGrad
)])
==
0
)
# Verify that the SoftmaxGrad -> GpuDnnSoftmaxGrad optimization is not
# applied when cudnn is excluded or not available
mode_wo_cudnn
=
mode_with_gpu
.
excluding
(
"cudnn"
)
y
=
T
.
vector
(
'y'
)
f
=
theano
.
function
(
[
y
],
T
.
grad
(
T
.
nnet
.
softmax
(
y
)
.
mean
(),
y
),
mode
=
mode_wo_cudnn
)
sorted_f
=
f
.
maker
.
fgraph
.
toposort
()
assert
(
len
([
i
for
i
in
sorted_f
if
isinstance
(
i
.
op
,
theano
.
sandbox
.
cuda
.
dnn
.
GpuDnnSoftmaxGrad
)])
==
0
)
assert
(
len
([
i
for
i
in
sorted_f
if
isinstance
(
i
.
op
,
theano
.
tensor
.
nnet
.
SoftmaxGrad
)])
==
1
)
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论