From 6b014b249619d953df4a86aa8b6394aafd4f0ec9 Mon Sep 17 00:00:00 2001 From: Chris Freehill Date: Wed, 8 Nov 2017 08:05:08 -0600 Subject: [PATCH] Add README.md Change-Id: I02b43a10f4f88a73c7e4e63221bec32d0d1d5bf6 --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000000..d8a9a579b5 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# rocminfo +ROCm Application for Reporting System Info + +## To Build +Use the standard cmake build procedure to build rocminfo. The location of ROCM root (parent directory containing ROCM headers and libraries) must be provided as a cmake argument. For example, building from the CMakeLists.txt directory might look like this: + +mkdir -p build + +cd build + +cmake -DROCM_DIR= .. + +make + +cd .. + + +Upon a successful build the binary, rocminfo, will be in the build folder. +