
org.nd4j.nativeblas.NativeOpsHolder Maven / Gradle / Ivy
package org.nd4j.nativeblas;
import lombok.Getter;
/**
* @author [email protected]
*/
public class NativeOpsHolder {
private static final NativeOpsHolder INSTANCE = new NativeOpsHolder();
@Getter private NativeOps deviceNativeOps;
private NativeOpsHolder() {
deviceNativeOps = new NativeOps();
}
public static NativeOpsHolder getInstance() {
return INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy