HomeSort by relevance Sort by last modified time
    Searched full:pipelines (Results 1 - 25 of 360) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/gemmlowp/doc/
output.md 1 # Output pipelines in gemmlowp
14 pipelines is good for, is implementing fused operations where a matrix
20 and activation function. gemmlowp's output pipelines allow implementing that:
37 The best part to see examples of using various output pipelines is in the unit
  /external/mesa3d/src/mesa/main/
pipelineobj.h 84 _mesa_DeleteProgramPipelines(GLsizei n, const GLuint *pipelines);
87 _mesa_GenProgramPipelines(GLsizei n, GLuint *pipelines);
90 _mesa_CreateProgramPipelines(GLsizei n, GLuint *pipelines);
pipelineobj.c 483 _mesa_DeleteProgramPipelines(GLsizei n, const GLuint *pipelines)
489 _mesa_debug(ctx, "glDeleteProgramPipelines(%d, %p)\n", n, pipelines);
498 _mesa_lookup_pipeline_object(ctx, pipelines[i]);
501 assert(obj->Name == pipelines[i]);
524 * Generate a set of unique pipeline object IDs and store them in \c pipelines.
526 * \param pipelines pipeline of \c n locations to store the IDs.
529 create_program_pipelines(struct gl_context *ctx, GLsizei n, GLuint *pipelines,
543 if (!pipelines) {
565 pipelines[i] = first + i;
571 _mesa_GenProgramPipelines(GLsizei n, GLuint *pipelines)
    [all...]
  /external/skia/src/gpu/vk/
GrVkCopyManager.h 41 // Everything below is only created once and shared by all copy draws/pipelines
  /external/skqp/src/gpu/vk/
GrVkCopyManager.h 42 // Everything below is only created once and shared by all copy draws/pipelines
  /external/deqp/external/openglcts/docs/specs/
CTS_ARB_shader_viewport_layer_array.txt 44 Iterate through all supported shader pipelines
56 Iterate through all supported shader pipelines
  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_OneShotIterator.pbtxt 21 pipelines to be defined without an additional initialization
  /external/tensorflow/tensorflow/docs_src/get_started/
index.md 23 input pipelines.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
187 /// Note that \p Level cannot be `O0` here. The pipelines produced are
204 /// Note that \p Level cannot be `O0` here. The pipelines produced are
221 /// Note that \p Level cannot be `O0` here. The pipelines produced are
235 /// Note that \p Level cannot be `O0` here. The pipelines produced are
250 /// Note that \p Level cannot be `O0` here. The pipelines produced are
265 /// Note that \p Level cannot be `O0` here. The pipelines produced are
280 /// Note that \p Level cannot be `O0` here. The pipelines produced are
294 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
187 /// Note that \p Level cannot be `O0` here. The pipelines produced are
204 /// Note that \p Level cannot be `O0` here. The pipelines produced are
221 /// Note that \p Level cannot be `O0` here. The pipelines produced are
235 /// Note that \p Level cannot be `O0` here. The pipelines produced are
250 /// Note that \p Level cannot be `O0` here. The pipelines produced are
265 /// Note that \p Level cannot be `O0` here. The pipelines produced are
280 /// Note that \p Level cannot be `O0` here. The pipelines produced are
294 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
187 /// Note that \p Level cannot be `O0` here. The pipelines produced are
204 /// Note that \p Level cannot be `O0` here. The pipelines produced are
221 /// Note that \p Level cannot be `O0` here. The pipelines produced are
235 /// Note that \p Level cannot be `O0` here. The pipelines produced are
250 /// Note that \p Level cannot be `O0` here. The pipelines produced are
265 /// Note that \p Level cannot be `O0` here. The pipelines produced are
280 /// Note that \p Level cannot be `O0` here. The pipelines produced are
294 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
187 /// Note that \p Level cannot be `O0` here. The pipelines produced are
204 /// Note that \p Level cannot be `O0` here. The pipelines produced are
221 /// Note that \p Level cannot be `O0` here. The pipelines produced are
235 /// Note that \p Level cannot be `O0` here. The pipelines produced are
250 /// Note that \p Level cannot be `O0` here. The pipelines produced are
265 /// Note that \p Level cannot be `O0` here. The pipelines produced are
280 /// Note that \p Level cannot be `O0` here. The pipelines produced are
294 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMInstrVFP.td 79 // pipelines.
93 // pipelines.
141 // VFP pipelines.
154 // VFP pipelines.
167 // VFP pipelines.
210 // VFP pipelines on A8.
224 // VFP pipelines on A8.
248 // VFP pipelines on A8.
262 // VFP pipelines on A8.
284 // VFP pipelines on A8.
    [all...]
  /external/deqp/external/openglcts/modules/gles31/
es31cSeparateShaderObjsTests.cpp 911 glw::GLuint pipelines[maxpipelines]; local
    [all...]
  /external/python/cpython3/Doc/library/
pipes.rst 1 :mod:`pipes` --- Interface to shell pipelines
6 :synopsis: A Python interface to Unix shell pipelines.
  /external/curl/docs/libcurl/opts/
CURLMOPT_MAX_PIPELINE_LENGTH.3 38 one of the pipelines to the host is ready to accept a request. Thus, the
  /external/tensorflow/tensorflow/python/data/
__init__.py 15 """`tf.data.Dataset` API for input pipelines.
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
67 /// cannot contain inner pipelines. See parsePassPipeline() for a more
224 /// Note that \p Level cannot be `O0` here. The pipelines produced are
244 /// Note that \p Level cannot be `O0` here. The pipelines produced are
264 /// Note that \p Level cannot be `O0` here. The pipelines produced are
278 /// Note that \p Level cannot be `O0` here. The pipelines produced are
293 /// Note that \p Level cannot be `O0` here. The pipelines produced are
308 /// Note that \p Level cannot be `O0` here. The pipelines produced are
323 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
67 /// cannot contain inner pipelines. See parsePassPipeline() for a more
224 /// Note that \p Level cannot be `O0` here. The pipelines produced are
244 /// Note that \p Level cannot be `O0` here. The pipelines produced are
264 /// Note that \p Level cannot be `O0` here. The pipelines produced are
278 /// Note that \p Level cannot be `O0` here. The pipelines produced are
293 /// Note that \p Level cannot be `O0` here. The pipelines produced are
308 /// Note that \p Level cannot be `O0` here. The pipelines produced are
323 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
67 /// cannot contain inner pipelines. See parsePassPipeline() for a more
224 /// Note that \p Level cannot be `O0` here. The pipelines produced are
244 /// Note that \p Level cannot be `O0` here. The pipelines produced are
264 /// Note that \p Level cannot be `O0` here. The pipelines produced are
278 /// Note that \p Level cannot be `O0` here. The pipelines produced are
293 /// Note that \p Level cannot be `O0` here. The pipelines produced are
308 /// Note that \p Level cannot be `O0` here. The pipelines produced are
323 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
67 /// cannot contain inner pipelines. See parsePassPipeline() for a more
224 /// Note that \p Level cannot be `O0` here. The pipelines produced are
244 /// Note that \p Level cannot be `O0` here. The pipelines produced are
264 /// Note that \p Level cannot be `O0` here. The pipelines produced are
278 /// Note that \p Level cannot be `O0` here. The pipelines produced are
293 /// Note that \p Level cannot be `O0` here. The pipelines produced are
308 /// Note that \p Level cannot be `O0` here. The pipelines produced are
323 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
67 /// cannot contain inner pipelines. See parsePassPipeline() for a more
224 /// Note that \p Level cannot be `O0` here. The pipelines produced are
244 /// Note that \p Level cannot be `O0` here. The pipelines produced are
264 /// Note that \p Level cannot be `O0` here. The pipelines produced are
278 /// Note that \p Level cannot be `O0` here. The pipelines produced are
293 /// Note that \p Level cannot be `O0` here. The pipelines produced are
308 /// Note that \p Level cannot be `O0` here. The pipelines produced are
323 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
67 /// cannot contain inner pipelines. See parsePassPipeline() for a more
224 /// Note that \p Level cannot be `O0` here. The pipelines produced are
244 /// Note that \p Level cannot be `O0` here. The pipelines produced are
264 /// Note that \p Level cannot be `O0` here. The pipelines produced are
278 /// Note that \p Level cannot be `O0` here. The pipelines produced are
293 /// Note that \p Level cannot be `O0` here. The pipelines produced are
308 /// Note that \p Level cannot be `O0` here. The pipelines produced are
323 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
67 /// cannot contain inner pipelines. See parsePassPipeline() for a more
224 /// Note that \p Level cannot be `O0` here. The pipelines produced are
244 /// Note that \p Level cannot be `O0` here. The pipelines produced are
264 /// Note that \p Level cannot be `O0` here. The pipelines produced are
278 /// Note that \p Level cannot be `O0` here. The pipelines produced are
293 /// Note that \p Level cannot be `O0` here. The pipelines produced are
308 /// Note that \p Level cannot be `O0` here. The pipelines produced are
323 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Passes/
PassBuilder.h 1 //===- Parsing, selection, and construction of pass pipelines --*- C++ -*--===//
12 /// configurations, and parsing of pass pipelines.
67 /// cannot contain inner pipelines. See parsePassPipeline() for a more
224 /// Note that \p Level cannot be `O0` here. The pipelines produced are
244 /// Note that \p Level cannot be `O0` here. The pipelines produced are
264 /// Note that \p Level cannot be `O0` here. The pipelines produced are
278 /// Note that \p Level cannot be `O0` here. The pipelines produced are
293 /// Note that \p Level cannot be `O0` here. The pipelines produced are
308 /// Note that \p Level cannot be `O0` here. The pipelines produced are
323 /// Note that \p Level cannot be `O0` here. The pipelines produced ar
    [all...]

Completed in 2913 milliseconds

1 2 3 4 5 6 7 8 91011>>