HomeSort by relevance Sort by last modified time
    Searched defs:Model (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/skia/tools/mdbviz/
Model.cpp 10 #include "Model.h"
18 Model::Model() : fCurOp(0) {
23 Model::~Model() {
27 Model::ErrorCode Model::load(const char* filename) {
54 const char* Model::ErrorString(ErrorCode err) {
64 const char* Model::getOpName(int index) const {
68 bool Model::isHierarchyPush(int index) const
    [all...]
Model.h 15 class Model {
23 Model();
24 ~Model();
  /external/skqp/tools/mdbviz/
Model.cpp 10 #include "Model.h"
18 Model::Model() : fCurOp(0) {
23 Model::~Model() {
27 Model::ErrorCode Model::load(const char* filename) {
54 const char* Model::ErrorString(ErrorCode err) {
64 const char* Model::getOpName(int index) const {
68 bool Model::isHierarchyPush(int index) const
    [all...]
Model.h 15 class Model {
23 Model();
24 ~Model();
  /external/llvm/lib/Target/AArch64/
AArch64MCInstLower.cpp 86 TLSModel::Model Model;
89 Model = Printer.TM.getTLSModel(GV);
91 Model == TLSModel::LocalDynamic)
92 Model = TLSModel::GeneralDynamic;
100 Model = TLSModel::GeneralDynamic;
102 switch (Model) {
  /external/python/google-api-python-client/tests/
test_protobuf_model.py 17 """Protocol Buffer Model tests
19 Unit tests for the Protocol Buffer model.
27 import googleapiclient.model
30 from googleapiclient.model import ProtocolBufferModel
50 class Model(unittest.TestCase):
52 self.model = ProtocolBufferModel(MockProtocolBuffer)
60 headers, params, query, body = self.model.request(
74 headers, params, query, body = self.model.request(
87 content = self.model.response(resp, content)
95 content = self.model.response(resp, content
    [all...]
test_json_model.py 17 """JSON Model tests
19 Unit tests for the JSON model.
31 import googleapiclient.model
35 from googleapiclient.model import JsonModel
40 class Model(unittest.TestCase):
42 model = JsonModel(data_wrapper=False)
49 headers, unused_params, query, body = model.request(
58 model = JsonModel(data_wrapper=False)
65 headers, unused_params, query, body = model.request(
74 model = JsonModel(data_wrapper=True
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Default, Static, PIC_, DynamicNoPIC };
25 // Code model types.
27 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
  /external/swiftshader/third_party/LLVM/lib/Support/
Host.cpp 96 unsigned &Model) {
98 Model = (EAX >> 4) & 0xf; // Bits 4 - 7
103 // Examine extended model ID if family ID is 6 or F.
104 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
113 unsigned Model = 0;
114 DetectX86FamilyModel(EAX, Family, Model);
131 switch (Model) {
144 switch (Model) {
162 switch (Model) {
167 // model 0
    [all...]
  /external/tensorflow/tensorflow/python/keras/
models.py 16 """Code for model cloning, plus model-related API entries.
40 Model = training.Model # pylint: disable=invalid-name
53 def _clone_functional_model(model, input_tensors=None, share_weights=False):
54 """Clone a functional `Model` instance.
56 Model cloning is similar to calling a model on new inputs,
61 model: Instance of `Model`
    [all...]
  /external/tensorflow/tensorflow/python/keras/saving/
saving_utils_test.py 61 model = testing_utils.get_small_mlp(10, 3, input_dim)
67 saving_utils.trace_model_call(model)
68 model._set_inputs(inputs)
70 fn = saving_utils.trace_model_call(model)
72 expected_outputs = {model.output_names[0]: model(inputs)}
80 model = testing_utils.get_small_mlp(10, 3, input_dim)
81 model.compile(optimizer='sgd', loss='mse')
82 model.fit(x=np.random.random((8, 5)),
87 fn = saving_utils.trace_model_call(model)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64MCInstLower.cpp 106 TLSModel::Model Model;
109 Model = Printer.TM.getTLSModel(GV);
111 Model == TLSModel::LocalDynamic)
112 Model = TLSModel::GeneralDynamic;
120 Model = TLSModel::GeneralDynamic;
122 switch (Model) {
  /external/llvm/lib/Target/
TargetMachine.cpp 82 /// Returns the code generation relocation model. The choices are static, PIC,
84 Reloc::Model TargetMachine::getRelocationModel() const { return RM; }
86 /// Returns the code model. The choices are small, kernel, medium, large, and
88 CodeModel::Model TargetMachine::getCodeModel() const { return CMModel; }
90 /// Get the IR-specified TLS model for Var.
91 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
105 llvm_unreachable("invalid TLS model");
113 Reloc::Model RM = getRelocationModel();
153 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
155 Reloc::Model RM = getRelocationModel()
    [all...]
  /external/python/google-api-python-client/googleapiclient/
model.py 15 """Model objects for requests and responses.
18 as JSON, Atom, etc. The model classes are responsible
45 class Model(object):
46 """Model base class.
48 All Model classes should implement this interface.
49 The Model serializes and de-serializes between a wire
88 class BaseModel(Model):
89 """Base model class.
239 """Model class for JSON.
278 """Model class for requests that don't return JSON
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86Subtarget.cpp 70 // Large model never uses stubs.
241 unsigned Model = 0;
242 X86_MC::DetectFamilyModel(EAX, Family, Model);
243 if (IsAMD || (Family == 6 && Model >= 13)) {
248 if (Family == 15 && Model == 26) {
  /external/testng/src/main/java/org/testng/mustache/
Model.java 7 public class Model {
15 public Model(Map<String, Object> model) {
16 m_model = model;
81 return "[Model " + m_model + " subModel:" + m_subModels + "]";
  /frameworks/av/services/soundtrigger/
SoundTriggerHwService.h 66 class Model : public RefBase {
74 Model(sound_model_handle_t handle, audio_session_t session, audio_io_handle_t ioHandle,
77 ~Model() {}
134 sp<Model> getModel(sound_model_handle_t handle);
152 DefaultKeyedVector< sound_model_handle_t, sp<Model> > mModels;
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/
Microcode.h 44 UINT32 Model:4;
80 /// Extended family, extended model, type, family, model, and stepping
83 /// given extended family, extended model, type, family, model, and
162 /// Extended family, extended model, type, family, model, and stepping
165 /// given extended family, extended model, type, family, model, and
  /external/llvm/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC };
25 // Code model types.
28 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
42 enum Model {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Small, Kernel, Medium, Large };
42 enum Model {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/
TargetMachine.cpp 86 /// Returns the code generation relocation model. The choices are static, PIC,
88 Reloc::Model TargetMachine::getRelocationModel() const { return RM; }
90 /// Returns the code model. The choices are small, kernel, medium, large, and
92 CodeModel::Model TargetMachine::getCodeModel() const { return CMModel; }
94 /// Get the IR-specified TLS model for Var.
95 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
109 llvm_unreachable("invalid TLS model");
137 Reloc::Model RM = getRelocationModel();
207 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
209 Reloc::Model RM = getRelocationModel()
    [all...]
  /external/tensorflow/tensorflow/contrib/optimizer_v2/
checkpointable_utils_test.py 61 class MyModel(training.Model):
62 """A concrete Model for testing."""
98 model = MyModel()
99 # A nuisance Model using the same optimizer. Its slot variables should not
105 optimizer=optimizer, model=model, optimizer_step=optimizer_step)
108 lambda: model(input_value),
115 model(input_value), global_step=optimizer_step)
127 "model/_second/kernel",
128 "model/_named_dense/kernel"
424 model = Model() variable in class:CheckpointingTests.testAnonymousVarsInInit.Model
    [all...]
  /external/tensorflow/tensorflow/core/framework/
model.h 35 namespace model { namespace in namespace:tensorflow::data
41 // the performance model.
70 // Identifies the model value of the parameter. This can be different from
244 // The purpose for this method is to allow the model optimization logic to
245 // operate over immutable state while allowing concurrent model updates.
321 // InterleaveMany is used to model datasets whose inputs are used to create
330 // KnownMany nodes model datasets that synchronously consume known number of
349 // Unknown nodes represent datasets for which we do not have a model. It acts
356 // create a performance model, which is in turn used to identify optimal values
363 class Model {
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/
MiscOemType0x90Function.c 50 UINT8 Model;
55 EfiCpuVersion (&FamilyId, &Model, &SteppingId, &ProcessorType);
58 //we need raw Model data
60 Model = Model & 0xf;
63 //Family/Model/Step
65 UnicodeSPrint (Buffer, sizeof (Buffer), L"%d/%d/%d", FamilyId, Model, SteppingId);
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 621 /// \brief The template model for the base class which wraps a concrete
623 template <typename T> class Model;
    [all...]

Completed in 6397 milliseconds

1 2 3