/external/XNNPACK/bench/ |
D | f32-dwconv-e2e.cc | 24 models::ExecutionPlanFactory model_factory, in DWConvEnd2EndBenchmark() 69 …static void f32_dwconv_up4x9__aarch64_neonfma(benchmark::State& state, models::ExecutionPlanFactor… in f32_dwconv_up4x9__aarch64_neonfma() 75 …static void f32_dwconv_up4x9__aarch64_neonfma_cortex_a55(benchmark::State& state, models::Executio… in f32_dwconv_up4x9__aarch64_neonfma_cortex_a55() 81 …BENCHMARK_CAPTURE(f32_dwconv_up4x9__aarch64_neonfma, mobilenet_v1, models::MobileNetV1)->Unit(benc… 82 …BENCHMARK_CAPTURE(f32_dwconv_up4x9__aarch64_neonfma, mobilenet_v2, models::MobileNetV2)->Unit(benc… 84 …BENCHMARK_CAPTURE(f32_dwconv_up4x9__aarch64_neonfma_cortex_a55, mobilenet_v1, models::MobileNetV1)… 85 …BENCHMARK_CAPTURE(f32_dwconv_up4x9__aarch64_neonfma_cortex_a55, mobilenet_v2, models::MobileNetV2)… 89 static void f32_dwconv_up4x9__neon(benchmark::State& state, models::ExecutionPlanFactory model) { in f32_dwconv_up4x9__neon() 95 …static void f32_dwconv_up4x9__neon_acc2(benchmark::State& state, models::ExecutionPlanFactory mode… in f32_dwconv_up4x9__neon_acc2() 101 static void f32_dwconv_up8x9__neon(benchmark::State& state, models::ExecutionPlanFactory model) { in f32_dwconv_up8x9__neon() [all …]
|
D | f32-gemm-e2e.cc | 26 models::ExecutionPlanFactory model_factory, in GEMMEnd2EndBenchmark() 73 …static void f32_gemm_4x12__aarch64_neonfma_cortex_a53(benchmark::State& state, models::ExecutionPl… in f32_gemm_4x12__aarch64_neonfma_cortex_a53() 82 …static void f32_gemm_4x8__aarch64_neonfma_cortex_a53(benchmark::State& state, models::ExecutionPla… in f32_gemm_4x8__aarch64_neonfma_cortex_a53() 91 …static void f32_gemm_4x8__aarch64_neonfma_cortex_a57(benchmark::State& state, models::ExecutionPla… in f32_gemm_4x8__aarch64_neonfma_cortex_a57() 100 …static void f32_gemm_4x8__aarch64_neonfma_cortex_a75(benchmark::State& state, models::ExecutionPla… in f32_gemm_4x8__aarch64_neonfma_cortex_a75() 109 …static void f32_gemm_4x8__aarch64_neonfma_ld64(benchmark::State& state, models::ExecutionPlanFacto… in f32_gemm_4x8__aarch64_neonfma_ld64() 118 …static void f32_gemm_4x8__aarch64_neonfma_ld128(benchmark::State& state, models::ExecutionPlanFact… in f32_gemm_4x8__aarch64_neonfma_ld128() 127 …static void f32_gemm_5x8__aarch64_neonfma_cortex_a57(benchmark::State& state, models::ExecutionPla… in f32_gemm_5x8__aarch64_neonfma_cortex_a57() 136 …static void f32_gemm_5x8__aarch64_neonfma_cortex_a75(benchmark::State& state, models::ExecutionPla… in f32_gemm_5x8__aarch64_neonfma_cortex_a75() 145 …static void f32_gemm_6x8__aarch64_neonfma_cortex_a53(benchmark::State& state, models::ExecutionPla… in f32_gemm_6x8__aarch64_neonfma_cortex_a53() [all …]
|
/external/autotest/frontend/tko/ |
D | rpc_interface.py | 3 from django.db import models as dbmodels 6 from autotest_lib.frontend.afe import models as afe_models, readonly_connection 7 from autotest_lib.frontend.tko import models, tko_rpc_utils 15 models.TestView.list_objects(filter_data)) 19 return models.TestView.query_count(filter_data) 47 query = models.TestView.objects.get_query_set_with_joins(filter_data) 49 query = models.TestView.query_objects(filter_data, initial_query=query, 51 count_alias, count_sql = models.TestView.objects.get_count_sql(query) 55 query = models.TestView.apply_presentation(query, filter_data) 68 query = models.TestView.objects.get_query_set_with_joins(filter_data) [all …]
|
D | models_test.py | 9 from autotest_lib.frontend.tko import models 16 self.machine1 = models.Machine.objects.create(hostname='myhost') 17 self.good_status = models.Status.objects.create(word='GOOD') 19 self.kernel1 = models.Kernel.objects.create(kernel_hash=kernel_name, 22 self.job1 = models.Job.objects.create( 26 self.job1_test1 = models.Test.objects.create( 38 models.Test.objects.populate_relationships( 39 [test], models.TestAttribute, 'attribute_list')
|
/external/autotest/frontend/afe/ |
D | rpc_interface.py | 45 from django.db.models import Count 57 from autotest_lib.frontend.afe import models 59 from autotest_lib.frontend.tko import models as tko_models 104 label_model = models.Label.smart_get(id) 124 label_model = models.Label.smart_get(id) 135 hosts.append(models.Host.smart_get(h.id)) 159 label = models.Label.add_object(name=name, **kwargs) 181 label = models.Label.smart_get(id) 183 label = models.StaticLabel.smart_get(label.name) 185 host_objs = models.Host.smart_get_bulk(hosts) [all …]
|
D | models_test.py | 10 from autotest_lib.frontend.afe import models, model_logic 31 everyone_acl = models.AclGroup.objects.get(name='Everyone') 38 models.AclGroup.on_host_membership_change() 55 models.Host.objects.populate_relationships( 56 [host], models.HostAttribute, 'attribute_list') 61 previous_config = models.RESPECT_STATIC_ATTRIBUTES 62 models.RESPECT_STATIC_ATTRIBUTES = False 63 host1 = models.Host.objects.create(hostname='test_host1') 73 models.RESPECT_STATIC_ATTRIBUTES = previous_config 77 previous_config = models.RESPECT_STATIC_ATTRIBUTES [all …]
|
D | rpc_interface_unittest.py | 18 from autotest_lib.frontend.afe import models 33 _hqe_status = models.HostQueueEntry.Status 96 return models.Job.objects.get(id=job_id) 101 label2 = models.Label.objects.create(name='bluetooth', platform=False) 111 host2 = models.Host.objects.create(hostname='test_host2', leased=False) 121 host2 = models.Host.objects.create(hostname='test_host2', leased=False) 126 self.mox.StubOutWithMock(models.Host, '_assign_to_shard_nothing_helper') 130 models.Host._assign_to_shard_nothing_helper().WithSideEffects( 136 host2 = models.Host.smart_get(host2.id) 144 leased_host = models.Host.objects.create(hostname='leased_host', [all …]
|
D | frontend_test_utils.py | 6 from autotest_lib.frontend.afe import models, model_attributes 14 if models.DroneSet.drone_sets_enabled(): 15 models.DroneSet.objects.create( 16 name=models.DroneSet.default_drone_set_name()) 18 acl_group = models.AclGroup.objects.create(name='my_acl') 19 acl_group.users.add(models.User.current_user()) 21 self.hosts = [models.Host.objects.create(hostname=hostname) 27 models.AclGroup.smart_get('Everyone').hosts = [] 29 self.labels = [models.Label.objects.create(name=name) for name in 33 platform = models.Label.objects.create(name='myplatform', platform=True) [all …]
|
D | shard_heartbeat_unittest.py | 14 from autotest_lib.frontend.afe import models 34 assigned = models.Job.assign_to_shard(shard, []) 45 assigned = models.Job.assign_to_shard(shard, []) 54 assigned_jobs = models.Job.assign_to_shard(shard, [known_job.id]) 65 assigned = models.Job.assign_to_shard(shard, []) 75 assigned = models.Job.assign_to_shard(shard, []) 81 old = models.Job.SKIP_JOBS_CREATED_BEFORE 83 models.Job.SKIP_JOBS_CREATED_BEFORE = value 86 models.Job.SKIP_JOBS_CREATED_BEFORE = old 96 job = models.Job.objects.create( [all …]
|
D | rpc_utils.py | 20 from autotest_lib.frontend.afe import models, model_logic 131 % models.HostQueueEntry.Status.QUEUED) 191 initial_query = models.Host.valid_objects.all() 193 initial_query = models.Host.objects.all() 196 hosts = models.Host.get_hosts_with_labels( 201 return models.Host.query_objects(filter_data, initial_query=hosts) 202 except models.Label.DoesNotExist: 203 return models.Host.objects.none() 256 test_objects = [models.Test.smart_get(test) for test in tests] 260 profiler_objects = [models.Profiler.smart_get(profiler) [all …]
|
D | management.py | 3 from django.db.models import signals 13 from frontend.afe import models 22 admin_group, created = auth.models.Group.objects.get_or_create( 25 PermissionModel = auth.models.Permission 49 signals.post_syncdb.connect(create_admin_group, sender=models)
|
/external/tensorflow/tensorflow/lite/g3doc/guide/ |
D | hosted_models.md | 1 # Hosted models 3 The following is an incomplete list of pre-trained models optimized to work with 6 To get started choosing a model, visit <a href="../models">Models</a>. 11 models to find the optimal balance between size, performance, and accuracy. 16 <a href="../models/image_classification/overview.md">Image classification</a>. 21 <a href="../models/bert_qa/overview.md">Question And Answer</a>. 23 ### Quantized models 26 classification models offer the smallest model size and fastest performance, at 32 …pdf), [tflite&pb](https://storage.googleapis.com/download.tensorflow.org/models/mobilenet_v1_2018_… 33 …pdf), [tflite&pb](https://storage.googleapis.com/download.tensorflow.org/models/mobilenet_v1_2018_… [all …]
|
D | get_started.md | 4 models on mobile, embedded, and IoT devices. The following guide walks through 15 There are many ways to obtain a TensorFlow model, from using pre-trained models 25 all models can be converted. For details, read about the 31 The TensorFlow Lite team provides a set of pre-trained models that solve a 32 variety of machine learning problems. These models have been converted to work 35 The pre-trained models include: 37 * [Image classification](../models/image_classification/overview.md) 38 * [Object detection](../models/object_detection/overview.md) 39 * [Smart reply](../models/smart_reply/overview.md) 40 * [Pose estimation](../models/pose_estimation/overview.md) [all …]
|
/external/tensorflow/tensorflow/python/keras/ |
D | keras_parameterized_test.py | 37 models = [] 47 models.append(testing_utils.get_small_mlp(1, 4, input_dim=3)) 62 self.assertTrue(models[0]._is_graph_network) 63 self.assertFalse(models[1]._is_graph_network) 64 self.assertNotIsInstance(models[0], keras.models.Sequential) 65 self.assertNotIsInstance(models[1], keras.models.Sequential) 66 self.assertIsInstance(models[2], keras.models.Sequential) 76 models = [] 90 models.append(testing_utils.get_small_mlp(1, 4, input_dim=3)) 111 self.assertTrue(models[0]._is_graph_network) [all …]
|
D | models_test.py | 34 from tensorflow.python.keras import models 106 keras.models._clone_sequential_model, layer_fn=models.share_weights) 108 clone_fn = keras.models.clone_model 111 model = models.Sequential(_get_layers(input_shape, add_input_layer)) 153 keras.models._clone_functional_model, layer_fn=models.share_weights) 155 clone_fn = keras.models.clone_model 172 model = keras.models.Model([input_a, input_b], outputs) 187 new_model = keras.models.clone_model( 220 keras.models._clone_functional_model, layer_fn=models.share_weights) 222 clone_fn = keras.models.clone_model [all …]
|
/external/autotest/site_utils/ |
D | stable_version_classify_unittest.py | 17 fc = _FakeConfig(enable=False, boards=[], models=[]) 28 fc = _FakeConfig(enable=True, boards=[], models=[]) 39 fc = _FakeConfig(enable=True, boards=[u'nocturne'], models=[u'nocturne']) 59 fc = _FakeConfig(enable=True, boards=[u':all'], models=[u':all']) 82 def __init__(self, boards=None, models=None, enable=None): argument 84 assert isinstance(models, list) 87 self.models = models 99 return self.models
|
/external/python/oauth2client/tests/contrib/django_util/ |
D | models.py | 17 from django.contrib.auth.models import User 18 from django.db import models 20 from oauth2client.contrib.django_util.models import CredentialsField 23 class CredentialsModel(models.Model): 24 user_id = models.OneToOneField(User)
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_mode_setting.cpp | 288 const auto* models = _.GetExecutionModels(entry_point_id); in ValidateExecutionMode() local 297 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 307 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 339 models->begin(), models->end(), in ValidateExecutionMode() 350 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 367 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 405 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 418 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 429 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_mode_setting.cpp | 288 const auto* models = _.GetExecutionModels(entry_point_id); in ValidateExecutionMode() local 297 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 307 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 339 models->begin(), models->end(), in ValidateExecutionMode() 350 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 367 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 405 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 418 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 429 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
|
/external/angle/third_party/spirv-tools/src/source/val/ |
D | validate_mode_setting.cpp | 288 const auto* models = _.GetExecutionModels(entry_point_id); in ValidateExecutionMode() local 297 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 307 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 339 models->begin(), models->end(), in ValidateExecutionMode() 350 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 367 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 405 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 418 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode() 429 if (!std::all_of(models->begin(), models->end(), in ValidateExecutionMode()
|
/external/tensorflow/ |
D | WORKSPACE | 76 build_file = "//:models.BUILD", 79 "https://storage.googleapis.com/download.tensorflow.org/models/inception_v1.zip", 85 build_file = "//:models.BUILD", 88 …"https://storage.googleapis.com/download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_a… 94 build_file = "//:models.BUILD", 97 "https://storage.googleapis.com/download.tensorflow.org/models/mobile_multibox_v1a.zip", 103 build_file = "//:models.BUILD", 106 "https://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip", 112 build_file = "//:models.BUILD", 115 "https://storage.googleapis.com/download.tensorflow.org/models/speech_commands_v0.01.zip",
|
/external/tensorflow/tensorflow/examples/speech_commands/ |
D | models_test.py | 23 from tensorflow.examples.speech_commands import models 31 return models.prepare_model_settings( 42 models.prepare_model_settings( 56 logits, dropout_prob = models.create_model(fingerprint_input, 68 logits = models.create_model(fingerprint_input, model_settings, "conv", 78 logits, dropout_prob = models.create_model( 90 logits, dropout_prob = models.create_model( 102 models.create_model(fingerprint_input, model_settings, 111 logits, dropout_prob = models.create_model(
|
/external/tensorflow/tensorflow/python/keras/saving/ |
D | hdf5_format_test.py | 67 model = keras.models.Model(a, b) 168 model = keras.models.Sequential([keras.layers.Dense(2, input_dim=2)]) 174 model = keras.models.Model(x, y) 228 model = keras.models.Sequential() 237 model = keras.models.Sequential() 260 model = keras.models.Sequential([ 268 inner_model = keras.models.Model(inner_inputs, x) 271 return keras.models.Model(inputs, inner_model(inputs)) 298 ref_model = keras.models.Sequential() 310 model = keras.models.Sequential() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/ |
D | schedcover.py | 13 models = set() variable 17 global table, models 21 models.add(model) 32 global table, models 36 models.discard("default") 37 models.discard("itinerary") 41 ordered_models.extend(sorted(models))
|
/external/python/google-api-python-client/docs/ |
D | django.md | 10 from django.contrib.auth.models import User 11 from django.db import models 14 class FlowModel(models.Model): 15 id = models.ForeignKey(User, primary_key=True) 24 from django.contrib.auth.models import User 25 from django.db import models 28 class CredentialsModel(models.Model): 29 id = models.ForeignKey(User, primary_key=True) 38 from django.contrib.auth.models import User 40 from your_project.your_app.models import CredentialsModel
|