HomeSort by relevance Sort by last modified time
    Searched refs:Model (Results 401 - 425 of 1881) sorted by null

<<11121314151617181920>>

  /frameworks/ml/nn/runtime/test/specs/V1_1/
strided_slice_quant8_2.mod.py 0 model = Model()
12 model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask, shrinkAxisMask).To(output) variable
1 model = Model() variable
strided_slice_quant8_3.mod.py 0 model = Model()
12 model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask, shrinkAxisMask).To(output) variable
1 model = Model() variable
strided_slice_quant8_4.mod.py 0 model = Model()
12 model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask, shrinkAxisMask).To(output) variable
1 model = Model() variable
strided_slice_quant8_5.mod.py 0 model = Model()
12 model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask, shrinkAxisMask).To(output) variable
1 model = Model() variable
strided_slice_quant8_6.mod.py 0 model = Model()
12 model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask, shrinkAxisMask).To(output) variable
1 model = Model() variable
strided_slice_quant8_7.mod.py 0 model = Model()
12 model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask, shrinkAxisMask).To(output) variable
1 model = Model() variable
strided_slice_quant8_8.mod.py 0 model = Model()
12 model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask, shrinkAxisMask).To(output) variable
1 model = Model() variable
strided_slice_quant8_9.mod.py 0 model = Model()
12 model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask, shrinkAxisMask).To(output) variable
1 model = Model() variable
strided_slice_relaxed.mod.py 17 model = Model() variable
28 model = model.Operation("STRIDED_SLICE", i1, begins, ends, strides, beginMask, endMask, shrinkAxisMask).To(output) variable
29 model = model.RelaxedExecution(True) variable
  /frameworks/ml/nn/tools/test_generator/tests/P_depthwise_conv/
depthwise_conv.bin.mod.py 0 model = Model()
11 model = model.DepthWiseConv(i2, i0, i1, i4, i5, i6, i7, i8).To(i3) variable
1 model = Model() variable
  /hardware/interfaces/neuralnetworks/1.0/vts/functional/
ValidationTests.cpp 35 const Model model = TestName::createTestModel(); \
37 validateModel(model); \
38 validateRequests(model, requests); \
  /hardware/interfaces/neuralnetworks/1.1/vts/functional/
ValidationTests.cpp 35 const Model model = TestName::createTestModel(); \
37 validateModel(model); \
38 validateRequests(model, requests); \
  /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DocumentsAdapter.java 28 import com.android.documentsui.Model;
36 * DocumentsAdapter provides glue between a directory Model, and RecyclerView. We've
58 abstract EventListener<Model.Update> getModelUpdateListener();
74 boolean isDirectory(Model model, int position) {
76 Cursor cursor = model.getItem(modelId);
91 Model getModel();
  /packages/apps/TV/common/src/com/android/tv/common/feature/
Model.java 21 /** Holder for {@link android.os.Build#MODEL} features. */
22 public interface Model {
26 /** True when the {@link android.os.Build#MODEL} equals the {@code model} given. */
30 private ModelFeature(String model) {
31 mModel = model;
40 return android.os.Build.MODEL.equals(mModel);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaFileTable.py 50 Model INTEGER NOT NULL,
74 # @param Model: Model of a Inf item
87 def Insert(self, Model, Value1, Value2, Value3, Scope1='COMMON', Scope2='COMMON',
92 Model,
110 # @param Model: The Model of Record
116 def Query(self, Model, Arch=None, Platform=None):
117 ConditionString = "Model=%s AND Enabled>=0" % Model
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/tflite/
import.cc 28 void LoadTensorsTable(const ::tflite::Model& input_model,
38 void LoadOperatorsTable(const ::tflite::Model& input_model,
53 void ImportTensors(const ::tflite::Model& input_model, Model* model) {
59 Array& array = model->GetOrCreateArray(input_tensor->name()->c_str());
96 const ::tflite::Model& input_model,
99 const details::OperatorsTable& operators_table, Model* model) {
117 model->operators.emplace_back(new_op.release())
173 std::unique_ptr<Model> model; local
    [all...]
  /hardware/qcom/neuralnetworks/hvxservice/1.0/
HexagonModel.cpp 31 static std::vector<OperandInfo> getOperandsInfo(const NeuralnetworksModel& model,
33 std::vector<OperandInfo> info(model.operands.size());
34 for (size_t i = 0; i < model.operands.size(); ++i) {
35 const Operand& operand = model.operands[i];
42 .buffer = const_cast<uint8_t*>(getData(operand, model.operandValues, pools)),
49 Model::Model(const NeuralnetworksModel& model) : mGraphId(0), mNodeCount(0), mCompiled(false) {
50 mPools = mapPools(model.pools);
51 mOperands = getOperandsInfo(model, mPools)
    [all...]
PreparedModel.cpp 31 PreparedModel::PreparedModel(const Model& neuralNetworksModel,
32 const std::shared_ptr<hexagon::Model>& hexagonModel)
37 static void asyncExecute(const std::shared_ptr<hexagon::Model>& model, const Request& request,
40 model->execute(request) == true ? ErrorStatus::NONE : ErrorStatus::GENERAL_FAILURE;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
FdfClassObject.py 89 (Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled) = \
94 Model = MODEL_PCD
100 self.TblFdf.Insert(Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
102 Model = MODEL_META_DATA_COMPONENT
108 self.TblFdf.Insert(Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
  /external/llvm/include/llvm/Target/
TargetMachine.h 91 Reloc::Model RM = Reloc::Static;
92 CodeModel::Model CMModel = CodeModel::Default;
169 /// Returns the code generation relocation model. The choices are static, PIC,
171 Reloc::Model getRelocationModel() const;
173 /// Returns the code model. The choices are small, kernel, medium, large, and
175 CodeModel::Model getCodeModel() const;
181 /// Returns the TLS model which should be used for the given global variable.
182 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
285 TargetOptions Options, Reloc::Model RM, CodeModel::Model CM
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
81 CodeModel::Model CMModel = CodeModel::Default;
161 /// Returns the code generation relocation model. The choices are static, PIC,
163 Reloc::Model getRelocationModel() const;
165 /// Returns the code model. The choices are small, kernel, medium, large, and
167 CodeModel::Model getCodeModel() const;
173 /// Returns the TLS model which should be used for the given global variable.
174 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
271 const TargetOptions &Options, Reloc::Model RM,
272 CodeModel::Model CM, CodeGenOpt::Level OL)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Target/
TargetMachine.h 79 Reloc::Model RM = Reloc::Static;
80 CodeModel::Model CMModel = CodeModel::Default;
160 /// Returns the code generation relocation model. The choices are static, PIC,
162 Reloc::Model getRelocationModel() const;
164 /// Returns the code model. The choices are small, kernel, medium, large, and
166 CodeModel::Model getCodeModel() const;
172 /// Returns the TLS model which should be used for the given global variable.
173 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
269 const TargetOptions &Options, Reloc::Model RM,
270 CodeModel::Model CM, CodeGenOpt::Level OL)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Target/
TargetMachine.h 79 Reloc::Model RM = Reloc::Static;
80 CodeModel::Model CMModel = CodeModel::Default;
160 /// Returns the code generation relocation model. The choices are static, PIC,
162 Reloc::Model getRelocationModel() const;
164 /// Returns the code model. The choices are small, kernel, medium, large, and
166 CodeModel::Model getCodeModel() const;
172 /// Returns the TLS model which should be used for the given global variable.
173 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
269 const TargetOptions &Options, Reloc::Model RM,
270 CodeModel::Model CM, CodeGenOpt::Level OL)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
81 CodeModel::Model CMModel = CodeModel::Small;
161 /// Returns the code generation relocation model. The choices are static, PIC,
163 Reloc::Model getRelocationModel() const;
165 /// Returns the code model. The choices are small, kernel, medium, large, and
167 CodeModel::Model getCodeModel() const;
173 /// Returns the TLS model which should be used for the given global variable.
174 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
277 const TargetOptions &Options, Reloc::Model RM,
278 CodeModel::Model CM, CodeGenOpt::Level OL)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Target/
TargetMachine.h 80 Reloc::Model RM = Reloc::Static;
81 CodeModel::Model CMModel = CodeModel::Small;
161 /// Returns the code generation relocation model. The choices are static, PIC,
163 Reloc::Model getRelocationModel() const;
165 /// Returns the code model. The choices are small, kernel, medium, large, and
167 CodeModel::Model getCodeModel() const;
173 /// Returns the TLS model which should be used for the given global variable.
174 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
277 const TargetOptions &Options, Reloc::Model RM,
278 CodeModel::Model CM, CodeGenOpt::Level OL)
    [all...]

Completed in 440 milliseconds

<<11121314151617181920>>