/aosp_15_r20/external/python/cpython2/Lib/idlelib/ |
D | Debugger.py | 55 vstack = vsource = vlocals = vglobals = None variable in Debugger 156 if not self.vstack: 157 self.__class__.vstack = BooleanVar(top) 158 self.vstack.set(1) 160 text="Stack", command=self.show_stack, variable=self.vstack) 192 if self.vstack.get(): 288 if not self.stackviewer and self.vstack.get(): 295 if sv and not self.vstack.get():
|
/aosp_15_r20/external/python/cpython3/Lib/idlelib/ |
D | debugger.py | 60 vstack = vsource = vlocals = vglobals = None variable in Debugger 161 if not self.vstack: 162 self.__class__.vstack = BooleanVar(top) 163 self.vstack.set(1) 165 text="Stack", command=self.show_stack, variable=self.vstack) 197 if self.vstack.get(): 294 if not self.stackviewer and self.vstack.get(): 301 if sv and not self.vstack.get():
|
/aosp_15_r20/external/pytorch/test/torch_np/numpy_tests/core/ |
H A D | test_shape_base.py | 34 vstack, 49 vstack, 221 assert_raises(TypeError, vstack, 1) 224 assert_raises(ValueError, vstack, ()) 229 res = vstack([a, b]) 236 res = vstack([a, b]) 243 res = vstack([a, b]) 250 res = vstack([a, b]) 254 @xfail # (reason="vstack w/generators") 257 vstack(np.arange(3) for _ in range(2)) [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/python/training/ |
H A D | input_test.py | 482 np.vstack(( 582 np.vstack((np.arange(batch_size), np.zeros(batch_size))).T) 622 np.vstack((np.arange(batch_size), np.zeros(batch_size))).T) 662 np.vstack(( 679 np.vstack(( 721 np.vstack((np.arange(batch_size), np.zeros(batch_size))).T) 733 np.vstack((np.arange(extra_elements), np.zeros(extra_elements))).T) 1069 np.vstack((np.arange(batch_size), np.zeros(batch_size))).T) 1253 np.vstack((np.arange(batch_size), np.zeros(batch_size))).T) 1272 np.vstack((np.arange(2 * extra_elements), [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/sparse_ops/ |
H A D | sparse_tensor_dense_matmul_op_test.py | 61 x_indices = np.vstack(np.where(x)).astype(indices_dtype).T 113 x_indices = np.vstack(np.where(x)).astype(np.int64).T 371 x_ind = constant_op.constant(np.vstack(np.where(x)).astype(np.int64).T) 379 x_ind = constant_op.constant(np.vstack(np.where(x)).astype(np.int64).T)
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/tests/ |
H A D | gather_nd_op_test.py | 110 np.vstack((params[np.newaxis, :], params[np.newaxis, :])), 126 indices = np.vstack( 136 indices = np.vstack(
|
H A D | cholesky_op_test.py | 71 self._verifyCholesky(np.vstack((simple_array, simple_array))) 74 self._verifyCholesky(np.vstack((odd_sized_array, odd_sized_array)))
|
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/array_ops/ |
H A D | gather_nd_op_test.py | 149 np.vstack((params[np.newaxis, :], params[np.newaxis, :])), 171 indices = np.vstack([np.random.randint(0, s, size=2000) for s in shape]).T 183 indices = np.vstack([np.random.randint(0, s, size=2000) for s in shape]).T 390 indices = np.vstack([np.random.randint(0, s, size=10000) for s in shape]).T
|
H A D | where_op_test.py | 69 truth = np.vstack([np.where(x)[0].astype(np.int64)]).T 96 truth = np.vstack(truth).T # Convert to [num_true, indices].
|
/aosp_15_r20/external/executorch/examples/demo-apps/apple_ios/ExecuTorchDemo/ExecuTorchDemo/Sources/App/ |
H A D | CustomViews.swift | 29 VStack(alignment: .leading) { 46 VStack {
|
H A D | ContentView.swift | 32 VStack(spacing: 0) {
|
/aosp_15_r20/external/executorch/examples/demo-apps/apple_ios/LLaMA/LLaMA/Application/ |
H A D | MessageView.swift | 15 VStack(alignment: .center) { 22 …VStack(alignment: message.type == .llamagenerated || message.type == .llavagenerated ? .leading : …
|
H A D | ContentView.swift | 102 VStack { 104 VStack(spacing: 20) {
|
H A D | LogView.swift | 18 VStack(alignment: .leading) {
|
H A D | MessageListView.swift | 20 VStack {
|
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/signal/ |
H A D | shape_ops_test.py | 182 signal = np.vstack([np.arange(6), 210 signal = np.vstack([np.arange(6), 310 input_signal = np.vstack([np.arange(4), np.arange(4) + 10,
|
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/math_ops/ |
H A D | aggregate_ops_test.py | 62 expected = np.sum(np.vstack( 76 expected = np.sum(np.vstack([np.expand_dims(data, 0)] * count),
|
/aosp_15_r20/external/tensorflow/tensorflow/python/data/kernel_tests/ |
H A D | group_by_window_test.py | 75 expected_vec3_str = np.vstack(3 * [np.arange(32).astype(bytes)]).T 116 expected_vec3_str = np.vstack(3 * 128 expected_vec3_str = np.vstack(
|
/aosp_15_r20/external/pytorch/functorch/dim/ |
H A D | README.md | 639 ### Puzzle 9 - vstack 641 Compute [vstack](https://numpy.org/doc/stable/reference/generated/numpy.vstack.html) - the matrix o… 649 def vstack(a, b):
|
/aosp_15_r20/external/pytorch/torch/ao/quantization/experimental/ |
H A D | adaround_optimization.py | 194 inp_tensor = torch.vstack(inp) 195 out_tensor = torch.vstack(out)
|
/aosp_15_r20/external/pytorch/test/onnx/ |
H A D | test_op_consistency.py | 81 "vstack", 175 skip("vstack", opsets=[onnx_test_common.opsets_before(11)],
|
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/linalg/ |
H A D | lu_op_test.py | 187 self._verifyLu(np.vstack((simple_array, simple_array))) 189 self._verifyLu(np.vstack((odd_sized_array, odd_sized_array)))
|
H A D | cholesky_op_test.py | 124 self._verifyCholesky(np.vstack((simple_array, simple_array))) 126 self._verifyCholesky(np.vstack((odd_sized_array, odd_sized_array)))
|
/aosp_15_r20/external/pytorch/test/torch_np/ |
H A D | test_basic.py | 51 w.vstack, 326 w.vstack,
|
/aosp_15_r20/external/pytorch/torch/_numpy/ |
H A D | _funcs_impl.py | 123 def vstack( function 131 return torch.vstack(tensors) 134 row_stack = vstack 168 # but row_stack does. (because row_stack is an alias for vstack, really).
|