• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2019 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 #ifndef TENSORFLOW_LITE_TESTING_KERNEL_TEST_INPUT_GENERATOR_H_
16 #define TENSORFLOW_LITE_TESTING_KERNEL_TEST_INPUT_GENERATOR_H_
17 
18 #include <memory>
19 #include <vector>
20 
21 #include "tensorflow/lite/c/common.h"
22 #include "tensorflow/lite/interpreter.h"
23 #include "tensorflow/lite/model.h"
24 #include "tensorflow/lite/string_type.h"
25 
26 namespace tflite {
27 namespace testing {
28 
29 // Generate random input, or read input from a file for kernel diff test.
30 // Needs to load the tflite graph to get information like tensor shape and
31 // data type.
32 class InputGenerator {
33  public:
34   InputGenerator() = default;
35   TfLiteStatus LoadModel(const string& model_dir);
36   TfLiteStatus ReadInputsFromFile(const string& filename);
37   TfLiteStatus GenerateInput(const string& distribution);
38   std::vector<string> GetInputs();
39   TfLiteStatus WriteInputsToFile(const string& filename);
40 
41  private:
42   std::unique_ptr<FlatBufferModel> model_;
43   std::unique_ptr<Interpreter> interpreter_;
44   std::vector<string> inputs_;
45 };
46 
47 }  // namespace testing
48 }  // namespace tflite
49 
50 #endif  // TENSORFLOW_LITE_TESTING_KERNEL_TEST_INPUT_GENERATOR_H_
51