Searched defs:inputs (Results 1 - 25 of 468) sorted by relevance

1234567891011>>

/external/skia/include/effects/
H A DSkComposeImageFilter.h23 explicit SkComposeImageFilter(sk_sp<SkImageFilter> inputs[2]) : INHERITED(inputs, 2, nullptr) { argument
24 SkASSERT(inputs[0].get());
25 SkASSERT(inputs[1].get());
/external/skqp/include/effects/
H A DSkComposeImageFilter.h23 explicit SkComposeImageFilter(sk_sp<SkImageFilter> inputs[2]) : INHERITED(inputs, 2, nullptr) { argument
24 SkASSERT(inputs[0].get());
25 SkASSERT(inputs[1].get());
/external/libcxx/benchmarks/
H A Dalgorithms.bench.cpp14 std::vector<ValueType> inputs[5]; local
16 for (auto& C : inputs) {
23 for (auto& I : inputs) {
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/
H A DOperands.java30 * <p>Operation wrappers need to convert back a list of inputs into an array of outputs in order
33 * @param inputs an iteration of input operands
36 public static Output<?>[] asOutputs(Iterable<? extends Operand<?>> inputs) { argument
38 for (Operand<?> input : inputs) {
/external/eigen/unsupported/test/
H A Dcxx11_tensor_scan.cpp88 int inputs[20]; local
89 TensorMap<Tensor<int, 1, DataLayout> > tensor_map(inputs, 20);
/external/llvm/utils/
H A Dshuffle_fuzz.py71 # we uniformly select between -1 and the other inputs, each element of the
121 inputs = [[int(j % element_modulus)
124 results = inputs
137 print >>sys.stderr, ' from: %s' % (inputs,)
204 %%v = call fastcc <%(N)d x %(T)s> @test_wrapper(%(inputs)s)
210 inputs=', '.join( variable
215 for input in inputs]))
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_expintfunc.cpp52 bool CPDF_ExpIntFunc::v_Call(float* inputs, float* results) const { argument
56 m_pBeginValues[j] + FXSYS_pow(inputs[i], m_Exponent) *
H A Dcpdf_psfunc.cpp23 bool CPDF_PSFunc::v_Call(float* inputs, float* results) const { argument
27 PS.Push(inputs[i]);
H A Dcpdf_stitchfunc.cpp79 bool CPDF_StitchFunc::v_Call(float* inputs, float* outputs) const { argument
80 float input = inputs[0];
/external/tensorflow/tensorflow/contrib/lite/testing/
H A Dparse_testdata.h33 std::vector<FloatTensor> inputs; member in struct:tflite::testing::Example
52 // // Changes the shape of inputs, provided in the same order they appear
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DManifestWriter.java25 String getManifest(Movie inputs) throws IOException; argument
/external/skia/tests/
H A DSkSLGLSLTest.cpp22 const char* expected, SkSL::Program::Inputs* inputs,
32 *inputs = program->fInputs;
48 SkSL::Program::Inputs inputs; local
49 test(r, src, settings, expected, &inputs, kind);
991 SkSL::Program::Inputs inputs; local
1014 &inputs);
1039 &inputs);
1064 SkSL::Program::Inputs inputs; local
1074 &inputs);
1075 REPORTER_ASSERT(r, !inputs
21 test(skiatest::Reporter* r, const char* src, const SkSL::Program::Settings& settings, const char* expected, SkSL::Program::Inputs* inputs, SkSL::Program::Kind kind = SkSL::Program::kFragment_Kind) argument
1798 SkSL::Program::Inputs inputs; local
[all...]
/external/skqp/tests/
H A DSkSLGLSLTest.cpp22 const char* expected, SkSL::Program::Inputs* inputs,
32 *inputs = program->fInputs;
48 SkSL::Program::Inputs inputs; local
49 test(r, src, settings, expected, &inputs, kind);
1008 SkSL::Program::Inputs inputs; local
1018 &inputs);
1019 REPORTER_ASSERT(r, !inputs.fRTHeight);
1032 &inputs);
1033 REPORTER_ASSERT(r, !inputs.fRTHeight);
1048 &inputs);
21 test(skiatest::Reporter* r, const char* src, const SkSL::Program::Settings& settings, const char* expected, SkSL::Program::Inputs* inputs, SkSL::Program::Kind kind = SkSL::Program::kFragment_Kind) argument
1742 SkSL::Program::Inputs inputs; local
[all...]
/external/tensorflow/tensorflow/cc/framework/
H A Dops.cc53 Operation::Inputs inputs; local
55 inputs.resize(node->num_inputs(), {nullptr, -1});
58 inputs[e->dst_input()] = std::make_pair(e->src(), e->src_output());
61 return inputs;
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_reachability.cc32 tensorflow::gtl::ArraySlice<const HloInstruction*> inputs,
37 // If instruction is part of inputs, don't reset the bit_vector.
38 if (std::find(inputs.begin(), inputs.end(), instruction) == inputs.end()) {
42 for (const HloInstruction* input : inputs) {
31 SetReachabilityToUnion( tensorflow::gtl::ArraySlice<const HloInstruction*> inputs, const HloInstruction* instruction) argument
/external/tensorflow/tensorflow/core/common_runtime/
H A Dfunction_testlib.cc60 gtl::ArraySlice<Input> inputs) {
63 for (const Input& input : inputs) {
72 for (int i = 0; i < inputs.size(); ++i) {
73 scope->graph()->AddEdge(inputs[i].node(), inputs[i].index(), n, i);
59 Call(Scope* scope, const string& op_name, const string& fn_name, gtl::ArraySlice<Input> inputs) argument
H A Dgraph_runner_test.cc68 std::vector<std::pair<string, Tensor>> inputs = {{"p1:0", p1_data}, local
77 graph_runner.Run(root.graph(), nullptr, inputs, {"add:0"}, &outputs);
106 std::vector<std::pair<string, Tensor>> inputs = {{"p1:0", p1_data}, local
112 graph_runner.Run(root.graph(), nullptr, inputs, {"add:0"}, &outputs);
/external/tensorflow/tensorflow/core/grappler/utils/
H A Dframe_test.cc29 const std::vector<string>& inputs) {
30 return CreateNode(name, "", "", inputs);
33 const std::vector<string>& inputs) {
34 return CreateNode(name, op, "", inputs);
38 const std::vector<string>& inputs) {
49 for (const string& input : inputs) {
28 CreateNode(const string& name, const std::vector<string>& inputs) argument
32 CreateNode(const string& name, const string& op, const std::vector<string>& inputs) argument
36 CreateNode(const string& name, const string& op, const string& frame, const std::vector<string>& inputs) argument
H A Dtopological_sort_test.cc29 const std::vector<string>& inputs) {
30 return CreateNode(name, "", inputs);
33 const std::vector<string>& inputs) {
39 for (const string& input : inputs) {
28 CreateNode(const string& name, const std::vector<string>& inputs) argument
32 CreateNode(const string& name, const string& op, const std::vector<string>& inputs) argument
H A Dtraversal_test.cc30 const std::vector<string>& inputs) {
31 return CreateNode(name, "", inputs);
34 const std::vector<string>& inputs) {
40 for (const string& input : inputs) {
29 CreateNode(const string& name, const std::vector<string>& inputs) argument
33 CreateNode(const string& name, const string& op, const std::vector<string>& inputs) argument
/external/tensorflow/tensorflow/core/kernels/
H A Dconcat_lib_cpu.cc54 inputs,
58 ConcatCPUImpl<T>(d, inputs, 100000, MemCpyCopier<T>(), output);
60 ConcatCPUImpl<T>(d, inputs, sizeof(T) /* cost_per_unit */,
92 inputs,
94 ConcatSYCLImpl<T>(d, inputs, sizeof(T) /* cost_per_unit */, MemCpyCopier<T>(),
51 ConcatCPU( DeviceBase* d, const std::vector<std::unique_ptr<typename TTypes<T, 2>::ConstMatrix>>& inputs, typename TTypes<T, 2>::Matrix* output) argument
89 ConcatSYCL( const Eigen::SyclDevice& d, const std::vector<std::unique_ptr<typename TTypes<T, 2>::ConstMatrix>>& inputs, typename TTypes<T, 2>::Matrix* output) argument
H A Dparse_tensor_test.cc47 gtl::InlinedVector<TensorValue, 4> inputs; local
48 inputs.push_back({nullptr, serialized});
56 params.inputs = &inputs;
/external/tensorflow/tensorflow/core/kernels/data/
H A Dtensor_dataset_op.cc33 OpInputList inputs; variable
34 OP_REQUIRES_OK(ctx, ctx->input_list("components", &inputs));
38 components.reserve(inputs.size());
39 for (const Tensor& t : inputs) {
H A Dzip_dataset_op.cc31 std::vector<DatasetBase*> inputs; variable
35 inputs.push_back(input);
37 *output = new Dataset(ctx, inputs);
44 const std::vector<DatasetBase*>& inputs)
45 : GraphDatasetBase(ctx), inputs_(inputs) {
43 Dataset(OpKernelContext* ctx, const std::vector<DatasetBase*>& inputs) argument
/external/tensorflow/tensorflow/core/kernels/hexagon/
H A Dhexagon_rewriter_transform.cc25 --inputs='Mul' \
48 std::vector<std::pair<string, Tensor>> inputs; local
72 inputs.emplace_back(input_name, Tensor(data_type, TensorShape(dims)));
81 inputs, outputs, &mutable_input_graph_def);

Completed in 792 milliseconds

1234567891011>>