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

1 2 3 4

  /external/tensorflow/tensorflow/compiler/xla/service/
while_loop_invariant_code_motion_test.cc 82 auto* init_value = builder.AddInstruction( local
83 HloInstruction::CreateParameter(0, while_shape, "init_value"));
86 while_body, init_value));
141 auto* init_value = builder.AddInstruction( local
142 HloInstruction::CreateParameter(0, while_shape, "init_value"));
145 while_body, init_value));
195 auto* init_value = builder.AddInstruction( local
196 HloInstruction::CreateParameter(0, while_shape, "init_value"));
199 while_body, init_value));
234 auto* init_value = builder.AddInstruction local
268 auto* init_value = builder.AddInstruction( local
309 auto* init_value = builder.AddInstruction( local
354 auto* init_value = builder.AddInstruction( local
403 auto* init_value = builder.AddInstruction( local
430 auto* init_value = builder.AddInstruction( local
    [all...]
call_inliner_test.cc 101 HloInstruction* init_value = outer.AddInstruction( local
104 HloInstruction::CreateWhile(pred, call_false, call_false, init_value));
hlo_computation_test.cc 297 ShapeTree<bool> indices_to_copy(constant->shape(), /*init_value=*/true);
305 ShapeTree<bool> indices_to_copy(constant->shape(), /*init_value=*/false);
326 ShapeTree<bool> indices_to_copy(tuple->shape(), /*init_value=*/true);
328 /*init_value=*/nullptr);
342 ShapeTree<bool> indices_to_copy(tuple->shape(), /*init_value=*/false);
344 /*init_value=*/nullptr);
358 ShapeTree<bool> indices_to_copy(tuple->shape(), /*init_value=*/false);
361 /*init_value=*/nullptr);
user_computation.cc 480 TF_ASSIGN_OR_RETURN(const OperationRequest* init_value,
481 LookUpRequest(reduce_request.init_value()));
492 operand->output_shape(), init_value->output_shape(),
648 TF_ASSIGN_OR_RETURN(const OperationRequest* init_value,
649 LookUpRequest(reduce_window_request.init_value()));
660 operand->output_shape(), init_value->output_shape(),
689 TF_ASSIGN_OR_RETURN(const OperationRequest* init_value,
690 LookUpRequest(select_and_scatter_request.init_value()));
706 init_value->output_shape(), *scatter_program_shape));
3043 HloInstruction* init_value = local
3061 HloInstruction* init_value = local
3081 HloInstruction* init_value = local
    [all...]
  /external/v8/src/compiler/
loop-variable-optimizer.h 23 Node* init_value() const { return init_value_; } function in class:v8::internal::compiler::InductionVariable
42 InductionVariable(Node* phi, Node* arith, Node* increment, Node* init_value,
47 init_value_(init_value),
  /external/adhd/cras/src/server/
cras_dsp_ini.h 40 float init_value; member in struct:port
cras_dsp_ini.c 124 p->init_value = 0;
127 float init_value = strtof(str, &endptr); local
135 p->init_value = init_value;
206 p->init_value = 0;
430 port->init_value);
  /external/tensorflow/tensorflow/compiler/xla/
shape_tree.h 114 // Create ShapeTree with the given shape, and init_value for all nodes.
115 ShapeTree(Shape shape, const T& init_value);
116 ShapeTree(const Shape* shape, const T& init_value);
288 // the given 'init_value'.
289 void InitChildren(const Shape& shape, const T& init_value, Node* node);
471 void ShapeTree<T>::InitChildren(const Shape& shape, const T& init_value,
475 node->children.emplace_back(new Node(init_value));
476 InitChildren(shape.tuple_shapes(i), init_value,
509 ShapeTree<T>::ShapeTree(Shape shape, const T& init_value)
510 : root_(init_value),
    [all...]
  /bionic/libc/malloc_debug/
GuardData.cpp 42 GuardData::GuardData(DebugData* debug_data, int init_value, size_t num_bytes)
46 memset(cmp_mem_.data(), init_value, cmp_mem_.size());
GuardData.h 47 GuardData(DebugData* debug_data, int init_value, size_t num_bytes);
  /external/llvm/test/CodeGen/PowerPC/
ctrloop-fp64.ll 29 @init_value = global double 1.000000e+00, align 8
34 %0 = load double, double* @init_value, align 8
  /hardware/intel/img/psb_video/src/android/
psb_android_glue.h 49 INIT_VALUE = 0,
  /external/tensorflow/tensorflow/compiler/xla/python/
local_computation_builder.cc 397 const ComputationDataHandle& init_value, const LocalComputation& scatter) {
400 source, init_value, scatter.computation());
470 const ComputationDataHandle& init_value,
473 return builder_.Reduce(operand, init_value, local_computation.computation(),
479 const ComputationDataHandle& init_value,
485 operand, init_value, local_computation.computation(), window_dimensions,
local_computation_builder.h 192 const ComputationDataHandle& init_value, const LocalComputation& scatter);
237 const ComputationDataHandle& init_value,
243 const ComputationDataHandle& init_value,
xla_client_test.py     [all...]
  /external/pcre/dist2/src/sljit/
sljitNativeSPARC_32.c 142 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value)
144 FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((init_value >> 10) & 0x3fffff), DR(dst)));
145 return push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (init_value & 0x3ff), DR(dst));
sljitNativePPC_64.c 392 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value)
394 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 48)));
395 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value >> 32)));
397 FAIL_IF(push_inst(compiler, ORIS | S(reg) | A(reg) | IMM(init_value >> 16)));
398 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value));
sljitNativePPC_32.c 247 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value)
249 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 16)));
250 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value));
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_helpers.cc 39 xla::ComputationDataHandle init_value; local
42 init_value = XlaHelpers::MaxValue(builder, input_type);
45 init_value = XlaHelpers::MinValue(builder, input_type);
53 input, init_value, *reducer, /*dimensions_to_reduce=*/{axis});
  /prebuilts/misc/windows/sdl2/test/
testsem.c 90 SDL_Log("Usage: %s init_value\n", argv[0]);
  /external/tensorflow/tensorflow/compiler/xla/tests/
reduce_hlo_test.cc 70 init_value = f32[] constant(0)
71 reduce = f32[2,2,3]{2,1,0} reduce(parameter, init_value), dimensions={1}, to_apply=Sum
reduce_test.cc 119 ComputationDataHandle init_value; local
122 init_value = builder.ConstantR0<bool>(true);
125 init_value = builder.ConstantR0<bool>(false);
128 builder.Reduce(pred_values, init_value, reduce,
157 ComputationDataHandle init_value; local
160 init_value = builder.ConstantR0<bool>(true);
163 init_value = builder.ConstantR0<bool>(false);
167 builder.Reduce(input_pred, init_value, reduce_op,
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
elemental_ir_emitter.cc 338 // value = init_value
362 TF_ASSIGN_OR_RETURN(llvm::Value * init_value,
364 ir_builder_->CreateStore(init_value, accum_ptr);
422 TF_ASSIGN_OR_RETURN(llvm::Value * init_value,
424 ir_builder()->CreateStore(init_value, accum_ptr);
  /external/tensorflow/tensorflow/compiler/xla/client/
computation_builder.cc     [all...]
  /external/tensorflow/tensorflow/python/training/
server_lib_test.py 247 init_value = array_ops.placeholder(dtypes.int32)
248 v = variables.Variable(init_value, validate_shape=False, name="v")
266 sharing_sess_0.run(v.initializer, feed_dict={init_value: 86})
275 sharing_sess_1.run(v.initializer, feed_dict={init_value: [86, 99]})
285 isolate_sess_0.run(v.initializer, feed_dict={init_value: 37})
293 isolate_sess_1.run(v.initializer, feed_dict={init_value: [19, 86]})

Completed in 1410 milliseconds

1 2 3 4