File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,12 @@ if(WITH_MKLDNN)
33
33
list (APPEND MKL_DEPENDS mkldnn)
34
34
endif ()
35
35
36
+ if (WITH_GPU)
37
+ SET (PACKAGE_NAME "paddlepaddle-gpu" )
38
+ else ()
39
+ SET (PACKAGE_NAME "paddlepaddle" )
40
+ endif ()
41
+
36
42
configure_file (${CMAKE_CURRENT_SOURCE_DIR} /setup.py.in
37
43
${CMAKE_CURRENT_BINARY_DIR} /setup.py)
38
44
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ class BinaryDistribution(Distribution):
5
5
return True
6
6
7
7
MAJOR = 0
8
- MINOR = 10
8
+ MINOR = 11
9
9
PATCH = 0
10
10
RC = 0
11
11
ISTAGED = False
@@ -89,7 +89,7 @@ paddle_rt_libs = ['${WARPCTC_LIBRARIES}']
89
89
if '${MKL_SHARED_LIBS}'!= '':
90
90
paddle_rt_libs += '${MKL_SHARED_LIBS}'.split(';')
91
91
92
- setup(name='paddlepaddle ',
92
+ setup(name='${PACKAGE_NAME} ',
93
93
version='${PADDLE_VERSION}',
94
94
description='Parallel Distributed Deep Learning',
95
95
install_requires=setup_requires,
You can’t perform that action at this time.
0 commit comments