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

  /external/tensorflow/tensorflow/contrib/lite/
model.h 78 const Allocation* allocation() const { return allocation_; }
112 Allocation* allocation_ = nullptr; member in class:tflite::FlatBufferModel
171 const Allocation* allocation_ = nullptr; member in class:tflite::InterpreterBuilder
model.cc 66 allocation_ = new NNAPIAllocation(filename, error_reporter);
68 allocation_ = new MMAPAllocation(filename, error_reporter);
70 allocation_ = new FileCopyAllocation(filename, error_reporter);
72 if (!allocation_->valid() || !CheckModelIdentifier()) return;
74 model_ = ::tflite::GetModel(allocation_->base());
78 if (!tflite::ModelBufferHasIdentifier(allocation_->base())) {
79 const char* ident = flatbuffers::GetBufferIdentifier(allocation_->base());
92 allocation_ = new MemoryAllocation(ptr, num_bytes, error_reporter);
93 if (!allocation_->valid()) return;
95 model_ = ::tflite::GetModel(allocation_->base())
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
buffer_assignment.h 131 : allocation_(allocation), offset_(offset), size_(size) {}
133 const BufferAllocation* allocation() const { return allocation_; }
134 Index index() const { return allocation_->index(); }
165 const BufferAllocation* allocation_ = nullptr; member in class:xla::BufferAllocation::Slice
  /external/v8/src/compiler/
js-create-lowering.cc 35 allocation_(nullptr),
45 allocation_ =
50 NodeProperties::SetType(allocation_, type);
51 effect_ = allocation_;
56 effect_ = graph()->NewNode(simplified()->StoreField(access), allocation_,
62 effect_ = graph()->NewNode(simplified()->StoreElement(access), allocation_,
85 NodeProperties::SetType(allocation_, NodeProperties::GetType(node));
86 node->ReplaceInput(0, allocation_);
93 return graph()->NewNode(common()->FinishRegion(), allocation_, effect_);
104 Node* allocation_; member in class:v8::internal::compiler::__anon40894::final
    [all...]

Completed in 545 milliseconds