org.nd4j.linalg.api.ops.executioner.OpExecutionerUtil Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2015-2018 Skymind, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
* SPDX-License-Identifier: Apache-2.0
******************************************************************************/
package org.nd4j.linalg.api.ops.executioner;
import lombok.extern.slf4j.Slf4j;
import lombok.val;
import org.nd4j.linalg.api.buffer.DataType;
import org.nd4j.linalg.api.ndarray.INDArray;
import org.nd4j.linalg.api.ops.CustomOp;
import org.nd4j.linalg.api.ops.Op;
import org.nd4j.linalg.api.ops.OpContext;
import org.nd4j.linalg.api.ops.impl.reduce.longer.MatchCondition;
import org.nd4j.linalg.exception.ND4JOpProfilerException;
import org.nd4j.linalg.factory.Nd4j;
import org.nd4j.linalg.indexing.conditions.Conditions;
import org.nd4j.linalg.profiler.OpProfiler;
import java.util.List;
/**Utility functions for the DefaultOpExecutioner
* @author Alex Black
*/
@Slf4j
public class OpExecutionerUtil {
private OpExecutionerUtil() {}
public static void checkForNaN(INDArray z) {
if (!OpProfiler.getInstance().getConfig().isCheckForNAN())
return;
if(z.isEmpty() || !z.dataType().isFPType())
return;
int match = 0;
if (!z.isScalar()) {
MatchCondition condition = new MatchCondition(z, Conditions.isNan());
match = Nd4j.getExecutioner().exec(condition).getInt(0);
} else {
if (z.data().dataType() == DataType.DOUBLE) {
if (Double.isNaN(z.getDouble(0)))
match = 1;
} else {
if (Float.isNaN(z.getFloat(0)))
match = 1;
}
}
if (match > 0)
throw new ND4JOpProfilerException("P.A.N.I.C.! Op.Z() contains " + match + " NaN value(s)");
}
public static void checkForAny(INDArray z) {
checkForNaN(z);
checkForInf(z);
}
public static void checkForInf(INDArray z) {
if (!OpProfiler.getInstance().getConfig().isCheckForINF())
return;
if(z.isEmpty() || !z.dataType().isFPType())
return;
int match = 0;
if (!z.isScalar()) {
MatchCondition condition = new MatchCondition(z, Conditions.isInfinite());
match = Nd4j.getExecutioner().exec(condition).getInt(0);
} else {
if (z.data().dataType() == DataType.DOUBLE) {
if (Double.isInfinite(z.getDouble(0)))
match = 1;
} else {
if (Float.isInfinite(z.getFloat(0)))
match = 1;
}
}
if (match > 0)
throw new ND4JOpProfilerException("P.A.N.I.C.! Op.Z() contains " + match + " Inf value(s)");
}
public static void checkForNaN(Op op, OpContext oc) {
if (!OpProfiler.getInstance().getConfig().isCheckForNAN())
return;
INDArray z = oc != null ? oc.getOutputArray(0) : op.z();
if (z != null && !(op instanceof MatchCondition)) {
checkForNaN(z);
}
}
public static void checkForInf(Op op, OpContext oc) {
if (!OpProfiler.getInstance().getConfig().isCheckForINF())
return;
INDArray z = oc != null ? oc.getOutputArray(0) : op.z();
if (z != null && !(op instanceof MatchCondition)) {
checkForInf(z);
}
}
public static void checkForInf(CustomOp op, OpContext oc) {
if (!OpProfiler.getInstance().getConfig().isCheckForINF())
return;
List inArgs = oc != null ? oc.getInputArrays() : op.inputArguments();
List outArgs = oc != null ? oc.getOutputArrays() : op.outputArguments();
for (val input: inArgs)
checkForInf(input);
for (val output: outArgs)
checkForInf(output);
}
public static void checkForNaN(CustomOp op, OpContext oc) {
if (!OpProfiler.getInstance().getConfig().isCheckForNAN())
return;
List inArgs = oc != null ? oc.getInputArrays() : op.inputArguments();
List outArgs = oc != null ? oc.getOutputArrays() : op.outputArguments();
for (val input: inArgs)
checkForNaN(input);
for (val output: outArgs)
checkForNaN(output);
}
}