/external/tensorflow/tensorflow/core/grappler/utils/ |
D | functions_test.cc | 708 FunctionDef specialized; in TEST_F() local 709 TF_EXPECT_OK(MakeFunctionDef(item, flib, &specialized)); in TEST_F() 712 EXPECT_EQ("x", specialized.signature().input_arg(0).name()); in TEST_F() 713 EXPECT_EQ(DT_FLOAT, specialized.signature().input_arg(0).type()); in TEST_F() 714 EXPECT_EQ("y", specialized.signature().output_arg(0).name()); in TEST_F() 715 EXPECT_EQ(DT_FLOAT, specialized.signature().output_arg(0).type()); in TEST_F() 719 for (const NodeDef &node : specialized.node_def()) { in TEST_F() 784 FunctionDef specialized; in TEST_F() local 785 TF_EXPECT_OK(MakeFunctionDef(item, flib, &specialized)); in TEST_F() 787 EXPECT_EQ(0, specialized.signature().input_arg_size()); in TEST_F() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/HistoricalNotes/ |
D | 2001-07-06-LoweringIRForCodeGen.txt | 9 VM -- it is a little too specialized. But without a corresponding 18 more specialized code any time we want (so that portability is not lost). 23 specialized target-specific VM code for a particular architecture. If the
|
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/ |
D | 2001-07-06-LoweringIRForCodeGen.txt | 9 VM -- it is a little too specialized. But without a corresponding 18 more specialized code any time we want (so that portability is not lost). 23 specialized target-specific VM code for a particular architecture. If the
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-07-06-LoweringIRForCodeGen.txt | 9 VM -- it is a little too specialized. But without a corresponding 18 more specialized code any time we want (so that portability is not lost). 23 specialized target-specific VM code for a particular architecture. If the
|
/external/skqp/src/gpu/effects/ |
D | GrSkSLFP.cpp | 76 std::unique_ptr<SkSL::Program> specialized = fCompiler.specialize(*fBaseProgram, inputMap); in getSpecialization() local 77 SkAssertResult(fCompiler.optimize(*specialized)); in getSpecialization() 78 const SkSL::Program* result = specialized.get(); in getSpecialization() 79 fSpecializations.insert(std::make_pair(key, std::move(specialized))); in getSpecialization() 289 const SkSL::Program* specialized = fFactory->getSpecialization(fKey, fInputs.get(), fInputSize); in onCreateGLSLInstance() local 292 if (!fFactory->fCompiler.toPipelineStage(*specialized, &glsl, &formatArgs)) { in onCreateGLSLInstance() 296 return new GrGLSLSkSLFP(specialized->fContext.get(), &fFactory->fInputVars, glsl, formatArgs); in onCreateGLSLInstance()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Metadata.def | 38 // Handler for specialized and uniquable leaf nodes under MDNode. Defers to 66 // Handler for specialized leaf nodes under MDNode. 71 // Handler for specialized non-leaf nodes under MDNode.
|
/external/llvm/include/llvm/IR/ |
D | Metadata.def | 38 // Handler for specialized and uniquable leaf nodes under MDNode. Defers to 66 // Handler for specialized leaf nodes under MDNode. 71 // Handler for specialized non-leaf nodes under MDNode.
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Metadata.def | 38 // Handler for specialized and uniquable leaf nodes under MDNode. Defers to 66 // Handler for specialized leaf nodes under MDNode. 71 // Handler for specialized non-leaf nodes under MDNode.
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | util.py | 72 specialized = types.new_class(name, bases) 73 specialized.__module__ = cls.__module__ 74 specialized._NAME = cls.__name__ 75 specialized._KIND = kind 78 setattr(specialized, attr, value) 79 return specialized
|
/external/skia/src/gpu/effects/ |
D | GrSkSLFP.cpp | 83 std::unique_ptr<SkSL::Program> specialized = fCompiler.specialize(*fBaseProgram, inputMap); in getSpecialization() local 84 SkAssertResult(fCompiler.optimize(*specialized)); in getSpecialization() 85 const SkSL::Program* result = specialized.get(); in getSpecialization() 86 fSpecializations.insert(std::make_pair(key, std::move(specialized))); in getSpecialization() 312 const SkSL::Program* specialized = fFactory->getSpecialization(fKey, fInputs.get(), fInputSize); in onCreateGLSLInstance() local 315 if (!fFactory->fCompiler.toPipelineStage(*specialized, &glsl, &formatArgs)) { in onCreateGLSLInstance() 319 return new GrGLSLSkSLFP(specialized->fContext.get(), &fFactory->fInputVars, glsl, formatArgs); in onCreateGLSLInstance()
|
/external/clang/test/PCH/ |
D | objc_parameterized_classes.m | 33 …ation3; // expected-error{{type arguments cannot be applied to already-specialized class type 'PC1… 35 …zation2<id, NSObject *> PC1Specialization4; // expected-error{{already-specialized class type 'PC1…
|
/external/python/cpython3/Doc/library/ |
D | email.headerregistry.rst | 30 :class:`.UnstructuredHeader` as their other base class. The specialized second 71 for this attribute is ``None``; it is expected that specialized header 89 defines a protocol that each specialized header cooperates with in order to 91 the specialized class provide a :func:`classmethod` named ``parse``. This 106 ``init`` method. The specialized class only needs to provide an ``init`` 114 That is, anything extra that the specialized class puts in to the ``kwds`` 314 dynamically, using *base_class* and a specialized class retrieved from a 316 registry, the class specified by *default_class* is used as the specialized 344 lower case in the registry. *cls* is the specialized class to be used, 356 Retrieves the specialized header associated with *name* from the
|
D | datatypes.rst | 7 The modules described in this chapter provide a variety of specialized data
|
/external/deqp/external/openglcts/docs/specs/ |
D | CTS_ARB_gl_spirv.txt | 88 - Verify if shader compile status is set to TRUE if shader is specialized. 118 already been specialized. 128 <program> are not specialized. 154 - Create fragment shader with specialized constant floats - one for each color
|
/external/clang/test/SemaObjC/ |
D | parameterized_classes_subst.m | 327 // Unspecialized -> specialized (same level) 330 // Specialized -> specialized failure (same level). 333 // Specialized -> specialized (different levels). 336 // Specialized -> specialized failure (different levels). 339 // Unspecialized -> specialized (different levels).
|
/external/guava/guava/src/com/google/common/reflect/ |
D | Invokable.java | 158 Invokable<T, R1> specialized = (Invokable<T, R1>) this; in returning() local 159 return specialized; in returning()
|
/external/eigen/doc/ |
D | MatrixfreeSolverExample.dox | 12 \c Eigen::internal::traits<> must also be specialized for the wrapper type.
|
D | TutorialBlockOperations.dox | 63 other methods for special cases, providing more specialized API and/or better performance. On the t… 65 using the specialized \link DenseBase::col() .col() \endlink function described below lets Eigen kn… 67 The rest of this page describes these specialized methods.
|
/external/clang/test/SemaObjCXX/ |
D | parameterized_classes_subst.mm | 275 // Unspecialized -> specialized (same level) 278 // Specialized -> specialized failure (same level). 281 // Specialized -> specialized (different levels). 284 // Specialized -> specialized failure (different levels). 287 // Unspecialized -> specialized (different levels).
|
/external/tensorflow/tensorflow/lite/nnapi/ |
D | README.md | 11 For devices that lack a specialized vendor driver, the NNAPI runtime relies on
|
/external/python/cpython2/Doc/library/ |
D | datatypes.rst | 8 The modules described in this chapter provide a variety of specialized data
|
/external/swiftshader/docs/ |
D | Reactor.md | 33 …ile time, or dynamically by examining the parameters at run-time and generating a specialized path. 35 …specialized benchmark does not take into account that a typical real-world application deals with … 39 … which compiles the query into an optimized sequence of routines, each specialized to the data typ… 233 …+ function. The real power of Reactor is to generate routines that are specialized for a certain s…
|
/external/eigen/Eigen/ |
D | SparseLU | 19 * The code is fully optimized for supernode-panel updates with specialized kernels.
|
/external/python/pyasn1/docs/source/pyasn1/type/constraint/ |
D | contents.rst | 10 a more specialized subtype of an ASN.1 type.
|
/external/zlib/src/contrib/iostream3/ |
D | README | 7 It does this by deriving a specialized stream buffer for gzipped files, which is
|