Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
018e5318
Unverified
Commit
018e5318
authored
Mar 24, 2023
by
Umang Yadav
Committed by
GitHub
Mar 24, 2023
Browse files
remove /opt/rocm (#1623)
Co-authored-by:
Chris Austen
<
causten@users.noreply.github.com
>
parent
6c8b978d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
examples/migraphx/cpp_parse_load_save/CMakeLists.txt
examples/migraphx/cpp_parse_load_save/CMakeLists.txt
+1
-1
examples/migraphx/custom_op_miopen_kernel/CMakeLists.txt
examples/migraphx/custom_op_miopen_kernel/CMakeLists.txt
+1
-1
examples/migraphx/custom_op_rocblas_kernel/CMakeLists.txt
examples/migraphx/custom_op_rocblas_kernel/CMakeLists.txt
+1
-1
examples/vision/cpp_mnist/CMakeLists.txt
examples/vision/cpp_mnist/CMakeLists.txt
+1
-1
src/targets/gpu/CMakeLists.txt
src/targets/gpu/CMakeLists.txt
+1
-1
No files found.
examples/migraphx/cpp_parse_load_save/CMakeLists.txt
View file @
018e5318
...
@@ -27,7 +27,7 @@ project (PLS)
...
@@ -27,7 +27,7 @@ project (PLS)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
EXAMPLE parse_load_save
)
set
(
EXAMPLE parse_load_save
)
list
(
APPEND CMAKE_PREFIX_PATH
/opt/rocm/hip
/opt/rocm
)
list
(
APPEND CMAKE_PREFIX_PATH /opt/rocm
)
find_package
(
migraphx
)
find_package
(
migraphx
)
message
(
"source file: "
${
EXAMPLE
}
.cpp
" ---> bin: "
${
EXAMPLE
}
)
message
(
"source file: "
${
EXAMPLE
}
.cpp
" ---> bin: "
${
EXAMPLE
}
)
...
...
examples/migraphx/custom_op_miopen_kernel/CMakeLists.txt
View file @
018e5318
...
@@ -27,7 +27,7 @@ project (custom_miopen_kernel)
...
@@ -27,7 +27,7 @@ project (custom_miopen_kernel)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
EXAMPLE custom_op_miopen_kernel
)
set
(
EXAMPLE custom_op_miopen_kernel
)
list
(
APPEND CMAKE_PREFIX_PATH
/opt/rocm/hip
/opt/rocm
)
list
(
APPEND CMAKE_PREFIX_PATH /opt/rocm
)
find_package
(
migraphx REQUIRED
)
find_package
(
migraphx REQUIRED
)
find_package
(
miopen REQUIRED
)
find_package
(
miopen REQUIRED
)
...
...
examples/migraphx/custom_op_rocblas_kernel/CMakeLists.txt
View file @
018e5318
...
@@ -28,7 +28,7 @@ set (CMAKE_CXX_STANDARD 14)
...
@@ -28,7 +28,7 @@ set (CMAKE_CXX_STANDARD 14)
set
(
EXAMPLE custom_op_rocblas_kernel
)
set
(
EXAMPLE custom_op_rocblas_kernel
)
list
(
APPEND CMAKE_PREFIX_PATH
/opt/rocm/hip
/opt/rocm
)
list
(
APPEND CMAKE_PREFIX_PATH /opt/rocm
)
find_package
(
migraphx REQUIRED
)
find_package
(
migraphx REQUIRED
)
find_package
(
rocblas REQUIRED
)
find_package
(
rocblas REQUIRED
)
...
...
examples/vision/cpp_mnist/CMakeLists.txt
View file @
018e5318
...
@@ -27,7 +27,7 @@ project (CAI)
...
@@ -27,7 +27,7 @@ project (CAI)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
EXAMPLE mnist_inference
)
set
(
EXAMPLE mnist_inference
)
list
(
APPEND CMAKE_PREFIX_PATH
/opt/rocm/hip
/opt/rocm
)
list
(
APPEND CMAKE_PREFIX_PATH /opt/rocm
)
find_package
(
migraphx
)
find_package
(
migraphx
)
message
(
"source file: "
${
EXAMPLE
}
.cpp
" ---> bin: "
${
EXAMPLE
}
)
message
(
"source file: "
${
EXAMPLE
}
.cpp
" ---> bin: "
${
EXAMPLE
}
)
...
...
src/targets/gpu/CMakeLists.txt
View file @
018e5318
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
# THE SOFTWARE.
# THE SOFTWARE.
# ####################################################################################
# ####################################################################################
list
(
APPEND CMAKE_PREFIX_PATH /opt/rocm
/opt/rocm/hip
)
list
(
APPEND CMAKE_PREFIX_PATH /opt/rocm
)
find_package
(
miopen
)
find_package
(
miopen
)
# rocblas
# rocblas
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment