/external/tensorflow/tensorflow/stream_executor/ |
D | fft.h | 78 class Plan { 80 virtual ~Plan() {} in ~Plan() 95 virtual std::unique_ptr<Plan> Create1dPlan(Stream *stream, uint64 num_x, 99 virtual std::unique_ptr<Plan> Create2dPlan(Stream *stream, uint64 num_x, 104 virtual std::unique_ptr<Plan> Create3dPlan(Stream *stream, uint64 num_x, 109 virtual std::unique_ptr<Plan> Create1dPlanWithScratchAllocator( 114 virtual std::unique_ptr<Plan> Create2dPlanWithScratchAllocator( 119 virtual std::unique_ptr<Plan> Create3dPlanWithScratchAllocator( 140 virtual std::unique_ptr<Plan> CreateBatchedPlan( 163 virtual std::unique_ptr<Plan> CreateBatchedPlanWithScratchAllocator( [all …]
|
D | stream.h | 1643 Stream &ThenFft(fft::Plan *plan, 1646 Stream &ThenFft(fft::Plan *plan, 1649 Stream &ThenFft(fft::Plan *plan, const DeviceMemory<float> &input, 1651 Stream &ThenFft(fft::Plan *plan, const DeviceMemory<double> &input, 1653 Stream &ThenFft(fft::Plan *plan, 1656 Stream &ThenFft(fft::Plan *plan,
|
D | stream.cc | 4944 Stream &Stream::ThenFft(fft::Plan *plan, in ThenFft() 4961 Stream &Stream::ThenFft(fft::Plan *plan, in ThenFft() 4978 Stream &Stream::ThenFft(fft::Plan *plan, const DeviceMemory<float> &input, in ThenFft() 4994 Stream &Stream::ThenFft(fft::Plan *plan, const DeviceMemory<double> &input, in ThenFft() 5010 Stream &Stream::ThenFft(fft::Plan *plan, in ThenFft() 5027 Stream &Stream::ThenFft(fft::Plan *plan, in ThenFft()
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cuda_fft.cc | 326 std::unique_ptr<fft::Plan> CUDAFft::Create1dPlan(Stream *stream, uint64 num_x, in Create1dPlan() 342 std::unique_ptr<fft::Plan> CUDAFft::Create1dPlanWithScratchAllocator( in Create1dPlanWithScratchAllocator() 357 std::unique_ptr<fft::Plan> CUDAFft::Create2dPlan(Stream *stream, uint64 num_x, in Create2dPlan() 371 std::unique_ptr<fft::Plan> CUDAFft::Create2dPlanWithScratchAllocator( in Create2dPlanWithScratchAllocator() 386 std::unique_ptr<fft::Plan> CUDAFft::Create3dPlan(Stream *stream, uint64 num_x, in Create3dPlan() 401 std::unique_ptr<fft::Plan> CUDAFft::Create3dPlanWithScratchAllocator( in Create3dPlanWithScratchAllocator() 416 std::unique_ptr<fft::Plan> CUDAFft::CreateBatchedPlan( in CreateBatchedPlan() 434 std::unique_ptr<fft::Plan> CUDAFft::CreateBatchedPlanWithScratchAllocator( in CreateBatchedPlanWithScratchAllocator() 453 Stream *stream, fft::Plan *plan, ScratchAllocator *scratch_allocator) { in UpdatePlanWithScratchAllocator() 464 bool CUDAFft::DoFftInternal(Stream *stream, fft::Plan *plan, FuncT cufftExec, in DoFftInternal() [all …]
|
D | cuda_fft.h | 46 class CUDAFftPlan : public fft::Plan { 120 bool DoFftWithDirectionInternal(Stream *stream, fft::Plan *plan, 128 bool DoFftInternal(Stream *stream, fft::Plan *plan, FuncT cufft_exec,
|
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
D | ShadowWrangler.java | 37 public static final Plan DO_NOTHING_PLAN = new Plan() { 48 public static final Plan CALL_REAL_CODE_PLAN = null; 60 private final Map<String, Plan> planCache = 61 Collections.synchronizedMap(new LinkedHashMap<String, Plan>() { 63 protected boolean removeEldestEntry(Map.Entry<String, Plan> eldest) { 133 public Plan methodInvoked(String signature, boolean isStatic, Class<?> theClass) { in methodInvoked() 137 Plan plan = calculatePlan(signature, isStatic, theClass); in methodInvoked() 176 private Plan calculatePlan(String signature, boolean isStatic, Class<?> theClass) { in calculatePlan() 465 private static class ShadowMethodPlan implements Plan {
|
D | ClassHandler.java | 11 Plan methodInvoked(String signature, boolean isStatic, Class<?> theClass); in methodInvoked() 23 public interface Plan { interface
|
D | RobolectricInternals.java | 29 …public static ClassHandler.Plan methodInvoked(String signature, boolean isStatic, Class<?> theClas… in methodInvoked()
|
D | SandboxClassLoader.java | 1007 private final Type PLAN_TYPE = Type.getType(ClassHandler.Plan.class);
|
/external/v8/benchmarks/ |
D | deltablue.js | 650 var plan = new Plan(); 757 function Plan() { class 761 Plan.prototype.addConstraint = function (c) { 765 Plan.prototype.size = function () { 769 Plan.prototype.constraintAt = function (index) { 773 Plan.prototype.execute = function () {
|
/external/drm_hwcomposer/ |
D | drmcomposition.cpp | 106 int DrmComposition::Plan(std::map<int, DrmDisplayCompositor> &compositor_map) { in Plan() function in android::DrmComposition 111 ret = comp->Plan(compositor_map[display].squash_state(), &primary_planes_, in Plan()
|
D | drmcomposition.h | 58 int Plan(std::map<int, DrmDisplayCompositor> &compositor_map);
|
D | drmcompositor.cpp | 71 ret = composition->Plan(compositor_map_); in QueueComposition()
|
D | drmdisplaycomposition.h | 118 int Plan(SquashState *squash, std::vector<DrmPlane *> *primary_planes,
|
D | drmdisplaycomposition.cpp | 290 int DrmDisplayComposition::Plan(SquashState *squash, in Plan() function in android::DrmDisplayComposition
|
D | drmhwctwo.cpp | 543 ret = composition->Plan(compositor_.squash_state(), &primary_planes, in PresentDisplay()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | fft_thunk.h | 86 std::unique_ptr<perftools::gputools::fft::Plan> fft_plan_;
|
/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/ |
D | SandboxClassLoaderTest.java | 692 public Plan methodInvoked(String signature, boolean isStatic, Class<?> theClass) { in methodInvoked() 694 return new Plan() { in methodInvoked()
|
/external/llvm/docs/ |
D | FAQ.rst | 52 (MacOS 9, Plan 9) will require more effort.
|
/external/skqp/site/dev/contrib/ |
D | simd.md | 10 The Plan
|
/external/toolchain-utils/go/patch/ |
D | go3.patch | 135 // TODO: If we get rid of errchk, re-enable this test on Plan 9 and Windows.
|
/external/skia/site/dev/contrib/ |
D | simd.md | 10 The Plan
|
/external/deqp/doc/testspecs/VK/ |
D | apitests.adoc | 8 Vulkan API Test Plan
|
/external/python/cpython3/Tools/msi/bundle/bootstrap/ |
D | PythonBootstrapperApplication.cpp | 2201 hr = _engine->Plan(action); in OnPlan()
|
/external/tensorflow/tensorflow/docs_src/extend/ |
D | adding_an_op.md | 1165 6. Plan ahead! Try to anticipate future uses for the op. Some signature changes
|