OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InterpreterExecutor
(Results
1 - 2
of
2
) sorted by null
/external/tensorflow/tensorflow/compiler/xla/service/interpreter/
executor.h
16
// Declares the
InterpreterExecutor
class, which is a CPU-only implementation of
53
class
InterpreterExecutor
: public internal::StreamExecutorInterface {
55
explicit
InterpreterExecutor
(const PluginConfig &plugin_config);
56
~
InterpreterExecutor
() override;
executor.cc
31
InterpreterExecutor
::
InterpreterExecutor
(const PluginConfig &plugin_config)
34
InterpreterExecutor
::~
InterpreterExecutor
() {}
36
void *
InterpreterExecutor
::Allocate(uint64 size) { return new char[size]; }
38
void *
InterpreterExecutor
::AllocateSubBuffer(DeviceMemoryBase *parent,
44
void
InterpreterExecutor
::Deallocate(DeviceMemoryBase *mem) {
50
bool
InterpreterExecutor
::Memcpy(Stream *stream, void *host_dst,
58
bool
InterpreterExecutor
::Memcpy(Stream *stream, DeviceMemoryBase *dev_dst,
66
port::Status
InterpreterExecutor
::SynchronousMemcpy(DeviceMemoryBase *dev_dst
[
all
...]
Completed in 122 milliseconds