HomeSort by relevance Sort by last modified time
    Searched defs:operand_data (Results 1 - 4 of 4) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/service/interpreter/
compiler.cc 63 std::vector<const void*> operand_data; local
64 operand_data.reserve(operands.size());
66 operand_data.push_back(literal->untyped_data());
73 (*typed_fn)(output_data, operand_data.data());
  /external/tensorflow/tensorflow/lite/toco/graph_transformations/
fuse_binary_into_preceding_affine.cc 49 const float* const operand_data = operand_buffer.data.data(); local
76 const float operand_val = operand_data[operand_channel];
120 const float* const operand_data = operand_buffer.data.data(); local
154 bias_data[c] *= operand_data[operand_channel];
156 bias_data[c] /= operand_data[operand_channel];
165 operand_data[operand_channel];
168 operand_data[operand_channel];
176 weights_data[k * output_depth + c] *= operand_data[operand_channel];
178 weights_data[k * output_depth + c] /= operand_data[operand_channel];
  /external/tensorflow/tensorflow/compiler/xla/tests/
fusion_test.cc 71 Array2D<float> operand_data[Arity]; local
73 new (&operand_data[i]) Array2D<float>(test_width, test_height);
81 operand_data[k](i, j) = xs[k];
99 LiteralUtil::CreateR2FromArray2D(operand_data[i])));
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
ir_emitter.cc 859 llvm::Value* operand_data = local
    [all...]

Completed in 2150 milliseconds