/packages/modules/NeuralNetworks/common/ |
D | AidlHalUtils.cpp | 36 aidl_hal::PerformanceInfo perf) { in nonExtensionOperandPerformance() argument 42 ret.push_back(aidl_hal::OperandPerformance{type, perf}); in nonExtensionOperandPerformance() 54 aidl_hal::OperandType type, aidl_hal::PerformanceInfo perf) { in update() argument 57 [](const aidl_hal::OperandPerformance& perf, in update() 58 aidl_hal::OperandType type) { return perf.type < type; }); in update() argument 61 it->info = perf; in update()
|
D | LegacyHalUtils.cpp | 237 V1_0::PerformanceInfo perf) { in nonExtensionOperandPerformance() argument 247 ret.push_back(OpPerf{type, perf}); in nonExtensionOperandPerformance() 257 nonExtensionOperandPerformance<HalVersion::V1_2>(V1_0::PerformanceInfo perf); 259 nonExtensionOperandPerformance<HalVersion::V1_3>(V1_0::PerformanceInfo perf); 263 VersionedOperandType<version> type, V1_0::PerformanceInfo perf) { in update() argument 267 [](const VersionedOperandPerformance<version>& perf, in update() 268 VersionedOperandType<version> type) { return perf.type < type; }); in update() 271 it->info = perf; in update() 275 V1_2::OperandType type, V1_0::PerformanceInfo perf) { in update() argument 276 update<HalVersion::V1_2>(operandPerformance, type, perf); in update() [all …]
|
/packages/apps/TV/src/com/android/tv/perf/stub/ |
D | StubPerformanceMonitor.java | 17 package com.android.tv.perf.stub; 20 import com.android.tv.perf.PerformanceMonitor; 21 import com.android.tv.perf.TimerEvent;
|
D | StubStartupMeasure.java | 16 package com.android.tv.perf.stub; 19 import com.android.tv.perf.StartupMeasure;
|
/packages/modules/NeuralNetworks/runtime/test/ |
D | HalUtils.h | 34 inline V1_3::Capabilities makeCapabilities(float perf) { in makeCapabilities() argument 35 const V1_0::PerformanceInfo perfInfo = {.execTime = perf, .powerUsage = perf}; in makeCapabilities()
|
D | TestPartitioning.cpp | 185 void update(V1_3::Capabilities* capabilities, V1_3::OperandType type, float perf) { in update() argument 186 V1_0::PerformanceInfo perfInfo = {.execTime = perf, .powerUsage = perf}; in update() 1017 DeviceSpecification(const std::string& name, float perf, uint32_t operationMask, in DeviceSpecification() 1021 : DeviceSpecification(name, perf, perf, operationMask, oem, halVersion, 1023 DeviceSpecification(const std::string& name, float perf, float perfRelaxed, in DeviceSpecification() 1028 : DeviceSpecification(name, kVersionString, perf, perfRelaxed, operationMask, oem, 1030 DeviceSpecification(const std::string& name, const std::string& version, float perf, in DeviceSpecification() 1035 : DeviceSpecification(name, version, perf, perf, operationMask, oem, halVersion, 1037 DeviceSpecification(const std::string& name, const std::string& version, float perf, in DeviceSpecification() 1048 V1_0::PerformanceInfo perfInfo = {.execTime = perf, .powerUsage = perf}; [all …]
|
/packages/modules/NeuralNetworks/common/include/ |
D | AidlHalUtils.h | 35 aidl_hal::PerformanceInfo perf); 41 aidl_hal::OperandType type, aidl_hal::PerformanceInfo perf);
|
D | LegacyHalUtils.h | 92 V1_0::PerformanceInfo perf); 98 V1_2::OperandType type, V1_0::PerformanceInfo perf); 100 V1_3::OperandType type, V1_0::PerformanceInfo perf);
|
/packages/apps/TV/src/com/android/tv/perf/ |
D | StartupMeasureFactory.java | 16 package com.android.tv.perf; 19 import com.android.tv.perf.stub.StubStartupMeasure;
|
D | PerformanceMonitor.java | 17 package com.android.tv.perf; 19 import static com.android.tv.perf.EventNames.EventName;
|
D | TimerEvent.java | 17 package com.android.tv.perf;
|
D | StartupMeasure.java | 16 package com.android.tv.perf;
|
D | EventNames.java | 17 package com.android.tv.perf;
|
/packages/modules/NeuralNetworks/driver/sample/ |
D | SampleDriverFull.h | 30 SampleDriverFull(const char* name, V1_0::PerformanceInfo perf) in SampleDriverFull() argument 31 : SampleDriver(name), mPerf(perf) {} in SampleDriverFull()
|
/packages/modules/NeuralNetworks/driver/sample_aidl/ |
D | SampleDriverFull.h | 30 SampleDriverFull(const char* name, aidl_hal::PerformanceInfo perf) in SampleDriverFull() argument 31 : SampleDriver(name), mPerf(perf) {} in SampleDriverFull()
|
/packages/apps/TV/src/com/android/tv/app/ |
D | LiveTvModule.java | 22 import com.android.tv.perf.PerformanceMonitor; 23 import com.android.tv.perf.stub.StubPerformanceMonitor;
|
/packages/apps/TV/src/com/android/tv/search/ |
D | LocalSearchProvider.java | 36 import com.android.tv.perf.EventNames; 37 import com.android.tv.perf.PerformanceMonitor; 38 import com.android.tv.perf.TimerEvent;
|
/packages/modules/NeuralNetworks/tools/ |
D | build_and_run_benchmark.sh | 70 LOGFILE=$LOGDIR/perf-cpu.txt 87 LOGFILE=$LOGDIR/perf-driver.txt
|
/packages/apps/TV/tests/common/src/com/android/tv/testing/ |
D | TestSingletonApp.java | 45 import com.android.tv.perf.PerformanceMonitor; 46 import com.android.tv.perf.stub.StubPerformanceMonitor;
|
/packages/apps/TV/src/com/android/tv/ |
D | TvApplication.java | 58 import com.android.tv.perf.PerformanceMonitor; 59 import com.android.tv.perf.StartupMeasure; 60 import com.android.tv.perf.StartupMeasureFactory;
|
/packages/apps/TV/tests/robotests/src/com/android/tv/search/ |
D | LocalSearchProviderTest.java | 35 import com.android.tv.perf.PerformanceMonitor; 36 import com.android.tv.perf.stub.StubPerformanceMonitor;
|
/packages/apps/Traceur/ |
D | OWNERS | 6 # android-perf@google.com
|
/packages/apps/TV/tests/robotests/src/com/android/tv/data/epg/ |
D | EpgFetcherImplTest.java | 36 import com.android.tv.perf.PerformanceMonitor; 37 import com.android.tv.perf.stub.StubPerformanceMonitor;
|
/packages/apps/TV/src/com/android/tv/dvr/ui/browse/ |
D | DvrBrowseActivity.java | 25 import com.android.tv.perf.StartupMeasureFactory;
|
/packages/apps/TV/src/com/android/tv/data/ |
D | ProgramDataManager.java | 43 import com.android.tv.perf.EventNames; 44 import com.android.tv.perf.PerformanceMonitor; 45 import com.android.tv.perf.TimerEvent;
|