/external/tensorflow/tensorflow/compiler/xla/service/interpreter/ |
D | executor.cc | 62 const void *host_src, uint64 size) { in Memcpy() argument 63 AsExecutorStream(stream)->EnqueueTask([this, dev_dst, host_src, size]() { in Memcpy() 64 port::Status ok = SynchronousMemcpy(dev_dst, host_src, size); in Memcpy() 71 DeviceMemoryBase *dev_dst, const void *host_src, uint64 size) { in SynchronousMemcpy() argument 72 memcpy(dev_dst->opaque(), host_src, size); in SynchronousMemcpy()
|
D | executor.h | 84 bool Memcpy(Stream *stream, DeviceMemoryBase *dev_dst, const void *host_src, 87 const DeviceMemoryBase &host_src, in MemcpyDeviceToDevice() argument 118 const void *host_src, uint64 size) override;
|
/external/sonivox/arm-wt-22k/ |
D | Android.bp | 50 "host_src/eas_config.c", 51 "host_src/eas_hostmm.c", 52 "host_src/eas_report.c", 81 "host_src",
|
/external/tensorflow/tensorflow/stream_executor/host/ |
D | host_gpu_executor.cc | 110 const void *host_src, uint64 size) { in Memcpy() argument 115 [dst_mem, host_src, size]() { memcpy(dst_mem, host_src, size); }); in Memcpy() 164 const void *host_src, in SynchronousMemcpy() argument 166 memcpy(gpu_dst->opaque(), host_src, size); in SynchronousMemcpy()
|
D | host_gpu_executor.h | 77 bool Memcpy(Stream *stream, DeviceMemoryBase *gpu_dst, const void *host_src, 99 const void *host_src, uint64 size) override;
|
/external/tensorflow/tensorflow/stream_executor/tpu/ |
D | tpu_stream.h | 46 stream_executor::DeviceMemoryBase device_dst, const void* host_src, in EnqueueTransferHostToDevice() argument 50 stream_, ApiConverter::ToC(device_dst), const_cast<void*>(host_src), in EnqueueTransferHostToDevice()
|
D | tpu_executor.cc | 290 const void* host_src, uint64 size) { in Memcpy() argument 293 executor_, get_stream(stream->implementation()), &se_base, host_src, in Memcpy() 298 ::stream_executor::DeviceMemoryBase* device_dst, const void* host_src, in SynchronousMemcpy() argument 303 executor_, &se_base, host_src, size, status.c_status); in SynchronousMemcpy() 326 const ::stream_executor::DeviceMemoryBase& host_src, uint64 size) { in MemcpyDeviceToDevice()
|
D | tpu_executor.h | 125 const void* host_src, uint64 size) override; 129 const ::stream_executor::DeviceMemoryBase& host_src, 136 const void* host_src, uint64 size) override;
|
D | tpu_executor_c_api.h | 94 const void* host_src, uint64_t size, 103 const void* host_src, uint64_t size); 132 void* host_src, uint64_t size,
|
/external/sonivox/arm-wt-22k/host_src/ |
D | arm-wt-22k.mak | 8 vpath %.c host_src 16 …$(CC) -c -O2 -o $@ -I host_src -D UNIFIED_DEBUG_MESSAGES -D EAS_WT_SYNTH -D _IMELODY_PARSER -D _RT…
|
/external/tensorflow/tensorflow/stream_executor/ |
D | stream_executor_pimpl.cc | 609 const void *host_src, uint64 size) { in SynchronousMemcpy() argument 611 << device_dst->opaque() << ", host_src=" << host_src in SynchronousMemcpy() 618 implementation_->SynchronousMemcpy(device_dst, host_src, size); in SynchronousMemcpy() 679 const void *host_src, int64 size, DeviceMemoryBase *device_dst) { in SynchronousMemcpyH2D() argument 680 VLOG(1) << "Called StreamExecutor::SynchronousMemcpyH2D(host_src=" << host_src in SynchronousMemcpyH2D() 685 SCOPED_TRACE(TraceListener::SynchronousMemcpyH2D, &result, host_src, size, in SynchronousMemcpyH2D() 688 result = implementation_->SynchronousMemcpy(device_dst, host_src, size); in SynchronousMemcpyH2D() 694 host_src, device_dst->opaque(), size, in SynchronousMemcpyH2D() 707 const void *host_src, uint64 size) { in Memcpy() argument 708 return implementation_->Memcpy(stream, device_dst, host_src, size); in Memcpy()
|
D | stream_executor_pimpl.h | 249 bool SynchronousMemcpy(DeviceMemoryBase *device_dst, const void *host_src, 260 port::Status SynchronousMemcpyH2D(const void *host_src, int64 size, 267 port::Status SynchronousMemcpyH2D(port::ArraySlice<T> host_src, in SynchronousMemcpyH2D() argument 269 auto host_size = host_src.size() * sizeof(T); in SynchronousMemcpyH2D() 271 return SynchronousMemcpyH2D(host_src.begin(), host_size, device_dst); in SynchronousMemcpyH2D() 578 const void *host_src, uint64 size);
|
D | trace_listener.h | 55 const void* host_src, int64 size, in SynchronousMemcpyH2DBegin() argument
|
D | stream_executor_internal.h | 224 const void *host_src, uint64 size) = 0; 242 const void *host_src, uint64 size) = 0;
|
/external/tensorflow/tensorflow/c/experimental/stream_executor/ |
D | stream_executor.h | 348 SP_DeviceMemoryBase* device_dst, const void* host_src, 368 const void* host_src, uint64_t size,
|
D | stream_executor_test.cc | 98 SP_DeviceMemoryBase* const device_dst, const void* host_src, in memcpy_htod() argument 105 const void* host_src, uint64_t size, in sync_memcpy_htod() argument 736 const void* host_src, uint64_t size, in TEST_F() 739 std::memcpy(device_dst->opaque, host_src, size); in TEST_F() 794 const void* host_src, uint64_t size, TF_Status* const status) { in TEST_F() argument 796 std::memcpy(device_dst->opaque, host_src, size); in TEST_F()
|
D | stream_executor.cc | 354 const void* host_src, uint64 size) override { in SynchronousMemcpy() argument 357 stream_executor_->sync_memcpy_htod(&device_, &device_memory_base, host_src, in SynchronousMemcpy() 409 bool Memcpy(Stream* stream, DeviceMemoryBase* gpu_dst, const void* host_src, in Memcpy() argument 416 host_src, size, c_status.get()); in Memcpy()
|
/external/tensorflow/tensorflow/stream_executor/gpu/ |
D | gpu_executor.h | 129 const void* host_src, uint64 size) override; 149 bool Memcpy(Stream* stream, DeviceMemoryBase* gpu_dst, const void* host_src,
|
D | gpu_driver.h | 343 const void* host_src, uint64 size); 355 const void* host_src, uint64 size,
|
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/easwt_vst_lib.xcodeproj/ |
D | project.pbxproj | 94 …4; lastKnownFileType = sourcecode.c.h; name = eas_build.h; path = ../../host_src/eas_build.h; sour… 95 …ing = 4; lastKnownFileType = sourcecode.c.h; name = eas.h; path = ../../host_src/eas.h; sourceTree… 97 …; lastKnownFileType = sourcecode.c.h; name = eas_config.h; path = ../../host_src/eas_config.h; sou… 99 … 4; lastKnownFileType = sourcecode.c.h; name = eas_host.h; path = ../../host_src/eas_host.h; sourc… 107 …; lastKnownFileType = sourcecode.c.h; name = eas_report.h; path = ../../host_src/eas_report.h; sou… 111 …4; lastKnownFileType = sourcecode.c.h; name = eas_types.h; path = ../../host_src/eas_types.h; sour… 123 …ing = 4; lastKnownFileType = sourcecode.c.h; name = jet.h; path = ../../host_src/jet.h; sourceTree… 126 …; lastKnownFileType = sourcecode.c.h; name = eas_reverb.h; path = ../../host_src/eas_reverb.h; sou… 128 …; lastKnownFileType = sourcecode.c.h; name = eas_chorus.h; path = ../../host_src/eas_chorus.h; sou…
|
/external/tensorflow/tensorflow/stream_executor/rocm/ |
D | rocm_driver.cc | 848 GpuContext* context, hipDeviceptr_t gpu_dst, const void* host_src, in SynchronousMemcpyH2D() argument 852 tensorflow::wrap::hipMemcpyHtoD(gpu_dst, const_cast<void*>(host_src), in SynchronousMemcpyH2D() 857 absl::bit_cast<void*>(gpu_dst), host_src, size, size)); in SynchronousMemcpyH2D() 901 const void* host_src, in AsynchronousMemcpyH2D() argument 906 gpu_dst, const_cast<void*>(host_src), size, stream); in AsynchronousMemcpyH2D() 911 ToString(res).c_str(), absl::bit_cast<void*>(gpu_dst), host_src, size, in AsynchronousMemcpyH2D()
|
D | rocm_gpu_executor.cc | 485 const void* host_src, uint64 size) { in SynchronousMemcpy() argument 487 host_src, size); in SynchronousMemcpy() 543 const void* host_src, uint64 size) { in Memcpy() argument 545 host_src, size, in Memcpy()
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | arm-wt-22k_lib.mak | 16 …$(CC) -c -O2 -o $@ -I lib_src -I host_src -D NUM_OUTPUT_CHANNELS=2 -D _SAMPLE_RATE_22050 -D MAX_SY…
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cuda_gpu_executor.cc | 577 const void* host_src, uint64 size) { in SynchronousMemcpy() argument 579 host_src, size); in SynchronousMemcpy() 635 const void* host_src, uint64 size) { in Memcpy() argument 637 host_src, size, in Memcpy()
|
D | cuda_driver.cc | 1145 const void* host_src, in SynchronousMemcpyH2D() argument 1149 cuMemcpyHtoD(gpu_dst, host_src, size), in SynchronousMemcpyH2D() 1153 absl::bit_cast<void*>(gpu_dst), host_src, size, size)); in SynchronousMemcpyH2D() 1196 const void* host_src, in AsynchronousMemcpyH2D() argument 1200 CUresult res = cuMemcpyHtoDAsync(gpu_dst, host_src, size, stream); in AsynchronousMemcpyH2D() 1205 ToString(res), absl::bit_cast<void*>(gpu_dst), host_src, size, size); in AsynchronousMemcpyH2D()
|