HomeSort by relevance Sort by last modified time
    Searched full:is_constant (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_RefEnter.pbtxt 23 name: "is_constant"
37 `is_constant` is true, `output` is a constant in the child frame; otherwise
api_def_Enter.pbtxt 23 name: "is_constant"
38 `is_constant` is true, `output` is a constant in the child frame; otherwise
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
retval_op.cc 51 auto is_constant = ctx->builder()->IsConstant(input); variable
52 if (!is_constant.ok()) {
53 ctx->SetStatus(is_constant.status());
58 if (input_shape.num_elements() == 0 || is_constant.ValueOrDie()) {
  /external/brotli/c/dec/
port.h 69 /* IS_CONSTANT macros returns true for compile-time constant expressions. */
71 #define IS_CONSTANT(x) (!!__builtin_constant_p(x))
73 #define IS_CONSTANT(x) (!!0)
bit_reader.h 35 if (IS_CONSTANT(n) || BROTLI_HAS_UBFX) {
164 if (!BROTLI_ALIGNED_READ && IS_CONSTANT(n_bits) && (n_bits <= 8)) {
172 } else if (!BROTLI_ALIGNED_READ && IS_CONSTANT(n_bits) && (n_bits <= 16)) {
190 if (!BROTLI_ALIGNED_READ && IS_CONSTANT(n_bits) && (n_bits <= 8)) {
  /external/skia/src/core/
SkRasterPipelineBlitter.cpp 29 bool is_opaque, bool is_constant);
100 is_constant = true; local
103 is_opaque, is_constant);
107 bool is_constant = shader->isConstant(); local
115 is_opaque, is_constant);
124 is_opaque, is_constant);
136 bool is_constant = false; // If this were the case, it'd be better to just set a paint color. local
138 is_opaque, is_constant);
147 bool is_constant) {
172 // to zero. We need to decide if we're going to dither now to keep is_constant accurate
    [all...]
  /external/skqp/src/core/
SkRasterPipelineBlitter.cpp 29 bool is_opaque, bool is_constant);
100 is_constant = true; local
103 is_opaque, is_constant);
107 bool is_constant = shader->isConstant(); local
115 is_opaque, is_constant);
124 is_opaque, is_constant);
136 bool is_constant = false; // If this were the case, it'd be better to just set a paint color. local
138 is_opaque, is_constant);
147 bool is_constant) {
172 // to zero. We need to decide if we're going to dither now to keep is_constant accurate
    [all...]
  /external/tensorflow/tensorflow/core/ops/
control_flow_ops.cc 139 .Attr("is_constant: bool = false")
150 bool is_constant;
151 TF_RETURN_IF_ERROR(c->GetAttr("is_constant", &is_constant));
152 if (is_constant) {
166 .Attr("is_constant: bool = false")
  /external/mesa3d/src/compiler/nir/
nir_search.h 58 bool is_constant; member in struct:__anon29332
75 * constraints to be placed on the match. Typically used for 'is_constant'
  /external/tensorflow/tensorflow/core/grappler/costs/graph_properties_testdata/
while_loop.pbtxt 62 key: "is_constant"
91 key: "is_constant"
nested_loop.pbtxt 69 key: "is_constant"
98 key: "is_constant"
286 key: "is_constant"
315 key: "is_constant"
loops_and_queues.pbtxt 106 key: "is_constant"
135 key: "is_constant"
301 key: "is_constant"
439 key: "is_constant"
468 key: "is_constant"
loops_and_resource_vars.pbtxt 144 key: "is_constant"
173 key: "is_constant"
373 key: "is_constant"
414 key: "is_constant"
443 key: "is_constant"
queues_and_loops.pbtxt 179 key: "is_constant"
208 key: "is_constant"
  /external/tensorflow/tensorflow/python/kernel_tests/
control_flow_util_test.py 54 is_constant=True).op
  /external/skia/src/sksl/
SkSLCompiler.cpp 465 bool is_constant(const Expression& expr, double value) { function in namespace:SkSL
475 if (!is_constant(c.getVecComponent(i), value)) {
702 if (is_constant(*bin->fLeft, 1)) {
714 else if (is_constant(*bin->fLeft, 0)) {
729 else if (is_constant(*bin->fRight, 1)) {
741 else if (is_constant(*bin->fRight, 0)) {
758 if (is_constant(*bin->fLeft, 0)) {
769 } else if (is_constant(*bin->fRight, 0)) {
783 if (is_constant(*bin->fRight, 0)) {
797 if (is_constant(*bin->fRight, 1))
    [all...]
  /external/skqp/src/sksl/
SkSLCompiler.cpp 465 bool is_constant(const Expression& expr, double value) { function in namespace:SkSL
475 if (!is_constant(c.getVecComponent(i), value)) {
702 if (is_constant(*bin->fLeft, 1)) {
714 else if (is_constant(*bin->fLeft, 0)) {
729 else if (is_constant(*bin->fRight, 1)) {
741 else if (is_constant(*bin->fRight, 0)) {
758 if (is_constant(*bin->fLeft, 0)) {
769 } else if (is_constant(*bin->fRight, 0)) {
783 if (is_constant(*bin->fRight, 0)) {
797 if (is_constant(*bin->fRight, 1))
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_op_kernel.cc 121 xla::StatusOr<bool> is_constant = builder()->IsConstant(handle); local
122 if (!is_constant.ok()) {
123 Status status = is_constant.status();
130 if (!is_constant.ValueOrDie()) {
xla_compiler_test.cc 302 EXPECT_TRUE(result.outputs[0].is_constant);
305 EXPECT_FALSE(result.outputs[1].is_constant);
338 EXPECT_FALSE(result.outputs[0].is_constant);
339 EXPECT_FALSE(result.outputs[1].is_constant);
graph_compiler.cc 230 if (result.outputs[i].is_constant) {
  /external/tensorflow/tensorflow/python/ops/
control_flow_grad.py 172 grad, grad_ctxt.name, is_constant=False,
215 if op.get_attr("is_constant"):
control_flow_ops.py 239 is_constant=False,
247 `is_constant` is true, `data` is a constant in the child frame; otherwise
254 is_constant: If true, the output is constant within the child frame.
266 data, frame_name, is_constant, parallel_iterations, name=name)
269 data, frame_name, is_constant, parallel_iterations, name=name)
279 is_constant,
286 is_constant,
297 is_constant,
307 is_constant,
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_optimize.c 535 unsigned int is_constant[2] = {0, 0}; local
560 is_constant[i] = 1;
564 if (is_constant[0] && is_constant[1])
  /external/tensorflow/tensorflow/core/grappler/utils/
scc_test.cc 226 key: "is_constant"
  /external/tensorflow/tensorflow/python/framework/
constant_op.py 224 def is_constant(tensor_or_op): function

Completed in 1636 milliseconds

1 2 3