Home
last modified time | relevance | path

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

12

/external/sonivox/arm-wt-22k/
DAndroid.bp38 "host_src/eas_config.c",
39 "host_src/eas_hostmm.c",
40 "host_src/eas_report.c",
43 //"host_src/eas_main.c",
44 //"host_src/eas_wave.c",
75 "host_src",
/external/tensorflow/tensorflow/compiler/xla/service/interpreter/
Dexecutor.cc61 const void *host_src, uint64 size) { in Memcpy() argument
62 AsExecutorStream(stream)->EnqueueTask([this, dev_dst, host_src, size]() { in Memcpy()
63 port::Status ok = SynchronousMemcpy(dev_dst, host_src, size); in Memcpy()
70 DeviceMemoryBase *dev_dst, const void *host_src, uint64 size) { in SynchronousMemcpy() argument
71 memcpy(dev_dst->opaque(), host_src, size); in SynchronousMemcpy()
Dexecutor.h85 bool Memcpy(Stream *stream, DeviceMemoryBase *pop_dst, const void *host_src,
88 const DeviceMemoryBase &host_src, in MemcpyDeviceToDevice() argument
118 const void *host_src, uint64 size) override;
/external/tensorflow/tensorflow/stream_executor/host/
Dhost_gpu_executor.cc77 const void *host_src, uint64 size) { in Memcpy() argument
82 [dst_mem, host_src, size]() { memcpy(dst_mem, host_src, size); }); in Memcpy()
131 const void *host_src, in SynchronousMemcpy() argument
133 memcpy(gpu_dst->opaque(), host_src, size); in SynchronousMemcpy()
Dhost_gpu_executor.h77 bool Memcpy(Stream *stream, DeviceMemoryBase *gpu_dst, const void *host_src,
80 const DeviceMemoryBase &host_src,
98 const void *host_src, uint64 size) override;
/external/tensorflow/tensorflow/stream_executor/
Dstream_executor_pimpl.cc622 const void *host_src, uint64 size) { in SynchronousMemcpy() argument
624 << device_dst->opaque() << ", host_src=" << host_src in SynchronousMemcpy()
631 implementation_->SynchronousMemcpy(device_dst, host_src, size); in SynchronousMemcpy()
692 const void *host_src, int64 size, DeviceMemoryBase *device_dst) { in SynchronousMemcpyH2D() argument
693 VLOG(1) << "Called StreamExecutor::SynchronousMemcpyH2D(host_src=" << host_src in SynchronousMemcpyH2D()
698 SCOPED_TRACE(TraceListener::SynchronousMemcpyH2D, &result, host_src, size, in SynchronousMemcpyH2D()
701 result = implementation_->SynchronousMemcpy(device_dst, host_src, size); in SynchronousMemcpyH2D()
707 host_src, device_dst->opaque(), size, in SynchronousMemcpyH2D()
720 const void *host_src, uint64 size) { in Memcpy() argument
721 return implementation_->Memcpy(stream, device_dst, host_src, size); in Memcpy()
Dstream_executor_pimpl.h261 bool SynchronousMemcpy(DeviceMemoryBase *device_dst, const void *host_src,
272 port::Status SynchronousMemcpyH2D(const void *host_src, int64 size,
279 port::Status SynchronousMemcpyH2D(port::ArraySlice<T> host_src, in SynchronousMemcpyH2D() argument
281 auto host_size = host_src.size() * sizeof(T); in SynchronousMemcpyH2D()
283 return SynchronousMemcpyH2D(host_src.begin(), host_size, device_dst); in SynchronousMemcpyH2D()
552 const void *host_src, uint64 size);
Dtrace_listener.h55 const void* host_src, int64 size, in SynchronousMemcpyH2DBegin() argument
Dstream_executor_internal.h220 const void *host_src, uint64 size) = 0;
238 const void *host_src, uint64 size) = 0;
Dstream.h693 Stream &ThenMemcpyH2DQuantized(const void *host_src, uint64 size,
701 Stream &ThenMemcpyH2DQuantized(port::ArraySlice<ElementType> host_src, in ThenMemcpyH2DQuantized() argument
704 host_src.data(), host_src.size() * sizeof(ElementType), in ThenMemcpyH2DQuantized()
1687 Stream &ThenMemcpy(DeviceMemoryBase *gpu_dst, const void *host_src,
1705 Stream &ThenMemcpyH2D(port::ArraySlice<T> host_src, in ThenMemcpyH2D() argument
1707 auto host_size = host_src.size() * sizeof(T); in ThenMemcpyH2D()
1709 return ThenMemcpy(gpu_dst, host_src.begin(), host_size); in ThenMemcpyH2D()
Dstream.cc1722 const void *host_src, uint64 size, dnn::QuantizedActivationMode mode, in ThenMemcpyH2DQuantized() argument
1724 VLOG_CALL(PARAM(host_src), PARAM(size), PARAM(mode), in ThenMemcpyH2DQuantized()
1729 CheckError(dnn->DoMemcpyH2DQuantized(this, host_src, size, mode, in ThenMemcpyH2DQuantized()
4793 Stream &Stream::ThenMemcpy(DeviceMemoryBase *gpu_dst, const void *host_src, in ThenMemcpy() argument
4795 VLOG_CALL(PARAM(gpu_dst), PARAM(host_src), PARAM(size)); in ThenMemcpy()
4798 CheckError(parent_->Memcpy(this, gpu_dst, host_src, size)); in ThenMemcpy()
4801 << " did not memcpy host-to-device; source: " << host_src; in ThenMemcpy()
Ddnn.h2017 Stream* stream, const void* host_src, int64 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/cuda/
Dcuda_driver.cc1104 const void* host_src, in SynchronousMemcpyH2D() argument
1108 CHECK(PointerIsValid(host_src)) in SynchronousMemcpyH2D()
1109 << "Source pointer is not actually on CPU: " << host_src; in SynchronousMemcpyH2D()
1113 CUresult res = cuMemcpyHtoD(gpu_dst, host_src, size); in SynchronousMemcpyH2D()
1118 ToString(res).c_str(), absl::bit_cast<void*>(gpu_dst), host_src, size, in SynchronousMemcpyH2D()
1177 const void* host_src, in AsynchronousMemcpyH2D() argument
1182 CHECK(PointerIsValid(host_src)) in AsynchronousMemcpyH2D()
1183 << "Source pointer is not actually on CPU: " << host_src; in AsynchronousMemcpyH2D()
1187 CUresult res = cuMemcpyHtoDAsync(gpu_dst, host_src, size, stream); in AsynchronousMemcpyH2D()
1192 ToString(res).c_str(), absl::bit_cast<void*>(gpu_dst), host_src, size, in AsynchronousMemcpyH2D()
Dcuda_gpu_executor.cc605 const void* host_src, uint64 size) { in SynchronousMemcpy() argument
607 host_src, size); in SynchronousMemcpy()
663 const void* host_src, uint64 size) { in Memcpy() argument
665 host_src, size, in Memcpy()
Dcuda_dnn.h531 Stream* stream, const void* host_src, int64 size,
Dcuda_dnn.cc4082 Stream* stream, const void* host_src, int64 size, in DoMemcpyH2DQuantized() argument
/external/tensorflow/tensorflow/stream_executor/gpu/
Dgpu_executor.h128 const void* host_src, uint64 size) override;
148 bool Memcpy(Stream* stream, DeviceMemoryBase* gpu_dst, const void* host_src,
Dgpu_driver.h284 const void* host_src, uint64 size);
296 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.cc908 GpuContext* context, hipDeviceptr_t gpu_dst, const void* host_src, in SynchronousMemcpyH2D() argument
912 gpu_dst, const_cast<void*>(host_src), size); in SynchronousMemcpyH2D()
917 ToString(res).c_str(), absl::bit_cast<void*>(gpu_dst), host_src, size, in SynchronousMemcpyH2D()
964 const void* host_src, in AsynchronousMemcpyH2D() argument
969 gpu_dst, const_cast<void*>(host_src), size, stream); in AsynchronousMemcpyH2D()
974 ToString(res).c_str(), absl::bit_cast<void*>(gpu_dst), host_src, size, in AsynchronousMemcpyH2D()
Drocm_gpu_executor.cc486 const void* host_src, uint64 size) { in SynchronousMemcpy() argument
488 host_src, size); in SynchronousMemcpy()
544 const void* host_src, uint64 size) { in Memcpy() argument
546 host_src, size, in Memcpy()
Drocm_dnn.h514 Stream* stream, const void* host_src, int64 size,
/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/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLIb.xcodeproj/
Dproject.pbxproj41 …; lastKnownFileType = sourcecode.c.c; name = eas_config.c; path = ../../host_src/eas_config.c; sou…

12