Skip to content

Commit 741fb69

Browse files
committed
Resolve merge conflicts from downstream
2 parents 73f784f + 6d82d17 commit 741fb69

8 files changed

Lines changed: 13 additions & 8 deletions

File tree

CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,12 @@ file(MAKE_DIRECTORY ${BASE_INC_PATH})
794794
set (BLIS1_TARGET_PATH "${CMAKE_SOURCE_DIR}/${BASE_INC_PATH}/blis1.h")
795795
set (BLIS1__H_SRC_PATH "${CMAKE_SOURCE_DIR}/src/base/flamec/blis/include/blis1.h" )
796796
set (BLIS_FLATTEN_HEADER "${CMAKE_SOURCE_DIR}/build/flatten-headers.py")
797-
set (PYTHON_EXE "python")
797+
798+
if(WIN32)
799+
set (PYTHON_EXE "python")
800+
else()
801+
set (PYTHON_EXE "python3")
802+
endif()
798803

799804
execute_process(
800805
COMMAND ${PYTHON_EXE} ${BLIS_FLATTEN_HEADER} "${C_COMMENT}" "${VERBOSE}"

build/flatten-headers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
#
33
# BLIS
44
# An object-based framework for developing high-performance BLAS-like

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6158,7 +6158,7 @@ $as_echo_n "checking for (guessing) appropriate ${CC_VENDOR} language flags... "
61586158
fla_c_lang_flags='-std=c99 -Wall -Wno-unused-function -Wno-error=implicit-function-declaration -Wno-parentheses -Wfatal-errors'
61596159
;;
61606160
clang)
6161-
fla_c_lang_flags='-Wall -Wno-unused-function -Wno-error=implicit-function-declaration -Wno-parentheses -Wfatal-errors'
6161+
fla_c_lang_flags='-Wall -Wno-unused-function -Wno-error=implicit-function-declaration -Wno-error=incompatible-function-pointer-types -Wno-parentheses -Wfatal-errors'
61626162
;;
61636163
icc)
61646164
fla_c_lang_flags='-std=c99'

src/aocl_dtl/etrace_decoder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python3
22

33
"""
44

src/map/lapack2flamec/f2c/c/clarrv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,4 +1227,4 @@ int clarrv_(integer *n, real *vl, real *vu, real *d__, real * l, real *pivmin, i
12271227
return 0;
12281228
/* End of CLARRV */
12291229
}
1230-
/* clarrv_ */
1230+
/* clarrv_ */

src/map/lapack2flamec/f2c/c/dlarrv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1169,4 +1169,4 @@ int dlarrv_(integer *n, doublereal *vl, doublereal *vu, doublereal *d__, doubler
11691169
return 0;
11701170
/* End of DLARRV */
11711171
}
1172-
/* dlarrv_ */
1172+
/* dlarrv_ */

src/map/lapack2flamec/f2c/c/slarrv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1164,4 +1164,4 @@ int slarrv_(integer *n, real *vl, real *vu, real *d__, real * l, real *pivmin, i
11641164
return 0;
11651165
/* End of SLARRV */
11661166
}
1167-
/* slarrv_ */
1167+
/* slarrv_ */

src/map/lapack2flamec/f2c/c/zlarrv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1220,4 +1220,4 @@ int zlarrv_(integer *n, doublereal *vl, doublereal *vu, doublereal *d__, doubler
12201220
return 0;
12211221
/* End of ZLARRV */
12221222
}
1223-
/* zlarrv_ */
1223+
/* zlarrv_ */

0 commit comments

Comments
 (0)