Home
last modified time | relevance | path

Searched refs:specialized (Results 1 – 25 of 204) sorted by relevance

123456789

/external/tensorflow/tensorflow/core/grappler/utils/
Dfunctions_test.cc708 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/
D2001-07-06-LoweringIRForCodeGen.txt9 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/
D2001-07-06-LoweringIRForCodeGen.txt9 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/
D2001-07-06-LoweringIRForCodeGen.txt9 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/
DGrSkSLFP.cpp76 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/
DMetadata.def38 // 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/
DMetadata.def38 // 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/
DMetadata.def38 // 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/
Dutil.py72 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/
DGrSkSLFP.cpp83 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/
Dobjc_parameterized_classes.m33 …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/
Demail.headerregistry.rst30 :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
Ddatatypes.rst7 The modules described in this chapter provide a variety of specialized data
/external/deqp/external/openglcts/docs/specs/
DCTS_ARB_gl_spirv.txt88 - 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/
Dparameterized_classes_subst.m327 // 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/
DInvokable.java158 Invokable<T, R1> specialized = (Invokable<T, R1>) this; in returning() local
159 return specialized; in returning()
/external/eigen/doc/
DMatrixfreeSolverExample.dox12 \c Eigen::internal::traits<> must also be specialized for the wrapper type.
DTutorialBlockOperations.dox63 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/
Dparameterized_classes_subst.mm275 // 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/
DREADME.md11 For devices that lack a specialized vendor driver, the NNAPI runtime relies on
/external/python/cpython2/Doc/library/
Ddatatypes.rst8 The modules described in this chapter provide a variety of specialized data
/external/swiftshader/docs/
DReactor.md33 …ile time, or dynamically by examining the parameters at run-time and generating a specialized path.
35specialized 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/
DSparseLU19 * The code is fully optimized for supernode-panel updates with specialized kernels.
/external/python/pyasn1/docs/source/pyasn1/type/constraint/
Dcontents.rst10 a more specialized subtype of an ASN.1 type.
/external/zlib/src/contrib/iostream3/
DREADME7 It does this by deriving a specialized stream buffer for gzipped files, which is

123456789