Home
last modified time | relevance | path

Searched refs:a_tuple (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Doc/faq/
Dprogramming.rst1345 Why does a_tuple[i] += ['item'] raise an exception when the addition works?
1358 >>> a_tuple = (1, 2)
1359 >>> a_tuple[0] += 1
1365 object ``a_tuple[0]`` points to (``1``), producing the result object, ``2``,
1373 >>> result = a_tuple[0] + 1
1374 >>> a_tuple[0] = result
1384 >>> a_tuple = (['foo'], 'bar')
1385 >>> a_tuple[0] += ['item']
1393 >>> a_tuple[0]
1421 >>> result = a_tuple[0].__iadd__(['item'])
[all …]
/external/pytorch/torch/_inductor/
Dlowering.py5587 def combine_fn(a_tuple, b_tuple): argument
5588 (a,) = a_tuple
5611 def combine_fn(a_tuple, b_tuple): argument
5612 (a,) = a_tuple
5625 def log_add_exp_helper(a_tuple, b_tuple): argument
5626 (a,) = a_tuple
/external/sdv/vsomeip/third_party/boost/tuple/doc/
Dtuple_users_guide.qbk250 should be qualified as `tuples::get<N>(a_tuple)` when writing code that should
/external/tensorflow/tensorflow/compiler/xla/service/
Dbuffer_assignment_test.cc1701 auto a_tuple = in TEST_F() local
1704 HloInstruction::CreateCall(tuple_shape, {a_tuple}, b_computation.get())); in TEST_F()
/external/pytorch/docs/source/
Djit_language_reference.rst637 a, b, *c = a_tuple