Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

MIOpen Legacy Plugin

A plugin wrapping MIOpen in order to provide engines to solve some hipDNN graphs.

Building

This plugin can be built as part of the MIOpen project or as a standalone plugin.

Building as part of hipDNN

  1. Follow the build instructions for hipDNN defined Building hipDNN.
  2. Currently the plugin build is defaulted to off. Eventually it wont be a hipdnn build option.
  • To enable the plugin build as part of hipdnn, set HIP_DNN_BUILD_PLUGINS=ON in the CMake configuration. cmake -DHIP_DNN_BUILD_PLUGINS=ON ..

Building as a standalone plugin

In order to build the plugin standalone, you will need to have installed hipDNN and MIOpen on the system first.

  1. navigate to the plugins/miopen_legacy_plugin directory.
  2. make a build directory, mkdir build && cd build.
  3. run cmake -DCMAKE_CXX_COMPILER=<path to amdclang>/clang++ .. to configure the build.
  4. run ninja to build the plugin.