All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nd4j.linalg.exception.ND4JOpProfilerException Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.nd4j.linalg.exception;

/**
 * ND4JOpProfilerException: Thrown by the op profiler (if enabled) for example on NaN panic
 *
 * @author Alex Black
 */
public class ND4JOpProfilerException extends ND4JIllegalStateException {
    public ND4JOpProfilerException() {
    }
    public ND4JOpProfilerException(String message) {
        super(message);
    }

    public ND4JOpProfilerException(String message, Throwable cause) {
        super(message, cause);
    }

    public ND4JOpProfilerException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy