Home
last modified time | relevance | path

Searched refs:AbsoluteValue (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/
Dabsolute_value_test.py22 from tensorflow.contrib.distributions.python.ops.bijectors.absolute_value import AbsoluteValue
35 bijector = AbsoluteValue(validate_args=True)
58 bijector = AbsoluteValue(validate_args=True)
64 bijector = AbsoluteValue(validate_args=True)
/external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
Dabsolute_value.py33 class AbsoluteValue(bijector.Bijector): class
95 super(AbsoluteValue, self).__init__(
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
Dtransformed_distribution_test.py120 bijector=bs.AbsoluteValue())
/external/clang/include/clang/Basic/
DDiagnosticGroups.td21 def AbsoluteValue : DiagGroup<"absolute-value">;
DDiagnosticSemaKinds.td41 InGroup<AbsoluteValue>;
46 "of type %2 which may cause truncation of value">, InGroup<AbsoluteValue>;
50 InGroup<AbsoluteValue>;
54 InGroup<AbsoluteValue>;
/external/ImageMagick/Magick++/lib/
DImage.cpp27 #define AbsoluteValue(x) ((x) < 0 ? -(x) : (x)) macro