Home
last modified time | relevance | path

Searched full:input (Results 1 – 25 of 8555) sorted by relevance

12345678910>>...343

/external/tensorflow/tensorflow/core/ops/
Dtraining_ops.cc25 static ShapeHandle ShapeOrHandleShape(InferenceContext* c, int input) { in ShapeOrHandleShape() argument
26 auto* handle_data = c->input_handle_shapes_and_types(input); in ShapeOrHandleShape()
31 return c->input(input); in ShapeOrHandleShape()
35 // <s> is an input+output parameter, containing the current known input shape to
46 TF_RETURN_IF_ERROR(c->WithRank(c->input(grad_idx + 1), 1, &indices)); in HandleGradAndIndicesInputs()
62 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 0, &unused)); // alpha in ApplyGradientDescentShapeFn()
63 TF_RETURN_IF_ERROR(c->Merge(s, c->input(2), &s)); // delta in ApplyGradientDescentShapeFn()
71 .Input("var: Ref(T)")
72 .Input("alpha: T")
73 .Input("delta: T")
[all …]
Dnn_ops.cc33 ShapeHandle input; in FractionalPoolShapeFn() local
34 TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 4, &input)); in FractionalPoolShapeFn()
44 DimensionHandle d = c->Dim(input, i); in FractionalPoolShapeFn()
70 .Input("value: T")
80 .Input("orig_input_shape: int32")
81 .Input("grad: T")
99 .Input("t: T")
100 .Input("m: T")
101 .Input("v: T")
102 .Input("beta: T")
[all …]
Dsparse_ops.cc30 TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 2, &unused)); // a_indices in SparseSparseMinOrMaxShapeFn()
31 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 1, &unused)); // a_values in SparseSparseMinOrMaxShapeFn()
32 TF_RETURN_IF_ERROR(c->WithRank(c->input(2), 1, &unused)); // a_shape in SparseSparseMinOrMaxShapeFn()
33 TF_RETURN_IF_ERROR(c->WithRank(c->input(3), 2, &unused)); // b_indices in SparseSparseMinOrMaxShapeFn()
34 TF_RETURN_IF_ERROR(c->WithRank(c->input(4), 1, &unused)); // b_values in SparseSparseMinOrMaxShapeFn()
35 TF_RETURN_IF_ERROR(c->WithRank(c->input(5), 1, &unused)); // b_shape in SparseSparseMinOrMaxShapeFn()
45 .Input("backprop_val_grad: T")
46 .Input("a_indices: int64")
47 .Input("b_indices: int64")
48 .Input("sum_indices: int64")
[all …]
Dmath_ops.cc28 .Input("inputs: N * T")
35 ShapeHandle cur = c->input(c->num_inputs() - 1); in __anon57f5a5dd0102()
37 TF_RETURN_WITH_CONTEXT_IF_ERROR(c->Merge(c->input(i), cur, &cur), in __anon57f5a5dd0102()
53 .Input("inputs: N * T")
65 .Input("x: T")
66 .Input("y: T")
74 TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(0), 2, &a_shape)); in __anon57f5a5dd0202()
75 TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(1), 2, &b_shape)); in __anon57f5a5dd0202()
113 .Input("x: SrcT")
120 .Input("x: SrcT")
[all …]
Ddataset_ops.cc24 // The ops in this section can be composed to define an input
33 // take one as input) are marked "stateful".
36 .Input("components: Toutput_types")
48 .Input("components: Toutput_types")
60 .Input("indices: int64")
61 .Input("values: Tvalues")
62 .Input("dense_shape: int64")
70 .Input("input_datasets: N * variant")
78 .Input("input_dataset: variant")
79 .Input("another_dataset: variant")
[all …]
Ddata_flow_ops.cc49 .Input("data: T")
50 .Input("partitions: int32")
58 ShapeHandle data_shape = c->input(0); in __anona2f81a440202()
59 ShapeHandle partitions_shape = c->input(1); in __anona2f81a440202()
104 ShapeHandle indices_shape = c->input(i); in DynamicStitchShapeFunction()
105 ShapeHandle data_shape = c->input(i + num_partitions); in DynamicStitchShapeFunction()
143 .Input("indices: N * int32")
144 .Input("data: N * T")
151 .Input("indices: N * int32")
152 .Input("data: N * T")
[all …]
Dlinalg_ops.cc29 Status MakeBatchSquareMatrix(InferenceContext* c, ShapeHandle input, in MakeBatchSquareMatrix() argument
32 TF_RETURN_IF_ERROR(c->WithRankAtLeast(input, 2, &s)); in MakeBatchSquareMatrix()
45 TF_RETURN_IF_ERROR(MakeBatchSquareMatrix(c, c->input(0), &out)); in BatchUnchangedSquareShapeFn()
50 // The first input is [...,M,N] and second input is either [...,M,K] or [...,M].
51 // Output is [...,N,K] or [...,N]. If <square>, then input is [...,M,M].
56 TF_RETURN_IF_ERROR(MakeBatchSquareMatrix(c, c->input(0), &lhs)); in MatrixSolveShapeFn()
58 TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(0), 2, &lhs)); in MatrixSolveShapeFn()
60 TF_RETURN_IF_ERROR(c->WithRankAtLeast(c->input(1), 2, &rhs)); in MatrixSolveShapeFn()
87 // Input is [...,N,N]. Outputs are:
91 ShapeHandle input; in SelfAdjointEigV2ShapeFn() local
[all …]
Darray_ops.cc56 Status PadKnown(InferenceContext* c, ShapeHandle input, in PadKnown() argument
67 TF_RETURN_IF_ERROR(c->Add(c->Dim(input, i), pad0 + pad1, &dims[i])); in PadKnown()
76 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 2, &paddings)); in PadShapeFn()
80 // n_dim and input.rank are equivalent. in PadShapeFn()
81 ShapeHandle input = c->input(0); in PadShapeFn() local
84 TF_RETURN_IF_ERROR(c->WithRank(input, c->Value(n_dim), &input)); in PadShapeFn()
85 } else if (c->RankKnown(input)) { in PadShapeFn()
86 TF_RETURN_IF_ERROR(c->WithValue(n_dim, c->Rank(input), &n_dim)); in PadShapeFn()
103 TF_RETURN_IF_ERROR(c->WithRank(input, num_dims, &input)); in PadShapeFn()
107 return PadKnown<int32>(c, input, paddings_t, num_dims); in PadShapeFn()
[all …]
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3inputstream.c2 /// Base functions to initialize and manipulate any input stream
37 // Generic 8 bit input such as latin-1
55 static void antlr3InputClose (pANTLR3_INPUT_STREAM input);
56 static void antlr3InputReset (pANTLR3_INPUT_STREAM input);
57 static void antlr38BitReuse (pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 i…
58 static void * antlr38BitLT (pANTLR3_INPUT_STREAM input, ANTLR3_INT32 lt);
59 static ANTLR3_UINT32 antlr38BitSize (pANTLR3_INPUT_STREAM input);
60 static pANTLR3_STRING antlr38BitSubstr (pANTLR3_INPUT_STREAM input, ANTLR3_MARKER start, ANTL…
61 static ANTLR3_UINT32 antlr38BitGetLine (pANTLR3_INPUT_STREAM input);
62 static void * antlr38BitGetLineBuf (pANTLR3_INPUT_STREAM input);
[all …]
Dantlr3filestream.c3 * is a filesystem based input set and all the characters in the filestream
7 * sets can be supported from input files. The ANTLR3 C runtime expects
49 static void setupInputStream (pANTLR3_INPUT_STREAM input);
56 pANTLR3_INPUT_STREAM input; in antlr3FileStreamNew() local
63 input = antlr3CreateFileStream(fileName); in antlr3FileStreamNew()
64 if (input == NULL) in antlr3FileStreamNew()
72 input->encoding = encoding; in antlr3FileStreamNew()
77 setupInputStream(input); in antlr3FileStreamNew()
81 input->istream->streamName = input->strFactory->newStr8(input->strFactory, fileName); in antlr3FileStreamNew()
82 input->fileName = input->istream->streamName; in antlr3FileStreamNew()
[all …]
/external/boringssl/src/crypto/evp/
Devp_tests.txt8 Input = 308204bc020100300d06092a864886f70d0101010500048204a6308204a20201000282010100cd0081ea7b2ae1e…
13 Input = 30820122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c7…
17 Input = 30820121300d06092a864886f70d01010105000382010e003082010902820100cd0081ea7b2ae1ea06d59f7c73d…
22 Input = 30820120300b06092a864886f70d0101010382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c73d9f…
27 Input = 3083000122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7…
33 Input = 30820154020100300d06092a864886f70d01010105000482013e3082013a020100024100dd20403d976a38c9d79…
38 Input = 30820157020100300d06092a864886f70d0101010500048201413082013d0201000241054fa166e205e658bbe8a…
43 Input = 308187020100301306072a8648ce3d020106082a8648ce3d030107046d306b02010104208a872fb62893c4d1ffc…
48 Input = 3041020100301306072a8648ce3d020106082a8648ce3d0301070427302502010104208a872fb62893c4d1ffc5b…
53 Input = 308193020100301306072a8648ce3d020106082a8648ce3d0301070479307702010104208a872fb62893c4d1ffc…
[all …]
/external/tensorflow/tensorflow/contrib/lite/models/testdata/
Dspeech_asr_lm_model.test_spec5 input: "63982"
6 input: "8409"
11 input: "8409"
12 input: "1488"
17 input: "1488"
18 input: "63981"
24 input: "63982"
25 input: "8409"
30 input: "8409"
31 input: "3082"
[all …]
/external/ImageMagick/PerlMagick/t/
Dsetattribute.t31 testSetAttribute('input.miff','adjoin','True');
34 testSetAttribute('input.miff','adjoin','False');
37 testSetAttribute('input.miff','antialias','True');
40 testSetAttribute('input.miff','antialias','False');
43 testSetAttribute('input.miff','compression','None');
46 testSetAttribute('input.miff','compression','JPEG');
49 testSetAttribute('input.miff','compression','LZW');
52 testSetAttribute('input.miff','compression','RLE');
55 testSetAttribute('input.miff','compression','Zip');
58 testSetAttribute('input.miff','density','72x72');
[all …]
/external/tensorflow/tensorflow/compiler/tests/
Dlstm_layer_inference.pbtxt75 input: "random_uniform/shape"
105 input: "random_uniform/max"
106 input: "random_uniform/min"
118 input: "random_uniform/RandomUniform"
119 input: "random_uniform/sub"
131 input: "random_uniform/mul"
132 input: "random_uniform/min"
180 input: "weights"
181 input: "random_uniform"
213 input: "weights"
[all …]
/external/tensorflow/tensorflow/core/graph/
Dmkl_layout_pass_test.cc123 REGISTER_OP("Input").Output("o: float").SetIsStateful();
139 "node { name: 'A' op: 'Input'}" in TEST_F()
140 "node { name: 'B' op: 'Input'}" in TEST_F()
142 " input: ['A', 'B'] }" in TEST_F()
144 " input: ['A', 'B'] }"); in TEST_F()
146 "A(Input);B(Input);C(Zeta);D(Zeta)|" in TEST_F()
157 "node { name: 'A' op: 'Input'}" in TEST_F()
158 "node { name: 'B' op: 'Input'}" in TEST_F()
167 " input: ['A', 'B', 'M', 'N']}" in TEST_F()
168 "node { name: 'D' op: 'Input'}" in TEST_F()
[all …]
/external/llvm/test/Transforms/StraightLineStrengthReduce/
Dslsr-gep.ll5 ; foo(input[0]);
6 ; foo(input[s]);
7 ; foo(input[s * 2]);
9 ; p0 = &input[0];
15 define void @slsr_gep(i32* %input, i64 %s) {
17 ; v0 = input[0];
18 %p0 = getelementptr inbounds i32, i32* %input, i64 0
21 ; v1 = input[s];
22 %p1 = getelementptr inbounds i32, i32* %input, i64 %s
23 ; CHECK: %p1 = getelementptr inbounds i32, i32* %input, i64 %s
[all …]
/external/turbine/javatests/com/google/turbine/parse/
DParserIntegrationTest.java42 "anno1.input", in parameters()
43 "annodecl1.input", in parameters()
44 "annodecl2.input", in parameters()
45 "annodecl3.input", in parameters()
46 "annouse.input", in parameters()
47 "annouse2.input", in parameters()
48 "annouse3.input", in parameters()
49 "annouse4.input", in parameters()
50 "annouse5.input", in parameters()
51 "annouse6.input", in parameters()
[all …]
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
Dtest_VIDIOC_ENUMINPUT.c46 struct v4l2_input input; in test_VIDIOC_ENUMINPUT() local
52 memset(&input, 0xff, sizeof(input)); in test_VIDIOC_ENUMINPUT()
53 input.index = i; in test_VIDIOC_ENUMINPUT()
54 ret_enum = ioctl(get_video_fd(), VIDIOC_ENUMINPUT, &input); in test_VIDIOC_ENUMINPUT()
63 CU_ASSERT_EQUAL(input.index, i); in test_VIDIOC_ENUMINPUT()
65 CU_ASSERT(0 < strlen((char *)input.name)); in test_VIDIOC_ENUMINPUT()
67 ((char *)input.name, sizeof(input.name))); in test_VIDIOC_ENUMINPUT()
69 //CU_ASSERT_EQUAL(input.type, ?); in test_VIDIOC_ENUMINPUT()
70 //CU_ASSERT_EQUAL(input.audioset, ?); in test_VIDIOC_ENUMINPUT()
71 //CU_ASSERT_EQUAL(input.tuner, ?); in test_VIDIOC_ENUMINPUT()
[all …]
/external/tensorflow/tensorflow/core/framework/
Dnode_def_builder_test.cc116 Op(OpDefBuilder("Simple").Input("a: int32").Output("out: float")); in TEST_F()
118 ExpectSuccess(Builder().Input("x", 0, DT_INT32), {DT_INT32}, {DT_FLOAT}, in TEST_F()
119 R"proto( op: "Simple" input: "x" )proto"); in TEST_F()
122 ExpectSuccess(Builder().Input("y", 2, DT_INT32), {DT_INT32}, {DT_FLOAT}, in TEST_F()
123 R"proto( op: "Simple" input: "y:2" )proto"); in TEST_F()
126 ExpectSuccess(Builder().Input(FakeInput()), {DT_INT32}, {DT_FLOAT}, R"proto( in TEST_F()
127 op: "Simple" input: "a" )proto"); in TEST_F()
129 ExpectSuccess(Builder().Input(FakeInput(DT_INT32)), {DT_INT32}, {DT_FLOAT}, in TEST_F()
130 R"proto( op: "Simple" input: "a" )proto"); in TEST_F()
132 // Ref input in TEST_F()
[all …]
/external/tensorflow/tensorflow/contrib/rnn/ops/
Dlstm_ops.cc26 .Input("x: T")
27 .Input("cs_prev: T")
28 .Input("h_prev: T")
29 .Input("w: T")
30 .Input("wci: T")
31 .Input("wcf: T")
32 .Input("wco: T")
33 .Input("b: T")
47 TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 2, &x)); in __anonad8b69780102()
48 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 2, &cs_prev)); in __anonad8b69780102()
[all …]
/external/desugar/java/com/google/devtools/common/options/
DConverters.java38 public Boolean convert(String input) throws OptionsParsingException { in convert() argument
39 if (input == null) { in convert()
42 input = input.toLowerCase(); in convert()
43 if (input.equals("true") in convert()
44 || input.equals("1") in convert()
45 || input.equals("yes") in convert()
46 || input.equals("t") in convert()
47 || input.equals("y")) { in convert()
50 if (input.equals("false") in convert()
51 || input.equals("0") in convert()
[all …]
/external/python/cpython3/Modules/_sha3/kcp/
DKeccakP-1600-64.macros551 #define copyFromStateAndAdd(X, state, input, laneCount) \
560 X##ba = state[ 0]^input[ 0]; \
566 X##ba = state[ 0]^input[ 0]; \
567 X##be = state[ 1]^input[ 1]; \
572 X##bi = state[ 2]^input[ 2]; \
581 X##ba = state[ 0]^input[ 0]; \
582 X##be = state[ 1]^input[ 1]; \
583 X##bi = state[ 2]^input[ 2]; \
584 X##bo = state[ 3]^input[ 3]; \
590 X##bu = state[ 4]^input[ 4]; \
[all …]
/external/toybox/tests/
Dgrep.test10 testing "-c" "grep -c 123 input" "3\n" "123\ncount 123\n123\nfasdfasdf" ""
18 testing "-q" "grep -q test input && echo yes" "yes\n" "this is a test\n" ""
19 testing "-E" "grep -E '[0-9]' input" "1234123asdfas123123\n1\n" \
21 testing "-e" "grep -e '[0-9]' input" "1234123asdfas123123\n1\n" \
23 testing "-e -e" "grep -e one -e two -e three input" \
25 testing "-F" "grep -F is input" "this is test\nthis is test2\n" \
34 testing "-b" "grep -b is input" "0:this is test\n13:this is test2\n" \
36 testing "-i" "grep -i is input" "thisIs test\nthis is test2\n" \
38 testing "-n" "grep -n is input" "1:this is test\n2:this is test2\n" \
40 testing "-o" "grep -o is input" "is\nis\nis\nis\n" \
[all …]
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3input.h3 * streams from any input source. Any character size and encoding
6 * to specific offsets into their input streams.
52 /// Master context structure for an ANTLR3 C runtime based input stream.
63 /** Whatever super structure is providing the INPUT stream needs a pointer to itself
69 /** Pointer the start of the input string, characters may be
70 * taken as offsets from here and in original input format encoding.
79 /** String factory for this input stream
84 /** Pointer to the next character to be consumed from the input data
86 * was read by the functions installed as pointer in this input stream
93 * input source is a stream such as a socket or something then we may
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_idct.c20 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht4x4_16_add_c() argument
36 IHT_4[tx_type].rows(input, outptr); in vp9_iht4x4_16_add_c()
37 input += 4; in vp9_iht4x4_16_add_c()
59 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht8x8_64_add_c() argument
69 ht.rows(input, outptr); in vp9_iht8x8_64_add_c()
70 input += 8; in vp9_iht8x8_64_add_c()
92 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht16x16_256_add_c() argument
102 ht.rows(input, outptr); in vp9_iht16x16_256_add_c()
103 input += 16; in vp9_iht16x16_256_add_c()
119 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride, in vp9_idct4x4_add() argument
[all …]

12345678910>>...343