HomeSort by relevance Sort by last modified time
    Searched refs:HostExecutor (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/stream_executor/host/
host_gpu_executor.cc 16 // Implementation of HostExecutor class [of those methods not defined in the
40 HostExecutor::HostExecutor(const PluginConfig &plugin_config)
43 HostExecutor::~HostExecutor() {}
45 void *HostExecutor::Allocate(uint64 size) { return new char[size]; }
47 void *HostExecutor::AllocateSubBuffer(DeviceMemoryBase *parent,
52 void HostExecutor::Deallocate(DeviceMemoryBase *mem) {
58 bool HostExecutor::SynchronousMemZero(DeviceMemoryBase *location, uint64 size) {
63 bool HostExecutor::SynchronousMemSet(DeviceMemoryBase *location, int value
    [all...]
host_platform.cc 73 this, port::MakeUnique<HostExecutor>(config.plugin_config));
host_gpu_executor.h 16 // Declares the HostExecutor class, which is a CPU-only implementation of
45 class HostExecutor : public internal::StreamExecutorInterface {
47 explicit HostExecutor(const PluginConfig &plugin_config);
48 ~HostExecutor() override;
188 LOG(WARNING) << "Events not currently supported by HostExecutor.";

Completed in 61 milliseconds