diff --git a/apps/rocm_rpc/Makefile b/apps/rocm_rpc/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..b4e5279809411d271933969cc6d7181e43a002de
--- /dev/null
+++ b/apps/rocm_rpc/Makefile
@@ -0,0 +1,23 @@
+# Makefile Example to deploy TVM modules.
+ROCM_PATH=/opt/rocm
+
+TVM_ROOT=$(shell cd ../..; pwd)
+NNVM_PATH=nnvm
+DMLC_CORE=${TVM_ROOT}/dmlc-core
+
+PKG_CFLAGS = -std=c++11 -O2 -fPIC\
+	-I${TVM_ROOT}/include\
+	-I${DMLC_CORE}/include\
+	-I${TVM_ROOT}/dlpack/include\
+	-I${ROCM_PATH}/include
+
+PKG_LDFLAGS = -L${ROCM_PATH}/lib -L${TVM_ROOT}/lib -ldl -lpthread -lhip_hcc -lMIOpen
+
+.PHONY: clean all
+
+all: lib/libtvm_runtime_rocm.so
+
+# Build rule for all in one TVM package library
+lib/libtvm_runtime_rocm.so: rocm_runtime_pack.cc
+	@mkdir -p $(@D)
+	$(CXX) $(PKG_CFLAGS) -shared -o $@ $(filter %.cc %.o %.a, $^) $(PKG_LDFLAGS)
diff --git a/apps/rocm_rpc/README.md b/apps/rocm_rpc/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..d4ebc1334975abd5899f19f18edab68419b0f990
--- /dev/null
+++ b/apps/rocm_rpc/README.md
@@ -0,0 +1,41 @@
+# TVM ROCm RPC
+
+This folder contains a simple recipe to make RPC work together with ROCm.TVM's RPC server relies on process
+fork to create a new process for each incoming session.
+Like CUDA, opencl driver, the runtime ROCm runtime is not fork-safe.
+A typical CUDA or opencl driver will initialize lazily
+and we can use normal TVM RPC server because we won't touch the driver API before we fork a new session.
+However, the current ROCm runtime eagerly initialize during startup and will directly cause error during fork.
+This folder provides a workaround to this problem.
+
+## Usage
+- Build tvm **without** rocm (it is important to exclude rocm from runtime)
+- Modify the ROCM_PATH to be the correct path the current [Makefile](Makefile)
+- Type make to build lib/libtvm_runtime_rocm.so, which is a standalone dll module
+- Use [start_rpc_server.sh](start_rpc_server.sh) to start the RPC server
+
+## How it works
+- The RPC server starts without ROCm dependency.
+- lib/libtvm_runtim_rocm.so is dynamically loaded only after the fork.
+
+## Note
+With ROCm RPC, we can build AMDGPU program from a machine without AMD GPU
+and remotely upload and execute on a AMDGPU machine.
+Please note that you will need to set the gfx version correctly(via ```-model```` or ```-mcpu```)
+because we can no longer query the GPU version dynamically during runtime.
+
+
+```python
+import tvm
+from tvm.contrib import rpc
+
+# set mcpu explicitly to be the gpu version.
+target = "rocm -mcpu=gfx900"
+remote = rpc.connect(server_host, server_port)
+mod = tvm.build(s, args, target)
+mod.export_library("mylib.so")
+
+remote.upload("mylib.so")
+foo = remote.load_module("mylib.so")
+# same as normal RPC
+```
diff --git a/apps/rocm_rpc/rocm_runtime_pack.cc b/apps/rocm_rpc/rocm_runtime_pack.cc
new file mode 100644
index 0000000000000000000000000000000000000000..174d9f0a82706930f15136227cc350f044dd67de
--- /dev/null
+++ b/apps/rocm_rpc/rocm_runtime_pack.cc
@@ -0,0 +1,15 @@
+/*!
+ * \brief This is an all in one file for ROCM runtime library.
+ *
+ * This is used to create a RPC module library that can be
+ * safely passed to rocm
+ */
+
+#define TVM_ROCM_RUNTIME 1
+#define TVM_USE_MIOPEN 1
+#define __HIP_PLATFORM_HCC__ 1
+
+#include "../../src/runtime/rocm/rocm_device_api.cc"
+#include "../../src/runtime/rocm/rocm_module.cc"
+#include "../../src/contrib/miopen/conv_forward.cc"
+#include "../../src/contrib/miopen/miopen_utils.cc"
diff --git a/apps/rocm_rpc/start_rpc_server.sh b/apps/rocm_rpc/start_rpc_server.sh
new file mode 100755
index 0000000000000000000000000000000000000000..e082d9d63ee6d50c38eb8db207269a869703c81d
--- /dev/null
+++ b/apps/rocm_rpc/start_rpc_server.sh
@@ -0,0 +1,5 @@
+#/bin/bash
+PROJ_ROOT=$(realpath $(dirname "$0")/../..)
+export PYTHONPATH=${PROJ_ROOT}/python:${PYTHONPATH}
+
+python -m tvm.exec.rpc_server "$@" --load-library=${PROJ_ROOT}/apps/rocm_rpc/lib/libtvm_runtime_rocm.so
diff --git a/python/tvm/exec/rpc_server.py b/python/tvm/exec/rpc_server.py
index 84bad0f5422e2efabab675ac63ba860574d98f4c..46e7877a28031679a559bb3897f72b267bdb5c5f 100644
--- a/python/tvm/exec/rpc_server.py
+++ b/python/tvm/exec/rpc_server.py
@@ -2,6 +2,7 @@
 from __future__ import absolute_import
 
 import argparse
+import logging
 from ..contrib import rpc
 
 def main():
@@ -31,6 +32,7 @@ def main():
     else:
         tracker_addr = None
 
+    logging.basicConfig(level=logging.INFO)
     server = rpc.Server(args.host,
                         args.port,
                         args.port_end,