Home
last modified time | relevance | path

Searched full:__isnot__ (Results 1 – 20 of 20) sorted by relevance

/aosp_15_r20/external/pytorch/test/cpp/jit/
H A Dtest_peephole_optimize.cpp21 %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 Dpeephole_non_tensor.cpp170 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 Dnormalize_ops.cpp37 // `__isnot__`)
47 if (iter->kind() == aten::__isnot__) { in normalizeIsBool()
H A Deliminate_no_ops.cpp23 if (kind == aten::__is__ || kind == aten::__isnot__) { in cannotOptimize()
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/
H A Dserialized_shape_function_registry.cpp258 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 Dinstruction.cpp83 __ISNOT__, FORMAT, DEVICE, DICT_INDEX, in isOpSupportedInMobile()
H A Dinstruction.h61 _(__ISNOT__, "") /* performs `is not` operator from Python */ \
H A Dinterpreter.cpp711 case INST(__ISNOT__): { in runTemplate()
H A Dregister_prim_ops.cpp581 TORCH_SELECTIVE_SCHEMA("aten::__isnot__(t1 self, t2 obj) -> bool"),
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/interpreter/
H A Dcode_impl.h826 case aten::__isnot__: in emitNode()
827 emitOperatorOrInstruction(node, __ISNOT__); in emitNode()
/aosp_15_r20/external/pytorch/aten/src/ATen/core/
H A Dinterned_strings.h195 _(aten, __isnot__) \
/aosp_15_r20/external/pytorch/torch/csrc/jit/mobile/
H A Dpromoted_prim_ops.cpp249 mobile::prim_op_fn_register("aten::__isnot__", isNot),
H A Dinterpreter.cpp295 case __ISNOT__: { in run()
/aosp_15_r20/external/pytorch/test/mobile/model_test/
H A Dmodel_ops.yaml27 aten::__isnot__: 79
H A Dcoverage.yaml1049 aten::__isnot__: 81
/aosp_15_r20/external/pytorch/
H A Dpt_ops.bzl209 "aten::__isnot__",
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/static/
H A Dimpl.cpp81 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 Dtest_peephole.py264 FileCheck().check_count("aten::__isnot__", 0, exactly=True).run(op_graph)
/aosp_15_r20/external/pytorch/torch/_export/
H A Dconverter.py235 "aten::__isnot__": operator.is_not,
/aosp_15_r20/external/pytorch/torch/csrc/jit/frontend/
H A Dir_emitter.cpp3249 return aten::__isnot__; in getNodeKind()