Searched refs:inp (Results 1 – 7 of 7) sorted by relevance
25 inp=Input("input", "TENSOR_FLOAT32", "{2, 2}"),33 inp=Input("input", "TENSOR_FLOAT32", "{2, 3}"),41 inp=Input("input", "TENSOR_FLOAT32", "{2, 4}"),49 inp=Input("input", "TENSOR_FLOAT32", "{8}"),57 inp=Input("input", "TENSOR_QUANT8_ASYMM", "{2, 3}, 2.0, 128"),65 inp=Input("input", "TENSOR_INT32", "{2, 3}"),75 model = Model().Operation("TOPK_V2", test_case.inp, test_case.k).To(78 test_case.inp: test_case.inp_data,
25 inp=Input("input", "TENSOR_FLOAT32", "{4}"),34 inp=Input("input", "TENSOR_FLOAT32", "{2,3}"),43 inp=Input("input", "TENSOR_FLOAT32", "{2,3,2}"),52 inp=Input("input", "TENSOR_FLOAT32", "{4, 1, 1, 1}"),61 inp=Input("input", "TENSOR_INT32", "{3, 2, 3, 1}"),70 inp=Input("input", "TENSOR_INT32", "{3, 2, 3, 1}"),79 inp=Input("input", "TENSOR_QUANT8_ASYMM", "{3, 2, 3, 1}, 2.0, 128"),88 inp=Input("input", "TENSOR_INT32", "{3, 2, 3, 1}"),99 model = Model().Operation("SLICE", test_case.inp, test_case.begin,102 test_case.inp: test_case.inp_data,
82 def pack_language_or_region(inp, base): argument84 if inp is None:86 elif len(inp) == 2:87 return ord(inp[0]), ord(inp[1])89 assert len(inp) == 391 first = ord(inp[0]) - base92 second = ord(inp[1]) - base93 third = ord(inp[2]) - base
48 #define cpuid(a, b, c, d, inp) \ argument52 : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp))54 #define cpuid(a, b, c, d, inp) \ argument58 : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp))
97 const short* inp = &in[i * 2]; in android_media_ResampleInputStream_fir21() local99 sum += ((long)*firp++) * ((long)*inp++); in android_media_ResampleInputStream_fir21()
67 def printable(inp): argument68 if type(inp) is set: # set of character sequences69 return '{' + ', '.join([printable(seq) for seq in inp]) + '}'70 if type(inp) is tuple: # character sequence71 return '<' + (', '.join([printable(ch) for ch in inp])) + '>'73 return 'U+%04X' % inp
287 #define VALIDATE_FREXP_HALF(inp, ref, refExp) \290 half out = frexp(((half) inp), &exp); \310 #define VALIDATE_MODF_HALF(inp, ref, refIntPart) \315 half out = modf(((half) inp), &intPart[1]); \