/external/fonttools/Tests/otlLib/ |
D | maxContextCalc_test.py | 38 rsub a by b; 39 rsub a' by b; 40 rsub a b' by c; 41 rsub a b' c by A; 42 rsub [a b] c' by A; 43 rsub [a b] c' [a b] by B;
|
/external/fonttools/Tests/feaLib/data/ |
D | GSUB_8.fea | 4 rsub [a A] [b B] [c C] q' [d D] [e E] [f F] by Q; 5 rsub [a A] [b B] [c C] [s - z]' [d D] [e E] [f F] by [S - Z]; 10 rsub p by P;
|
D | spec5h1.fea | 7 #test-fea2fea: rsub [a e n] d' by d.alt;
|
/external/executorch/backends/mediatek/quantizer/ |
D | annotator.py | 137 torch.ops.aten.rsub.Scalar, 138 torch.ops.aten.rsub.Tensor, 241 torch.ops.aten.rsub.Scalar, 242 torch.ops.aten.rsub.Tensor,
|
/external/executorch/backends/arm/test/ops/ |
D | test_scalars.py | 27 … sub(Scalar, Tensor) becomes rsub, which either fails since the scalar does not become an attribute 28 …in scalars_to_attribute_pass, or, if added to targeted_ops in that pass, fails since rsub expects a 30 Potential fix: Create pass to convert rsub.Scalar to sub.Tensor
|
/external/fonttools/Tests/feaLib/ |
D | parser_test.py | 1364 doc = self.parse("feature test {rsub a [b B] c' d [e E] by C;} test;") 1365 rsub = doc.statements[0].statements[0] 1366 self.assertEqual(type(rsub), ast.ReverseChainSingleSubstStatement) 1367 self.assertEqual(glyphstr(rsub.old_prefix), "a [B b]") 1368 self.assertEqual(rsub.glyphs[0].glyphSet(), ("c",)) 1369 self.assertEqual(rsub.replacements[0].glyphSet(), ("C",)) 1370 self.assertEqual(glyphstr(rsub.old_suffix), "d [E e]") 1373 doc = self.parse(r"feature test {rsub \1 [\2 \3] \4' \5 by \6;} test;") 1374 rsub = doc.statements[0].statements[0] 1375 self.assertEqual(type(rsub), ast.ReverseChainSingleSubstStatement) [all …]
|
/external/XNNPACK/scripts/ |
D | generate-f32-vbinary.sh | 88 tools/xngen src/f32-vbinary/vopc-scalar.c.in -D OP=RSUB -D BATCH_TILE=1 -D WASM=0 -D ACTIVATION… 89 tools/xngen src/f32-vbinary/vopc-scalar.c.in -D OP=RSUB -D BATCH_TILE=2 -D WASM=0 -D ACTIVATION… 90 tools/xngen src/f32-vbinary/vopc-scalar.c.in -D OP=RSUB -D BATCH_TILE=4 -D WASM=0 -D ACTIVATION… 91 tools/xngen src/f32-vbinary/vopc-scalar.c.in -D OP=RSUB -D BATCH_TILE=8 -D WASM=0 -D ACTIVATION… 113 tools/xngen src/f32-vbinary/vopc-scalar.c.in -D OP=RSUB -D BATCH_TILE=1 -D WASM=0 -D ACTIVATION… 114 tools/xngen src/f32-vbinary/vopc-scalar.c.in -D OP=RSUB -D BATCH_TILE=2 -D WASM=0 -D ACTIVATION… 115 tools/xngen src/f32-vbinary/vopc-scalar.c.in -D OP=RSUB -D BATCH_TILE=4 -D WASM=0 -D ACTIVATION… 116 tools/xngen src/f32-vbinary/vopc-scalar.c.in -D OP=RSUB -D BATCH_TILE=8 -D WASM=0 -D ACTIVATION… 146 tools/xngen src/f32-vbinary/vopc-scalar.c.in -D OP=RSUB -D BATCH_TILE=1 -D WASM=0 -D ACTIVATION… 147 tools/xngen src/f32-vbinary/vopc-scalar.c.in -D OP=RSUB -D BATCH_TILE=2 -D WASM=0 -D ACTIVATION… [all …]
|
D | generate-f16-vbinary.sh | 39 tools/xngen src/f16-vbinary/vopc-neonfp16arith.c.in -D OP=RSUB -D BATCH_TILE=8 -D ACTIVATION=M… 40 tools/xngen src/f16-vbinary/vopc-neonfp16arith.c.in -D OP=RSUB -D BATCH_TILE=16 -D ACTIVATION=M… 74 tools/xngen src/f16-vbinary/vopc-f16c.c.in -D OP=RSUB -D BATCH_TILE=8 -D ACTIVATION=MINMAX -o s… 75 tools/xngen src/f16-vbinary/vopc-f16c.c.in -D OP=RSUB -D BATCH_TILE=16 -D ACTIVATION=MINMAX -o s…
|
/external/pytorch/torch/csrc/jit/passes/ |
D | normalize_ops.cpp | 22 // Normalize rsub such that `rsub(x,y) = sub(x,y)` 25 "aten::rsub.Tensor(Tensor self, Tensor other, *, Scalar alpha=1) -> Tensor")) { in normalizeRSub()
|
/external/google-smali/smali/src/test/resources/LexerTest/ |
D | InstructionTest.smali | 101 rsub-int/lit8 138 rsub-int
|
D | InstructionTest.tokens | 101 INSTRUCTION_FORMAT22b("rsub-int/lit8") 138 INSTRUCTION_FORMAT22s_OR_ID("rsub-int")
|
/external/XNNPACK/src/f32-vbinary/ |
D | vopc-neon.c.in | 9 $assert OP in ["ADD", "DIV", "RDIV", "MAX", "MIN", "MUL", "SUB", "RSUB", "SQRDIFF"] 27 $ "RSUB": lambda x: "vsubq_f32(vb, %s)" % x,
|
D | vopc-avx.c.in | 9 $assert OP in ["ADD", "DIV", "RDIV", "MAX", "MIN", "MUL", "SUB", "RSUB", "SQRDIFF"] 27 $ "RSUB": lambda x: "_mm256_sub_ps(vb, %s)" % x,
|
D | vopc-scalar.c.in | 8 $assert OP in ["ADD", "DIV", "RDIV", "MAX", "MIN", "MUL", "SUB", "RSUB", "SQRDIFF"] 27 $ "RSUB": lambda x: "vb - %s" % x,
|
D | vopc-avx512f.c.in | 9 $assert OP in ["ADD", "DIV", "RDIV", "MAX", "MIN", "MUL", "SUB", "RSUB", "SQRDIFF"] 28 $ "RSUB": lambda x: "_mm512_sub_ps(vb, %s)" % x,
|
D | vopc-sse.c.in | 9 $assert OP in ["ADD", "DIV", "RDIV", "MAX", "MIN", "MUL", "SUB", "RSUB", "SQRDIFF"] 28 $ "RSUB": lambda x: "_mm_sub_ps(vb, %s)" % x,
|
D | vopc-wasmsimd.c.in | 9 $assert OP in ["ADD", "DIV", "RDIV", "MAX", "MIN", "MUL", "SUB", "RSUB", "SQRDIFF"] 27 $ "RSUB": lambda x: "wasm_f32x4_sub(vb, %s)" % x,
|
/external/XNNPACK/src/f16-vbinary/ |
D | vopc-neonfp16arith.c.in | 9 $assert OP in ["ADD", "DIV", "RDIV", "MAX", "MIN", "MUL", "SUB", "RSUB", "SQRDIFF"] 27 $ "RSUB": lambda x: "vsubq_f16(vb, %s)" % x,
|
D | vopc-f16c.c.in | 9 $assert OP in ["ADD", "DIV", "RDIV", "MAX", "MIN", "MUL", "SUB", "RSUB", "SQRDIFF"] 28 $ "RSUB": lambda x: "_mm256_sub_ps(vb, %s)" % x,
|
/external/pytorch/aten/src/ATen/native/cuda/ |
D | Sorting.cpp | 24 #include <ATen/ops/rsub.h> 152 Tensor k = at::div(at::rsub(sorted.isnan().sum(), (size - 1)), 2).to(kLong); in median_impl()
|
/external/executorch/kernels/test/ |
D | op_rsub_test.cpp | 42 // Destination for the rsub. in test_integer_rsub_scalar_out() 63 // Destination for the rsub. in test_floating_point_rsub_scalar_out()
|
/external/executorch/kernels/portable/cpu/ |
D | op_rsub.cpp | 50 static constexpr const char op_name[] = "rsub.Scalar_out"; in rsub_scalar_out()
|
/external/google-smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format22s/ |
D | Format22s.smali | 32 rsub-int v1, v0, 500
|
/external/executorch/backends/arm/_passes/ |
D | scalars_to_attribute_pass.py | 30 torch.ops.aten.rsub.Scalar,
|
/external/google-breakpad/src/processor/ |
D | postfix_evaluator_unittest.cc | 155 { "$rSub 9 6 - =", true }, // $rSub = 9 - 6 = 3 in RunTests() 165 validate_data_0["$rSub"] = 3; in RunTests()
|