From f80f083d96b165f91f9c55b10fb5638cba0711d7 Mon Sep 17 00:00:00 2001 From: Jing Zhang Date: Wed, 22 Jul 2020 21:48:10 +0000 Subject: [PATCH] set back hybrid to default --- doc/src/find_and_immediate.md | 6 +++--- src/include/miopen/find_controls.hpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/src/find_and_immediate.md b/doc/src/find_and_immediate.md index 51ae1ce5a5..4efaa3b04b 100644 --- a/doc/src/find_and_immediate.md +++ b/doc/src/find_and_immediate.md @@ -166,10 +166,10 @@ MIOpen provides a set of Find modes which are used to accelerate the Find calls. - `NORMAL`, or `1`: Normal Find: This is the full Find mode call, which will benchmark all the solvers and return a list. - `FAST`, or `2`: Fast Find: Checks the [Find-Db](https://rocmsoftwareplatform.github.io/MIOpen/doc/html/finddb.html) for an entry. If there is a Find-Db hit, use that entry. If there is a miss, utilize the Immediate mode fallback. If Start-up times are expected to be faster, but worse GPU performance. -- `HYBRID`, or `3`: Hybrid Find: Checks the [Find-Db](https://rocmsoftwareplatform.github.io/MIOpen/doc/html/finddb.html) for an entry. If there is a Find-Db hit, use that entry. If there is a miss, use the existing Find machinery. Slower start-up times than Fast Find, but no GPU performance drop. -- `OPTIMIZED_HYBRID`, or `4`, or unset `MIOPEN_FIND_MODE`: Optimized hybrid Find: Checks the [Find-Db](https://rocmsoftwareplatform.github.io/MIOpen/doc/html/finddb.html) for an entry. If there is a Find-Db hit, use that entry. If there is a miss, use the existing Find machinery with skipping slow-compiling kernels. Faster start-up times than Hybrid Find, may have GPU performance drop. +- `HYBRID`, or `3`, or unset `MIOPEN_FIND_MODE`: Hybrid Find: Checks the [Find-Db](https://rocmsoftwareplatform.github.io/MIOpen/doc/html/finddb.html) for an entry. If there is a Find-Db hit, use that entry. If there is a miss, use the existing Find machinery. Slower start-up times than Fast Find, but no GPU performance drop. +- `OPTIMIZED_HYBRID`, or `4`: Optimized hybrid Find: Checks the [Find-Db](https://rocmsoftwareplatform.github.io/MIOpen/doc/html/finddb.html) for an entry. If there is a Find-Db hit, use that entry. If there is a miss, use the existing Find machinery with skipping slow-compiling kernels. Faster start-up times than Hybrid Find, but no GPU performance drop. - As of MIOpen 2.7, the default mode is set to `OPTIMIZED_HYBRID` mode as default. To run the full `NORMAL` Find mode, set the environment as: + As of MIOpen 2.7, the default mode is set to `HYBRID` mode as default. To run the full `NORMAL` Find mode, set the environment as: ``` export MIOPEN_FIND_MODE=NORMAL ``` diff --git a/src/include/miopen/find_controls.hpp b/src/include/miopen/find_controls.hpp index 4b199bdc71..9dda30dcf3 100644 --- a/src/include/miopen/find_controls.hpp +++ b/src/include/miopen/find_controls.hpp @@ -130,7 +130,7 @@ class FindMode Hybrid, OptimizedHybrid, End_, - Default_ = OptimizedHybrid, + Default_ = Hybrid, }; private: