/aosp_15_r20/external/pytorch/test/torch_np/numpy_tests/core/ |
H A D | test_shape_base.py | 31 hstack, 46 hstack, 171 assert_raises(TypeError, hstack, 1) 174 assert_raises(ValueError, hstack, ()) 179 res = hstack([a, b]) 186 res = hstack([a, b]) 193 res = hstack([a, b]) 200 hstack([np.arange(3) for _ in range(2)]) 202 hstack([x for x in np.ones((3, 2))]) # noqa: C416 208 res = np.hstack(np.append(a, b), casting="unsafe", dtype=np.int64) [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/nn_ops/ |
H A D | rnn_cell_test.py | 669 self.assertAllEqual(state_notuple_v, np.hstack(state_tuple_v)) 1025 comparison_fn(np.hstack(state_static), np.hstack(state_dynamic)) 1117 comparison_fn(np.hstack(state_static), np.hstack(state_dynamic)) 1822 self.assertAllEqual(np.hstack(state_static_v), np.hstack(state_dynamic_v)) 1823 self.assertAllEqual(np.hstack(state_static_v), np.hstack(state_sav_v)) 1824 self.assertAllEqual(np.hstack(state_static_v), np.hstack(state_bid_fw_v)) 1825 self.assertAllEqual(np.hstack(state_static_v), np.hstack(state_bid_bw_v)) 1946 self.assertAllEqual(np.hstack(state_static_v), np.hstack(state_dynamic_v)) 1947 self.assertAllEqual(np.hstack(state_static_v), np.hstack(state_sav_v)) 1948 self.assertAllEqual(np.hstack(state_static_v), np.hstack(state_bid_fw_v)) [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/data_structures/ |
H A D | priority_queue_test.py | 136 all_enqueued_values = np.hstack(enqueue_values) 189 all_enqueued_values = np.hstack(enqueue_values) 307 deq_values = np.hstack((q.dequeue_many(100)[0].eval() for _ in range(10))) 316 deq_values = np.hstack(dequeue_op[0].eval() for _ in range(1000))
|
/aosp_15_r20/external/libopus/dnn/torch/neural-pitch/ |
H A D | data_augmentation.py | 146 list_cents = np.hstack(list_cents) 147 list_confidences = np.hstack(list_confidences)
|
/aosp_15_r20/external/pytorch/test/onnx/ |
H A D | test_op_consistency.py | 68 "hstack", 113 skip("hstack", opsets=[onnx_test_common.opsets_before(11)],
|
/aosp_15_r20/external/executorch/examples/demo-apps/apple_ios/LLaMA/LLaMA/Application/ |
H A D | ContentView.swift | 128 HStack { 192 HStack {
|
H A D | MessageView.swift | 29 HStack {
|
/aosp_15_r20/external/pytorch/test/torch_np/ |
H A D | test_basic.py | 52 w.hstack, 327 w.hstack,
|
/aosp_15_r20/external/executorch/examples/demo-apps/apple_ios/ExecuTorchDemo/ExecuTorchDemo/Sources/App/ |
H A D | CustomViews.swift | 66 HStack {
|
/aosp_15_r20/external/pytorch/torch/onnx/ |
H A D | symbolic_opset11.py | 50 "hstack", 1432 @_onnx_symbolic("aten::hstack") 1433 def hstack(g: jit_utils.GraphContext, tensor_list: _C.Value): function
|
H A D | symbolic_opset17.py | 193 torch_window = torch.hstack(
|
/aosp_15_r20/external/pytorch/functorch/op_analysis/ |
H A D | public_api | 185 hstack
|
H A D | annotated_ops | 260 hstack, view/reshape
|
/aosp_15_r20/external/libopus/dnn/torch/fwgan/ |
H A D | inference.py | 83 …bfcc_with_corr = torch.from_numpy(np.hstack((bfcc, corr))).type(torch.FloatTensor).unsqueeze(0)#.…
|
/aosp_15_r20/external/pytorch/test/mobile/model_test/ |
H A D | coverage.yaml | 287 - aten::hstack 840 aten::hstack: 2
|
H A D | tensor_ops.py | 177 torch.hstack((x, x)),
|
H A D | model_ops.yaml | 177 aten::hstack: 2
|
/aosp_15_r20/external/pytorch/docs/source/ |
H A D | masked.rst | 282 hstack
|
H A D | torch.rst | 104 hstack
|
/aosp_15_r20/external/pytorch/test/torch_np/numpy_tests/lib/ |
H A D | test_histograms.py | 625 outlier_dataset = np.hstack((np.linspace(-110, -100, 5), xcenter)) 696 x = np.hstack((x1, x2, x3))
|
/aosp_15_r20/external/pytorch/test/jit/ |
H A D | test_remove_mutation.py | 282 for op in ["cat", "stack", "vstack", "hstack", "dstack"]:
|
/aosp_15_r20/external/pytorch/aten/src/ATen/functorch/ |
H A D | BatchRulesDecompositions.cpp | 150 OP_DECOMPOSE(hstack); in TORCH_LIBRARY_IMPL()
|
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/distributions/ |
H A D | special_math_test.py | 97 p = np.hstack((p, np.exp(-32), 1. - np.exp(-32), np.exp(-2),
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/ |
H A D | TensorShape.cpp | 119 #include <ATen/ops/hstack.h> 2812 Tensor hstack(TensorList tensors) { in hstack() function 2814 "hstack expects a non-empty TensorList"); in hstack() 2824 "hstack expects a non-empty TensorList"); in hstack_out() 2929 return at::hstack(reshaped_tensors); in column_stack()
|
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
H A D | np_array_ops.py | 1053 @np_utils.np_doc('hstack') 1054 def hstack(tup): function
|