Home
last modified time | relevance | path

Searched refs:statistics (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineExecutablePropertiesTests.cpp324 std::vector<VkPipelineExecutableStatisticKHR> statistics[PIPELINE_CACHE_NDX_COUNT]; in verifyStatistics() local
344 statistics[ndx].resize(statisticCount); in verifyStatistics()
347 deMemset(&statistics[ndx][statNdx], 0, sizeof(statistics[ndx][statNdx])); in verifyStatistics()
348 statistics[ndx][statNdx].sType = VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_STATISTIC_KHR; in verifyStatistics()
349 statistics[ndx][statNdx].pNext = DE_NULL; in verifyStatistics()
351 …eExecutableStatisticsKHR(vkDevice, &pipelineExecutableInfo, &statisticCount, &statistics[ndx][0])); in verifyStatistics()
355 …if (!checkString(statistics[ndx][statNdx].name, DE_LENGTH_OF_ARRAY(statistics[ndx][statNdx].name))) in verifyStatistics()
362 if (deMemCmp(statistics[ndx][statNdx].name, statistics[ndx][otherNdx].name, in verifyStatistics()
363 DE_LENGTH_OF_ARRAY(statistics[ndx][statNdx].name)) == 0) in verifyStatistics()
369 …if (!checkString(statistics[ndx][statNdx].description, DE_LENGTH_OF_ARRAY(statistics[ndx][statNdx]… in verifyStatistics()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
DvktPipelineExecutablePropertiesTests.cpp324 std::vector<VkPipelineExecutableStatisticKHR> statistics[PIPELINE_CACHE_NDX_COUNT]; in verifyStatistics() local
344 statistics[ndx].resize(statisticCount); in verifyStatistics()
347 deMemset(&statistics[ndx][statNdx], 0, sizeof(statistics[ndx][statNdx])); in verifyStatistics()
348 statistics[ndx][statNdx].sType = VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_STATISTIC_KHR; in verifyStatistics()
349 statistics[ndx][statNdx].pNext = DE_NULL; in verifyStatistics()
351 …eExecutableStatisticsKHR(vkDevice, &pipelineExecutableInfo, &statisticCount, &statistics[ndx][0])); in verifyStatistics()
355 …if (!checkString(statistics[ndx][statNdx].name, DE_LENGTH_OF_ARRAY(statistics[ndx][statNdx].name))) in verifyStatistics()
362 if (deMemCmp(statistics[ndx][statNdx].name, statistics[ndx][otherNdx].name, in verifyStatistics()
363 DE_LENGTH_OF_ARRAY(statistics[ndx][statNdx].name)) == 0) in verifyStatistics()
369 …if (!checkString(statistics[ndx][statNdx].description, DE_LENGTH_OF_ARRAY(statistics[ndx][statNdx]… in verifyStatistics()
[all …]
/third_party/python/Lib/test/
Dtest_statistics.py25 import statistics
673 module = statistics
698 failed, tried = doctest.testmod(statistics, optionflags=doctest.ELLIPSIS)
708 self.assertTrue(hasattr(statistics, 'StatisticsError'))
710 issubclass(statistics.StatisticsError, ValueError),
711 errmsg % statistics.StatisticsError.__base__
722 self.assertEqual(statistics._exact_ratio(i), (i, 1))
728 self.assertEqual(statistics._exact_ratio(f), (n, 37))
731 self.assertEqual(statistics._exact_ratio(0.125), (1, 8))
732 self.assertEqual(statistics._exact_ratio(1.125), (9, 8))
[all …]
Dtest_tracemalloc.py483 stats1 = snapshot.statistics('lineno')
492 stats2 = snapshot2.statistics('lineno')
500 statistics = snapshot2.compare_to(snapshot, 'lineno')
501 self.assertEqual(statistics, [
517 stats1 = snapshot.statistics('filename')
525 stats2 = snapshot2.statistics('filename')
548 stats1 = snapshot.statistics('traceback')
558 stats2 = snapshot2.statistics('traceback')
576 snapshot.statistics, 'traceback', cumulative=True)
589 stats = snapshot.statistics('filename', True)
[all …]
/third_party/node/benchmark/
Dcompare.R54 statistics = ddply(dat, "name", function(subdat) { globalVar
103 row.names(statistics) = statistics$name;
104 statistics$name = NULL;
107 print(statistics);
117 nrow(statistics),
118 nrow(statistics) * 0.05,
119 nrow(statistics) * 0.01,
120 nrow(statistics) * 0.001))
/third_party/mesa3d/src/vulkan/overlay-layer/
DREADME.rst26 List the available statistics:
33 Turn on some statistics:
48 Log statistics to a file:
56 **Note:** some statistics (e.g. :code:`frame_timing` and :code:`gpu_timing`) log values for the ent…
57 For these statistics, logging the :code:`frame` statistic allows one to compute per-frame statistic…
59 Log statistics to a file, controlling when such statistics will start to be captured:
88 The client connected to the overlay layer can enable statistics capturing by sending the command:
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcordz_info_test.cc294 CordzStatistics statistics = info->GetCordzStatistics(); in TEST() local
295 EXPECT_THAT(statistics.size, Eq(data.rep.rep->length)); in TEST()
296 EXPECT_THAT(statistics.method, Eq(kTrackCordMethod)); in TEST()
297 EXPECT_THAT(statistics.parent_method, Eq(kUnknownMethod)); in TEST()
298 EXPECT_THAT(statistics.update_tracker.Value(kTrackCordMethod), Eq(1)); in TEST()
312 CordzStatistics statistics = info->GetCordzStatistics(); in TEST() local
313 EXPECT_THAT(statistics.update_tracker.Value(kUpdateMethod), Eq(2)); in TEST()
328 CordzStatistics statistics = info_child->GetCordzStatistics(); in TEST() local
329 EXPECT_THAT(statistics.size, Eq(child.rep.rep->length)); in TEST()
330 EXPECT_THAT(statistics.method, Eq(kChildMethod)); in TEST()
[all …]
/third_party/node/lib/internal/
Dhttp.js29 constructor(statistics) { argument
33 const startTime = statistics.startTime;
40 function emitStatistics(statistics) { argument
41 notify('http', new HttpRequestTiming(statistics));
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_AMD_shader_info.adoc21 statistics about a shader's resource usage.
46 VkShaderStatisticsInfoAMD statistics = {};
48 size_t dataSize = sizeof(statistics);
55 &statistics) == VK_SUCCESS)
57 printf("VGPR usage: %d\n", statistics.resourceUsage.numUsedVgprs);
58 printf("SGPR usage: %d\n", statistics.resourceUsage.numUsedSgprs);
DVK_AMD_shader_info.txt21 statistics about a shader's resource usage.
46 VkShaderStatisticsInfoAMD statistics = {};
48 size_t dataSize = sizeof(statistics);
55 &statistics) == VK_SUCCESS)
57 printf("VGPR usage: %d\n", statistics.resourceUsage.numUsedVgprs);
58 printf("SGPR usage: %d\n", statistics.resourceUsage.numUsedSgprs);
DVK_KHR_pipeline_executable_properties.txt33 This extension adds a mechanism to query properties and statistics about the
37 Certain compile-time shader statistics provided through this extension may
45 compilation process and about which you can query properties and statistics?
DVK_KHR_pipeline_executable_properties.adoc33 This extension adds a mechanism to query properties and statistics about the
37 Certain compile-time shader statistics provided through this extension may
45 compilation process and about which you can query properties and statistics?
/third_party/openssl/doc/man3/
DOPENSSL_LH_stats.pod7 OPENSSL_LH_node_stats_bio, OPENSSL_LH_node_usage_stats_bio - LHASH statistics
23 The B<LHASH> structure records statistics about most aspects of
26 OPENSSL_LH_stats() prints out statistics on the size of the hash table and how
28 number of additional statistics, but the tracking of these statistics is no
29 longer supported and these statistics are always reported as zero.
/third_party/python/Lib/
Dtracemalloc.py121 statistics = []
132 statistics.append(stat)
136 statistics.append(stat)
137 return statistics
528 def statistics(self, key_type, cumulative=False): member in Snapshot
534 statistics = list(grouped.values())
535 statistics.sort(reverse=True, key=Statistic._sort_key)
536 return statistics
546 statistics = _compare_grouped_stats(old_group, new_group)
547 statistics.sort(reverse=True, key=StatisticDiff._sort_key)
[all …]
/third_party/mesa3d/src/amd/compiler/
Daco_statistics.cpp43 program->statistics[statistic_sgpr_presched] = presched_demand.sgpr; in collect_presched_stats()
44 program->statistics[statistic_vgpr_presched] = presched_demand.vgpr; in collect_presched_stats()
441 program->statistics[statistic_instructions] += block.instructions.size(); in collect_preasm_stats()
445 program->statistics[statistic_branches]++; in collect_preasm_stats()
448 program->statistics[statistic_instructions] += 2; in collect_preasm_stats()
455 program->statistics[statistic_vmem_clauses]++; in collect_preasm_stats()
465 program->statistics[statistic_smem_clauses]++; in collect_preasm_stats()
548 program->statistics[statistic_latency] = round(latency); in collect_preasm_stats()
549 program->statistics[statistic_inv_throughput] = round(1.0 / wave64_per_cycle); in collect_preasm_stats()
574 program->statistics[aco::statistic_hash] = util_hash_crc32(code.data(), code.size() * 4); in collect_postasm_stats()
Daco_interface.cpp228 memset(program->statistics, 0, sizeof(program->statistics)); in aco_compile_shader()
268 program->statistics, in aco_compile_shader()
336 memset(program->statistics, 0, sizeof(program->statistics)); in aco_compile_ps_epilog()
/third_party/python/Doc/library/
Dprofile.rst21 Python programs. A :dfn:`profile` is a set of statistics that describes how
22 often and for how long various parts of the program executed. These statistics
152 :meth:`~pstats.Stats.print_stats` method printed out all the statistics. You
159 will print out the statistics. The following are some interesting calls to
174 statistics for the top ten functions.
180 This will sort all the statistics by file name, and then print out statistics
186 This line sorts statistics with a primary key of time, and a secondary key of
187 cumulative time, and then prints out some of the statistics. To be specific, the
204 Invoked as a script, the :mod:`pstats` module is a statistics browser for
225 and gathers profiling statistics from the execution. If no file name is
[all …]
Dtracemalloc.rst48 top_stats = snapshot.statistics('lineno')
73 See :meth:`Snapshot.statistics` for more options.
133 top_stats = snapshot.statistics('traceback')
200 top_stats = snapshot.statistics(key_type)
250 See :meth:`Snapshot.statistics` for more options.
376 Storing more than ``1`` frame is only useful to compute statistics grouped
377 by ``'traceback'`` or to compute cumulative statistics: see the
378 :meth:`Snapshot.compare_to` and :meth:`Snapshot.statistics` methods.
536 Compute the differences with an old snapshot. Get statistics as a sorted
539 See the :meth:`Snapshot.statistics` method for *key_type* and *cumulative*
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/reporting/
DREADME.md3 1. Anonymous usage statistics are reported to Google Analytics (for statistics
/third_party/mesa3d/src/intel/vulkan/
DgenX_query.c518 uint32_t statistics = pool->pipeline_statistics; in genX() local
519 while (statistics) { in genX()
520 uint32_t stat = u_bit_scan(&statistics); in genX()
951 uint32_t statistics = pool->pipeline_statistics; in genX() local
953 while (statistics) { in genX()
954 uint32_t stat = u_bit_scan(&statistics); in genX()
1144 uint32_t statistics = pool->pipeline_statistics; in genX() local
1146 while (statistics) { in genX()
1147 uint32_t stat = u_bit_scan(&statistics); in genX()
1466 uint32_t statistics = pool->pipeline_statistics; in genX() local
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/VK_KHR_pipeline_executable_properties/
Dpipelines.txt98 [open,refpage='vkGetPipelineExecutableStatisticsKHR',desc='Get compile time statistics associated w…
100 Each pipeline executable may: have a set of statistics associated with it
102 These statistics may: include things such as instruction counts, amount of
106 To query the compile-time statistics associated with a pipeline executable,
114 of statistics available or queried, as described below.
118 If pname:pStatistics is `NULL`, then the number of statistics associated
124 If pname:pStatisticCount is less than the number of statistics associated
127 ename:VK_SUCCESS, to indicate that not all the available statistics were
146 …sc='Structure describing a pipeline executable to query for associated statistics or internal repr…
/third_party/skia/third_party/externals/microhttpd/src/examples/
Dmhd2spdy_structures.h163 bool statistics; member
259 if(glob_opt.statistics)\
Dmhd2spdy.c52 if(!glob_opt.statistics) in print_stat()
296 glob_opt.statistics = true; in main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DStatistic.cpp78 iterator_range<const_iterator> statistics() const { in statistics() function in __anonc6e388bd0111::StatisticInfo
258 for (const auto &Stat : StatInfo->statistics()) in GetStatistics()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
D.gitattributes1 # Prevent Github Linguist from counting generated files in statistics.

12345678910>>...15