Home
last modified time | relevance | path

Searched refs:binary_ops (Results 1 – 22 of 22) sorted by relevance

/aosp_15_r20/external/executorch/kernels/optimized/cpu/
H A Dtargets.bzl8 ":binary_ops",
22 ":binary_ops",
73 ":binary_ops",
90 ":binary_ops",
114 name = "binary_ops",
115 exported_headers = ["binary_ops.h"],
/aosp_15_r20/external/executorch/backends/apple/mps/operators/
H A D__init__.py9 binary_ops,
46 binary_ops,
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tfrt/jit/
H A Dtf_cpurt_clustering.cc230 llvm::StringSet<> binary_ops = { in IsBinaryOp() local
263 return [binary_ops = std::move(binary_ops)](Operation* op) { in IsBinaryOp()
264 return binary_ops.contains(op->getName().getStringRef()); in IsBinaryOp()
/aosp_15_r20/external/pytorch/torch/_inductor/fx_passes/
H A Dmkldnn_fusion.py633 binary_ops = [aten.add, ops.add]
638 for binary_op in binary_ops:
679 binary_ops = [aten.add, ops.add, aten.sub, ops.sub]
688 for binary_op in binary_ops:
701 binary_ops = [aten.add, ops.add, aten.sub, ops.sub]
707 for binary_op in binary_ops:
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tfrt/jit/transforms/
H A Dtf_jitrt_clustering.cc242 llvm::StringSet<> binary_ops = { in IsBinaryOp() local
276 return [binary_ops = std::move(binary_ops)](Operation* op) { in IsBinaryOp()
277 return binary_ops.contains(op->getName().getStringRef()); in IsBinaryOp()
/aosp_15_r20/external/pytorch/tools/pyi/
H A Dgen_pyi.py180 binary_ops = ( variable
222 all_ops = binary_ops + comparison_ops + unary_ops + to_py_type_ops
235 if name in binary_ops:
/aosp_15_r20/external/pytorch/test/
H A Dtest_jit_fuser_te.py656 binary_ops = [
664 for dtype, op, device in product(self.int_dtypes, binary_ops, devices):
689 binary_ops = [torch.min, torch.max]
691 for dtype, op, device in product(self.int_dtypes, binary_ops, devices):
1601 binary_ops = [
1627 for dtype, op, device in product(self.dtypes, binary_ops, devices):
1659 binary_ops = [
1680 dtypes, dtypes, binary_ops, devices
1777 binary_ops = [
1795 self.dtypes, binary_ops, devices, scalars
[all …]
H A Dtest_binary_ufuncs.py1161 binary_ops = (torch.add, torch.sub)
1162 for op in unary_ops + binary_ops:
H A Dtest_torch.py5039 binary_ops = (torch.eq, torch.add)
5044 for op in binary_ops:
/aosp_15_r20/external/pytorch/test/jit/
H A Dtest_symbolic_shape_analysis.py158 binary_ops = [
165 for fn in binary_ops:
184 binary_ops = [
189 for fn in binary_ops:
/aosp_15_r20/external/pytorch/benchmarks/tensorexpr/
H A Dmicrobenchmarks.py109 binary_ops = [ variable
196 for name, lmbda, pt_fn, shape_fn in normalize_benchmarks(binary_ops):
/aosp_15_r20/external/ply/ply/example/GardenSnake/
H A DGardenSnake.py552 binary_ops = { variable
584 p[0] = binary_ops[p[2]]((p[1], p[3]))
/aosp_15_r20/art/test/dexdump/
H A Dall.lst4 0x000004a0 130 A binary_ops ()V (none) -1
H A Dall.txt151 name : 'binary_ops'
160 000490: |[000490] A.binary_ops:()V
H A Dall-dex-files.lst4 0x000004a0 130 A binary_ops ()V (none) -1
H A Dall-dex-files.txt151 name : 'binary_ops'
160 000490: |[000490] A.binary_ops:()V
/aosp_15_r20/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A DBUILD36 "binary_ops.cc",
/aosp_15_r20/external/zucchini/testdata/
H A Dall.smali88 .method public static binary_ops()V
/aosp_15_r20/external/tensorflow/tensorflow/compiler/tf2tensorrt/
H A DBUILD676 "convert/ops/binary_ops.cc",
/aosp_15_r20/external/tensorflow/tensorflow/core/grappler/costs/
H A Dop_level_cost_estimator_test.cc1117 std::vector<std::pair<std::string, int>> binary_ops = { in TEST_F() local
1126 for (auto binary_op : binary_ops) { in TEST_F()
/aosp_15_r20/external/python/cpython3/Python/
Dceval.c871 static const binaryfunc binary_ops[] = { variable
5551 assert((unsigned)oparg < Py_ARRAY_LENGTH(binary_ops));
5552 assert(binary_ops[oparg]);
5553 PyObject *res = binary_ops[oparg](lhs, rhs);
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/parallel_for/
H A Dcontrol_flow_ops_test.py364 binary_ops = [
371 for op in binary_ops: