Searched full:__isnot__ (Results 1 – 20 of 20) sorted by relevance
/aosp_15_r20/external/pytorch/test/cpp/jit/ |
H A D | test_peephole_optimize.cpp | 21 %3 : bool = aten::__isnot__(%0, %1) in TEST() 28 ->check_not("aten::__isnot__") in TEST() 39 %3 : bool = aten::__isnot__(%0, %1) in TEST() 46 ->check("aten::__isnot__") in TEST() 58 %5 : bool = aten::__isnot__(%1, %2) in TEST() 65 ->check_not("aten::__isnot__") in TEST()
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/passes/ |
H A D | peephole_non_tensor.cpp | 170 node->kind() == aten::__is__ || node->kind() == aten::__isnot__) { in optimizeBlock() 172 // replace the output with true if node is __isnot__ or false if node is in optimizeBlock() 183 node->kind() == aten::__isnot__); in optimizeBlock()
|
H A D | normalize_ops.cpp | 37 // `__isnot__`) 47 if (iter->kind() == aten::__isnot__) { in normalizeIsBool()
|
H A D | eliminate_no_ops.cpp | 23 if (kind == aten::__is__ || kind == aten::__isnot__) { in cannotOptimize()
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/ |
H A D | serialized_shape_function_registry.cpp | 258 if torch.__isnot__(start, None): 262 if torch.__isnot__(end, None): 888 if torch.__isnot__(bias, None): 2447 if torch.__isnot__(infer_dim, None): 2463 if torch.__isnot__(infer_dim, None): 2483 if torch.__isnot__(infer_dim1, None): 2761 if torch.__isnot__(output_size, None): 2778 if torch.__isnot__(scale_factors2, None):
|
H A D | instruction.cpp | 83 __ISNOT__, FORMAT, DEVICE, DICT_INDEX, in isOpSupportedInMobile()
|
H A D | instruction.h | 61 _(__ISNOT__, "") /* performs `is not` operator from Python */ \
|
H A D | interpreter.cpp | 711 case INST(__ISNOT__): { in runTemplate()
|
H A D | register_prim_ops.cpp | 581 TORCH_SELECTIVE_SCHEMA("aten::__isnot__(t1 self, t2 obj) -> bool"),
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/interpreter/ |
H A D | code_impl.h | 826 case aten::__isnot__: in emitNode() 827 emitOperatorOrInstruction(node, __ISNOT__); in emitNode()
|
/aosp_15_r20/external/pytorch/aten/src/ATen/core/ |
H A D | interned_strings.h | 195 _(aten, __isnot__) \
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/mobile/ |
H A D | promoted_prim_ops.cpp | 249 mobile::prim_op_fn_register("aten::__isnot__", isNot),
|
H A D | interpreter.cpp | 295 case __ISNOT__: { in run()
|
/aosp_15_r20/external/pytorch/test/mobile/model_test/ |
H A D | model_ops.yaml | 27 aten::__isnot__: 79
|
H A D | coverage.yaml | 1049 aten::__isnot__: 81
|
/aosp_15_r20/external/pytorch/ |
H A D | pt_ops.bzl | 209 "aten::__isnot__",
|
/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 | 264 FileCheck().check_count("aten::__isnot__", 0, exactly=True).run(op_graph)
|
/aosp_15_r20/external/pytorch/torch/_export/ |
H A D | converter.py | 235 "aten::__isnot__": operator.is_not,
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/frontend/ |
H A D | ir_emitter.cpp | 3249 return aten::__isnot__; in getNodeKind()
|