File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
0.6b
2
2
manylinux_2_17
3
- rocm6
3
+ rocm6.2
4
4
04b5df8c8123f90cba3ede7e971e6fbc6040d506
5
- 3db6ecbc915893ff967abd6e1b43bd5f54949868873be60dc802086c3863e648
5
+ e4ab195d2bd19e939c675a13280c29714c6ef9f2cf420690da150fa0cac043b1
Original file line number Diff line number Diff line change @@ -54,14 +54,15 @@ set(CMAKE_C_STANDARD
54
54
# ---[ Utils
55
55
include (cmake/public /utils.cmake)
56
56
57
- # --- [ Check that minimal gcc version is 9.3 +
58
- if (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.3 )
57
+ # --- [ Check that minimal gcc version is 9.2 +
58
+ if (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.2 )
59
59
message (
60
60
FATAL_ERROR
61
- "GCC-9.3 or newer is required to compile PyTorch, but found ${CMAKE_CXX_COMPILER_VERSION} "
61
+ "GCC-9.2 or newer is required to compile PyTorch, but found ${CMAKE_CXX_COMPILER_VERSION} "
62
62
)
63
63
endif ()
64
64
65
+
65
66
# This define is needed to preserve behavior given anticpated changes to
66
67
# cccl/thrust
67
68
# https://nvidia.github.io/libcudacxx/standard_api/numerics_library/complex.html
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ if(NOT __AOTRITON_INCLUDED)
22
22
-DAOTRITON_COMPRESS_KERNEL=OFF
23
23
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
24
24
-DAOTRITON_NO_PYTHON=ON
25
- -DAOTRITON_NO_SHARED=ON
25
+ -DAOTRITON_NO_SHARED=OFF
26
26
# CONFIGURE_COMMAND ""
27
27
BUILD_COMMAND "" # No build, install command will repeat the build process due to problems in the build system.
28
- BUILD_BYPRODUCTS "${__AOTRITON_INSTALL_DIR} /lib/libaotriton_v2.a "
28
+ BUILD_BYPRODUCTS "${__AOTRITON_INSTALL_DIR} /lib/libaotriton_v2.so "
29
29
USES_TERMINAL_DOWNLOAD TRUE
30
30
USES_TERMINAL_CONFIGURE TRUE
31
31
USES_TERMINAL_BUILD TRUE
@@ -35,7 +35,7 @@ if(NOT __AOTRITON_INCLUDED)
35
35
add_dependencies (__caffe2_aotriton aotriton_external)
36
36
message (STATUS "Using AOTriton compiled from source directory ${__AOTRITON_SOURCE_DIR} " )
37
37
endif ()
38
- target_link_libraries (__caffe2_aotriton INTERFACE ${__AOTRITON_INSTALL_DIR} /lib/libaotriton_v2.a )
38
+ target_link_libraries (__caffe2_aotriton INTERFACE ${__AOTRITON_INSTALL_DIR} /lib/libaotriton_v2.so )
39
39
target_include_directories (__caffe2_aotriton INTERFACE ${__AOTRITON_INSTALL_DIR} /include )
40
40
set (AOTRITON_FOUND TRUE )
41
41
endif () # __AOTRITON_INCLUDED
You can’t perform that action at this time.
0 commit comments