Skip to content

Commit

Permalink
Creates DJL manual engine initialization (#2885)
Browse files Browse the repository at this point in the history
* Creates DJL manual engine initialization

fixes #2875
reverts #2876

This adds new support for DJL manual initialization of engines to support
`DJL_ENGINE_MANUAL_INIT`. Once done, no engines providers will be found or
loaded on startup. Instead, they can be added manually by:

```java
PtEngineProvider provider = new PtEngineProvider();
provider.getEngine(); // Optional, throws exception if the provider can not load
Engine.registerEngine(provider);
Engine.setDefaultEngine(provider.getEngineName()); // Optional, sets as default
```

* Revert "[tensorflow] Revert InstanceHolder for TensorFlow engine (#2884)"

This reverts commit 586bb07.

* Revert "[api] Replace double-check singlton with lazy initialization (#2826)"

This reverts commit 3927867.

* Make engines initialized

This makes several updates:
- engines will now initialize once per instance of EngineProvider rather than
re-attempt to initialize
- Registering an engine can overwrite the existing one
- All engines now use the synchronized form rather than the static instance
holder. This allows them to have multiple versions and be local to the instance
rather than global (but the instance is saved globally)

* Throws Exception on bad getEngine

* Removes unnecessary check
  • Loading branch information
zachgk authored Jan 9, 2024
1 parent 4b392f1 commit 6141c48
Show file tree
Hide file tree
Showing 14 changed files with 148 additions and 59 deletions.
57 changes: 44 additions & 13 deletions api/src/main/java/ai/djl/engine/Engine.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public abstract class Engine {

private static final Map<String, EngineProvider> ALL_ENGINES = new ConcurrentHashMap<>();

private static final String DEFAULT_ENGINE = initEngine();
private static String defaultEngine = initEngine();
private static final Pattern PATTERN =
Pattern.compile("KEY|TOKEN|PASSWORD", Pattern.CASE_INSENSITIVE);

Expand All @@ -69,6 +69,10 @@ public abstract class Engine {
private Integer seed;

private static synchronized String initEngine() {
if (Boolean.parseBoolean(Utils.getenv("DJL_ENGINE_MANUAL_INIT"))) {
return null;
}

ServiceLoader<EngineProvider> loaders = ServiceLoader.load(EngineProvider.class);
for (EngineProvider provider : loaders) {
registerEngine(provider);
Expand All @@ -80,21 +84,21 @@ private static synchronized String initEngine() {
}

String def = System.getProperty("ai.djl.default_engine");
String defaultEngine = Utils.getenv("DJL_DEFAULT_ENGINE", def);
if (defaultEngine == null || defaultEngine.isEmpty()) {
String newDefaultEngine = Utils.getenv("DJL_DEFAULT_ENGINE", def);
if (newDefaultEngine == null || newDefaultEngine.isEmpty()) {
int rank = Integer.MAX_VALUE;
for (EngineProvider provider : ALL_ENGINES.values()) {
if (provider.getEngineRank() < rank) {
defaultEngine = provider.getEngineName();
newDefaultEngine = provider.getEngineName();
rank = provider.getEngineRank();
}
}
} else if (!ALL_ENGINES.containsKey(defaultEngine)) {
throw new EngineException("Unknown default engine: " + defaultEngine);
} else if (!ALL_ENGINES.containsKey(newDefaultEngine)) {
throw new EngineException("Unknown default engine: " + newDefaultEngine);
}
logger.debug("Found default engine: {}", defaultEngine);
Ec2Utils.callHome(defaultEngine);
return defaultEngine;
logger.debug("Found default engine: {}", newDefaultEngine);
Ec2Utils.callHome(newDefaultEngine);
return newDefaultEngine;
}

/**
Expand Down Expand Up @@ -124,7 +128,7 @@ private static synchronized String initEngine() {
* @return the default Engine name
*/
public static String getDefaultEngineName() {
return System.getProperty("ai.djl.default_engine", DEFAULT_ENGINE);
return System.getProperty("ai.djl.default_engine", defaultEngine);
}

/**
Expand All @@ -134,7 +138,7 @@ public static String getDefaultEngineName() {
* @see EngineProvider
*/
public static Engine getInstance() {
if (DEFAULT_ENGINE == null) {
if (defaultEngine == null) {
throw new EngineException(
"No deep learning engine found."
+ System.lineSeparator()
Expand Down Expand Up @@ -163,7 +167,29 @@ public static boolean hasEngine(String engineName) {
*/
public static void registerEngine(EngineProvider provider) {
logger.debug("Registering EngineProvider: {}", provider.getEngineName());
ALL_ENGINES.putIfAbsent(provider.getEngineName(), provider);
ALL_ENGINES.put(provider.getEngineName(), provider);
}

/**
* Returns the default engine.
*
* @return the default engine
*/
public static String getDefaultEngine() {
return defaultEngine;
}

/**
* Sets the default engine returned by {@link #getInstance()}.
*
* @param engineName the new default engine's name
*/
public static void setDefaultEngine(String engineName) {
// Requires an engine to be loaded (without exception) before being the default
getEngine(engineName);

logger.debug("Setting new default engine: {}", engineName);
defaultEngine = engineName;
}

/**
Expand All @@ -187,7 +213,12 @@ public static Engine getEngine(String engineName) {
if (provider == null) {
throw new IllegalArgumentException("Deep learning engine not found: " + engineName);
}
return provider.getEngine();
Engine engine = provider.getEngine();
if (engine == null) {
throw new IllegalStateException(
"The engine " + engineName + " was not able to initialize");
}
return engine;
}

/**
Expand Down
5 changes: 5 additions & 0 deletions docs/development/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ For more information, please refer to [DJL Cache Management](cache_management.md
It happened when you had a wrong version with DJL and Deep Engines.
You can check the combination [here](dependency_management.md) and use DJL BOM to solve the issue.

### 1.6 Manual initialization

If you are using manual engine initialization, you must both register an engine and set it as the default.
This can be done with `Engine.registerEngine(..)` and `Engine.setDefaultEngine(..)`.

## 2. IntelliJ throws the `No Log4j 2 configuration file found.` exception.
The following exception may appear after running the `./gradlew clean` command:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
/** {@code LgbmEngineProvider} is the LightGBM implementation of {@link EngineProvider}. */
public class LgbmEngineProvider implements EngineProvider {

private volatile Engine engine; // NOPMD
private volatile boolean initialized; // NOPMD

/** {@inheritDoc} */
@Override
public String getEngineName() {
Expand All @@ -33,10 +36,14 @@ public int getEngineRank() {
/** {@inheritDoc} */
@Override
public Engine getEngine() {
return InstanceHolder.INSTANCE;
}

private static class InstanceHolder {
static final Engine INSTANCE = LgbmEngine.newInstance();
if (!initialized) {
synchronized (LgbmEngineProvider.class) {
if (!initialized) {
initialized = true;
engine = LgbmEngine.newInstance();
}
}
}
return engine;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
/** {@code XgbEngineProvider} is the XGBoost implementation of {@link EngineProvider}. */
public class XgbEngineProvider implements EngineProvider {

private volatile Engine engine; // NOPMD
private volatile boolean initialized; // NOPMD

/** {@inheritDoc} */
@Override
public String getEngineName() {
Expand All @@ -33,10 +36,14 @@ public int getEngineRank() {
/** {@inheritDoc} */
@Override
public Engine getEngine() {
return InstanceHolder.INSTANCE;
}

private static class InstanceHolder {
static final Engine INSTANCE = XgbEngine.newInstance();
if (!initialized) {
synchronized (XgbEngineProvider.class) {
if (!initialized) {
initialized = true;
engine = XgbEngine.newInstance();
}
}
}
return engine;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
/** {@code MxEngineProvider} is the MXNet implementation of {@link EngineProvider}. */
public class MxEngineProvider implements EngineProvider {

private volatile Engine engine; // NOPMD
private volatile boolean initialized; // NOPMD

/** {@inheritDoc} */
@Override
public String getEngineName() {
Expand All @@ -33,10 +36,14 @@ public int getEngineRank() {
/** {@inheritDoc} */
@Override
public Engine getEngine() {
return InstanceHolder.INSTANCE;
}

private static class InstanceHolder {
static final Engine INSTANCE = MxEngine.newInstance();
if (!initialized) {
synchronized (MxEngineProvider.class) {
if (!initialized) {
initialized = true;
engine = MxEngine.newInstance();
}
}
}
return engine;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
/** {@code OrtEngineProvider} is the ONNX Runtime implementation of {@link EngineProvider}. */
public class OrtEngineProvider implements EngineProvider {

private volatile Engine engine; // NOPMD
private volatile boolean initialized; // NOPMD

/** {@inheritDoc} */
@Override
public String getEngineName() {
Expand All @@ -33,10 +36,14 @@ public int getEngineRank() {
/** {@inheritDoc} */
@Override
public Engine getEngine() {
return InstanceHolder.INSTANCE;
}

private static class InstanceHolder {
static final Engine INSTANCE = OrtEngine.newInstance();
if (!initialized) {
synchronized (OrtEngineProvider.class) {
if (!initialized) {
initialized = true;
engine = OrtEngine.newInstance();
}
}
}
return engine;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
/** {@code PpEngineProvider} is the PaddlePaddle implementation of {@link EngineProvider}. */
public class PpEngineProvider implements EngineProvider {

private volatile Engine engine; // NOPMD
private volatile boolean initialized; // NOPMD

/** {@inheritDoc} */
@Override
public String getEngineName() {
Expand All @@ -33,10 +36,14 @@ public int getEngineRank() {
/** {@inheritDoc} */
@Override
public Engine getEngine() {
return InstanceHolder.INSTANCE;
}

private static class InstanceHolder {
static final Engine INSTANCE = PpEngine.newInstance();
if (!initialized) {
synchronized (PpEngineProvider.class) {
if (!initialized) {
initialized = true;
engine = PpEngine.newInstance();
}
}
}
return engine;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
/** {@code PtEngineProvider} is the PyTorch implementation of {@link EngineProvider}. */
public class PtEngineProvider implements EngineProvider {

private static volatile Engine engine; // NOPMD
private volatile Engine engine; // NOPMD
private volatile boolean initialized; // NOPMD

/** {@inheritDoc} */
@Override
Expand All @@ -35,9 +36,10 @@ public int getEngineRank() {
/** {@inheritDoc} */
@Override
public Engine getEngine() {
if (engine == null) {
if (!initialized) {
synchronized (PtEngineProvider.class) {
if (engine == null) {
if (!initialized) {
initialized = true;
engine = PtEngine.newInstance();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
/** {@code TfEngineProvider} is the TensorFlow implementation of {@link EngineProvider}. */
public class TfEngineProvider implements EngineProvider {

private static volatile Engine engine; // NOPMD
private volatile Engine engine; // NOPMD
private volatile boolean initialized; // NOPMD

/** {@inheritDoc} */
@Override
Expand All @@ -35,9 +36,10 @@ public int getEngineRank() {
/** {@inheritDoc} */
@Override
public Engine getEngine() {
if (engine == null) {
if (!initialized) {
synchronized (TfEngineProvider.class) {
if (engine == null) {
if (!initialized) {
initialized = true;
engine = TfEngine.newInstance();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
/** {@code TrtEngineProvider} is the TensorRT implementation of {@link EngineProvider}. */
public class TrtEngineProvider implements EngineProvider {

private volatile Engine engine; // NOPMD
private volatile boolean initialized; // NOPMD

/** {@inheritDoc} */
@Override
public String getEngineName() {
Expand All @@ -33,10 +36,14 @@ public int getEngineRank() {
/** {@inheritDoc} */
@Override
public Engine getEngine() {
return InstanceHolder.INSTANCE;
}

private static class InstanceHolder {
static final Engine INSTANCE = TrtEngine.newInstance();
if (!initialized) {
synchronized (TrtEngineProvider.class) {
if (!initialized) {
initialized = true;
engine = TrtEngine.newInstance();
}
}
}
return engine;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public void getVersion() {
try {
Engine engine = Engine.getEngine("TensorRT");
version = engine.getVersion();
} catch (Throwable ignore) {
} catch (Exception ignore) {
throw new SkipException("Your os configuration doesn't support TensorRT.");
}
Assert.assertEquals(version, "8.4.1");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void testNDArray() {
Engine engine;
try {
engine = Engine.getEngine("TensorRT");
} catch (Throwable ignore) {
} catch (Exception ignore) {
throw new SkipException("Your os configuration doesn't support TensorRT.");
}
if (!engine.defaultDevice().isGpu()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void testTrtOnnx() throws ModelException, IOException, TranslateException
Engine engine;
try {
engine = Engine.getEngine("TensorRT");
} catch (Throwable ignore) {
} catch (Exception ignore) {
throw new SkipException("Your os configuration doesn't support TensorRT.");
}
if (!engine.defaultDevice().isGpu()) {
Expand All @@ -75,7 +75,7 @@ public void testTrtUff() throws ModelException, IOException, TranslateException
Engine engine;
try {
engine = Engine.getEngine("TensorRT");
} catch (Throwable ignore) {
} catch (Exception ignore) {
throw new SkipException("Your os configuration doesn't support TensorRT.");
}
if (!engine.defaultDevice().isGpu()) {
Expand Down Expand Up @@ -112,7 +112,7 @@ public void testSerializedEngine() throws ModelException, IOException, Translate
Engine engine;
try {
engine = Engine.getEngine("TensorRT");
} catch (Throwable ignore) {
} catch (Exception ignore) {
throw new SkipException("Your os configuration doesn't support TensorRT.");
}
Device device = engine.defaultDevice();
Expand Down
Loading

0 comments on commit 6141c48

Please sign in to comment.