/aosp_15_r20/external/pytorch/test/cpp/jit/ |
H A D | test_peephole_optimize.cpp | 20 %2 : bool = aten::__is__(%0, %1) in TEST() 27 .check_not("aten::__is__") in TEST() 38 %2 : bool = aten::__is__(%0, %1) in TEST() 45 .check("aten::__is__") in TEST() 57 %4 : bool = aten::__is__(%0, %1) in TEST() 64 .check("aten::__is__") in TEST()
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/ |
H A D | serialized_shape_function_registry.cpp | 1494 if torch.__is__(bias, None): 1597 if torch.__is__(bias, None): 1716 if torch.__is__(bias, None): 1889 if torch.__is__(stride, None): 1893 if torch.__is__(padding, None): 1897 if torch.__is__(output_padding, None): 1902 if torch.__is__(dilation, None): 2019 if torch.__is__(out_dim, None): 2046 if torch.__is__(out_dim, None): 2070 _10 = torch.__is__(not_skipped_tensor, None) [all …]
|
H A D | decomposition_registry_util.cpp | 21 if torch.__is__(dim, None): 38 if torch.__is__(correction, None):
|
H A D | instruction.cpp | 82 RAISE_EXCEPTION, UNCHECKED_CAST, __IS__, UN_INITIALIZED, in isOpSupportedInMobile()
|
H A D | instruction.h | 58 _(__IS__, "") /* performs `is` operator from Python */ \
|
H A D | interpreter.cpp | 701 case INST(__IS__): { in runTemplate()
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/passes/ |
H A D | eliminate_no_ops.cpp | 23 if (kind == aten::__is__ || kind == aten::__isnot__) { in cannotOptimize() 32 // %b : bool = aten::__is__(%y, %x) (= False) 34 // %b : bool = aten::__is__(%x, %x) (= True!)
|
H A D | normalize_ops.cpp | 36 // Normalizes a `__is__` comparison with a bool to `eq` (and same with 42 if (iter->kind() == aten::__is__) { in normalizeIsBool()
|
H A D | peephole_non_tensor.cpp | 170 node->kind() == aten::__is__ || node->kind() == aten::__isnot__) { in optimizeBlock() 173 // __is__ in optimizeBlock()
|
H A D | specialize_autogradzero.cpp | 233 auto check = graph_->insert(aten::__is__, {inp, none_val})->node(); in guardSpecializations()
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/mobile/ |
H A D | upgrader_mobile.cpp | 487 Instruction{OpCode::__IS__, 0, 0}, in getUpgraderBytecodeList() 537 Instruction{OpCode::__IS__, 0, 0}, in getUpgraderBytecodeList() 578 Instruction{OpCode::__IS__, 0, 0}, in getUpgraderBytecodeList() 631 Instruction{OpCode::__IS__, 0, 0}, in getUpgraderBytecodeList()
|
H A D | promoted_prim_ops.cpp | 248 mobile::prim_op_fn_register("aten::__is__", is),
|
H A D | interpreter.cpp | 287 case __IS__: { in run()
|
/aosp_15_r20/external/rust/android-crates-io/crates/annotate-snippets/tests/ |
D | dl_from_snippet.rs | 254 label: Some("This __is__ a title"), in test_format_label() 266 content: "This __is__ a title", in test_format_label()
|
/aosp_15_r20/external/pytorch/test/mobile/ |
H A D | test_upgrader_bytecode_table_example.cpp | 336 OperatorString({"aten::__is__", "", 2}), in getUpgraderBytecodeList() 378 OperatorString({"aten::__is__", "", 2}), in getUpgraderBytecodeList()
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/interpreter/ |
H A D | code_impl.h | 823 case aten::__is__: in emitNode() 824 emitOperatorOrInstruction(node, __IS__); in emitNode()
|
/aosp_15_r20/external/pytorch/aten/src/ATen/core/ |
H A D | interned_strings.h | 194 _(aten, __is__) \
|
/aosp_15_r20/external/pytorch/test/mobile/model_test/ |
H A D | model_ops.yaml | 26 aten::__is__: 80
|
H A D | coverage.yaml | 1048 aten::__is__: 83
|
/aosp_15_r20/external/pytorch/ |
H A D | pt_ops.bzl | 208 "aten::__is__",
|
/aosp_15_r20/external/OpenCSD/decoder/docs/prog_guide/ |
H A D | prog_guide_generic_pkts.md | 285 … can have an associated cycle count (`has_cc == 1`). For this protocol, the cycle count __is__ part
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/static/ |
H A D | impl.cpp | 81 if (kind != aten::__is__ && kind != aten::__isnot__) { in isUnsupportedOp() 85 // We can't support aten::__is__ (and __isnot__) with tensor arguments. in isUnsupportedOp()
|
/aosp_15_r20/external/pytorch/test/jit/ |
H A D | test_peephole.py | 254 FileCheck().check_count("aten::__is__", 0, exactly=True).run(op_graph)
|
/aosp_15_r20/external/pytorch/torch/_export/ |
H A D | converter.py | 234 "aten::__is__": operator.is_,
|
/aosp_15_r20/external/pytorch/benchmarks/static_runtime/ |
H A D | test_static_module.cc | 369 # aten::__is__ on tensors is blocked in TEST()
|