Home
last modified time | relevance | path

Searched refs:host_src (Results 1 – 25 of 33) sorted by relevance

12

/external/tensorflow/tensorflow/compiler/xla/service/interpreter/
Dexecutor.cc62 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()
Dexecutor.h84 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/
DAndroid.bp50 "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/
Dhost_gpu_executor.cc110 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()
Dhost_gpu_executor.h77 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/
Dtpu_stream.h46 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()
Dtpu_executor.cc290 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()
Dtpu_executor.h125 const void* host_src, uint64 size) override;
129 const ::stream_executor::DeviceMemoryBase& host_src,
136 const void* host_src, uint64 size) override;
Dtpu_executor_c_api.h94 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/
Darm-wt-22k.mak8 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/
Dstream_executor_pimpl.cc609 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()
Dstream_executor_pimpl.h249 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);
Dtrace_listener.h55 const void* host_src, int64 size, in SynchronousMemcpyH2DBegin() argument
Dstream_executor_internal.h224 const void *host_src, uint64 size) = 0;
242 const void *host_src, uint64 size) = 0;
/external/tensorflow/tensorflow/c/experimental/stream_executor/
Dstream_executor.h348 SP_DeviceMemoryBase* device_dst, const void* host_src,
368 const void* host_src, uint64_t size,
Dstream_executor_test.cc98 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()
Dstream_executor.cc354 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/
Dgpu_executor.h129 const void* host_src, uint64 size) override;
149 bool Memcpy(Stream* stream, DeviceMemoryBase* gpu_dst, const void* host_src,
Dgpu_driver.h343 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/
Dproject.pbxproj94 …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/
Drocm_driver.cc848 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()
Drocm_gpu_executor.cc485 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/
Darm-wt-22k_lib.mak16 …$(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/
Dcuda_gpu_executor.cc577 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()
Dcuda_driver.cc1145 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()

12