• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7     http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 
16 #include <cassert>
17 
18 #include "tensorflow/lite/allocation.h"
19 
20 namespace tflite {
21 
MMAPAllocation(const char * filename,ErrorReporter * error_reporter)22 MMAPAllocation::MMAPAllocation(const char* filename,
23                                ErrorReporter* error_reporter)
24     : Allocation(error_reporter, Allocation::Type::kMMap),
25       mmapped_buffer_(nullptr) {
26   // The disabled variant should never be created.
27   assert(false);
28 }
29 
~MMAPAllocation()30 MMAPAllocation::~MMAPAllocation() {}
31 
base() const32 const void* MMAPAllocation::base() const { return nullptr; }
33 
bytes() const34 size_t MMAPAllocation::bytes() const { return 0; }
35 
valid() const36 bool MMAPAllocation::valid() const { return false; }
37 
IsSupported()38 bool MMAPAllocation::IsSupported() { return false; }
39 
40 }  // namespace tflite
41