File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
source/source_base/module_container Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ struct lapack_hegvd {
105105 * @note
106106 * See LAPACK ZHEGVD or CHEGVD documentation for more details.
107107 * This function assumes that A and B have the same leading dimensions, lda.
108+ * This function copies B to auxiliary memory to avoid being overwritten.
108109 */
109110 void operator ()(
110111 const int n,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ endif()
2121
2222add_library (container STATIC ${ATen_CPU_SRCS} ${ATen_CUDA_SRCS} )
2323
24- target_link_libraries (container PUBLIC
24+ target_link_libraries (container PUBLIC
2525 ${ATen_CPU_DEPENDENCY_LIBS} ${ATen_CUDA_DEPENDENCY_LIBS} ${ATen_ROCM_DEPENDENCY_LIBS} )
2626
2727if (ENABLE_COVERAGE)
@@ -31,5 +31,6 @@ endif()
3131if (BUILD_TESTING)
3232 if (ENABLE_MPI)
3333 add_subdirectory (test )
34+ add_subdirectory (ATen/kernels/test )
3435 endif ()
3536endif ()
You can’t perform that action at this time.
0 commit comments