/aosp_15_r20/external/perfetto/infra/perfetto.dev/ |
H A D | pnpm-lock.yaml | 25 fs-extra: 34 node-watch: 43 /@braintree/sanitize-[email protected]: 44 …resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bo… 48 …resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU+… 52 …resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMg… 56 …resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe… 60 …resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39M… 64 …resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWs… 71 …resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNT… [all …]
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/cpu/ |
H A D | AvgPoolKernel.cpp | 37 int64_t input_height = input.size(-2); in cpu_avg_pool2d() 38 int64_t input_width = input.size(-1); in cpu_avg_pool2d() 39 int64_t output_height = output.size(-2); in cpu_avg_pool2d() 40 int64_t output_width = output.size(-1); in cpu_avg_pool2d() 56 int64_t ih0 = oh * dH - padH; in cpu_avg_pool2d() 57 int64_t iw0 = ow * dW - padW; in cpu_avg_pool2d() 60 int64_t pool_size = (ih1 - ih0) * (iw1 - iw0); in cpu_avg_pool2d() 81 divide_factor = (ih1 - ih0) * (iw1 - iw0); in cpu_avg_pool2d() 113 "2d average pooling with channels last format supports tensors with 4 dims"); in cpu_avg_pool2d_channels_last() 137 int64_t len = size - (size % Vec::size()); in cpu_avg_pool2d_channels_last() [all …]
|
H A D | AdaptiveMaxPoolKernel.cpp | 34 int64_t input_height = input.size(-2); in cpu_adaptive_max_pool2d() 35 int64_t input_width = input.size(-1); in cpu_adaptive_max_pool2d() 56 accscalar_t maxval = -std::numeric_limits<accscalar_t>::infinity(); in cpu_adaptive_max_pool2d() 92 "2d adaptive max pooling with channels last format supports tensors with 4 dims"); in cpu_adaptive_max_pool2d_channels_last() 125 int64_t len = size - (size % Vec::size()); in cpu_adaptive_max_pool2d_channels_last() 141 Vec out_vec = Vec(-std::numeric_limits<scalar_t>::infinity()); in cpu_adaptive_max_pool2d_channels_last() 149 out[d1] = -std::numeric_limits<scalar_t>::infinity(); in cpu_adaptive_max_pool2d_channels_last() 209 "2d adaptive max pooling with channels last format supports tensors with 4 dims"); in cpu_adaptive_max_pool2d_channels_last() 240 int64_t len = size - (size % bVec::size()); in cpu_adaptive_max_pool2d_channels_last() 259 fVec max_fvec = fVec(-std::numeric_limits<float>::infinity()); in cpu_adaptive_max_pool2d_channels_last() [all …]
|
H A D | AdaptiveAvgPoolKernel.cpp | 31 int64_t input_height = input.size(-2); in cpu_adaptive_avg_pool2d() 32 int64_t input_width = input.size(-1); in cpu_adaptive_avg_pool2d() 45 int64_t kh = ih1 - ih0; in cpu_adaptive_avg_pool2d() 50 int64_t kw = iw1 - iw0; in cpu_adaptive_avg_pool2d() 101 int64_t kh = ih1 - ih0; in cpu_adaptive_avg_pool2d_channels_last() 105 int64_t kw = iw1 - iw0; in cpu_adaptive_avg_pool2d_channels_last() 114 for (; d1 < size - (size % Vec::size()); d1 += Vec::size()) { in cpu_adaptive_avg_pool2d_channels_last() 128 for (; d2 < size - (size % Vec::size()); d2 += Vec::size()) { in cpu_adaptive_avg_pool2d_channels_last() 138 int64_t d3 = 0; in cpu_adaptive_avg_pool2d_channels_last() local 139 for (; d3 < size - (size % Vec::size()); d3 += Vec::size()) { in cpu_adaptive_avg_pool2d_channels_last() [all …]
|
H A D | MaxPoolKernel.cpp | 164 fVec out_vec = fVec(-std::numeric_limits<opmath_t>::infinity()); in compute_internal() 172 max_ptr[d1] = -std::numeric_limits<opmath_t>::infinity(); in compute_internal() 223 int64_t d3 = 0; in compute_internal() local 224 for (; d3 < len; d3 += Vec::size()) { in compute_internal() 225 fVec max_fvec0 = fVec::loadu(max_ptr + d3); in compute_internal() 226 fVec max_fvec1 = fVec::loadu(max_ptr + d3 + fVec::size()); in compute_internal() 228 max_bvec.store(out_data + d3); in compute_internal() 230 for (; d3 < size; d3++) { in compute_internal() 231 out_data[d3] = scalar_t(max_ptr[d3]); in compute_internal() 256 int kD = is_3d ? kWHD[dims - 1] : 1; in cpu_max_pool() [all …]
|
/aosp_15_r20/external/gemmlowp/doc/ |
H A D | kernel.md | 3 ## Kernels provide an inner-loop implementation, and a format 9 other low-level details, while achieving high performance. Thus a line had to be 14 In itself, a GEMM kernel is just an implementation of the inner-most loop in a 15 GEMM (That inner-most loop has to be over the 'depth' dimension so as to be able 22 computation, but also in the format of data that they operate on. Indeed, in 28 gemmlowp allows each GEMM kernel to dictate the format of data that it expects, 29 in addition to providing its inner-loop implementation. 31 The former is given by a 'Format' typedef, and the latter by a 'Run' method. 34 NEONKernel12x4Depth2 kernel, which specifies its format as 38 KernelSideFormat<CellFormat<4, 2>, 1> > Format; [all …]
|
/aosp_15_r20/external/ot-br-posix/src/openwrt/view/admin_thread/ |
H A D | thread_view.htm | 1 <%- 24 -%> 32 <ul class="cbi-tabmenu"> 33 …<li class="cbi-tab" id="listtab" style="width:15%;text-align:center;"><a href="javascript:showlist… 34 …<li class="cbi-tab-disabled" id="graphtab" style="width:15%;text-align:center;"><a href="javascrip… 37 <!-- list div --> 39 <!-- leader list --> 41 <div class="cbi-map" style="width:90%;margin-left:5%;"> 42 <div class="cbi-section"> 44 <div class="tr table-titles" style="background-color:#eee;"> [all …]
|
/aosp_15_r20/external/cronet/third_party/icu/source/test/intltest/ |
H A D | astrotst.cpp | 5 * Copyright (c) 1996-2016, International Business Machines Corporation and 24 #define CASE(id,test) case id: name = #test; if (exec) { logln(#test "---"); logln((UnicodeString)"… 69 gc = Calendar::createInstance(TimeZone::getGMT()->clone(), status); in initAstro() 97 gc->clear(); in TestSolarLongitude() 98 gc->set(tests[i].d[0], tests[i].d[1]-1, tests[i].d[2], tests[i].d[3], tests[i].d[4]); in TestSolarLongitude() 100 astro->setDate(gc->getTime(status)); in TestSolarLongitude() 102 double longitude = astro->getSunLongitude(); in TestSolarLongitude() 105 astro->getSunPosition(result); in TestSolarLongitude() 125 gc->clear(); in TestLunarPosition() 126 …gc->set((int32_t)tests[i][0], (int32_t)tests[i][1]-1, (int32_t)tests[i][2], (int32_t)tests[i][3], … in TestLunarPosition() [all …]
|
/aosp_15_r20/external/perfetto/ui/ |
H A D | pnpm-lock.yaml | 23 '@codemirror/theme-one-dark': 41 '@types/color-convert': 62 '@types/w3c-web-usb': 68 color-convert: 71 devtools-protocol: 89 jsbn-rsa: 95 noice-json-rpc: 104 protobufjs-cli: 116 vega-lite: 133 '@rollup/plugin-commonjs': [all …]
|
/aosp_15_r20/external/gemmlowp/internal/ |
H A D | kernel_neon.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 37 Format; typedef 50 // http://stackoverflow.com/questions/3898435/labels-in-gcc-inline-assembly in Run() 62 // A 2x4 cell of Rhs is stored in 16bit in d0--d1 (q0). in Run() 63 // A 12x2 block of 3 4x2 cells Lhs is stored in 16bit in d2--d7 in Run() 64 // (q1--q3). in Run() 65 // A 12x4 block of accumulators is stored in 32bit in q4--q15. in Run() 67 // +-----+-----+-----+-----+ in Run() 69 // Rhs +-----+-----+-----+-----+ in Run() 71 // +-----+-----+-----+-----+ in Run() [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/telemetry/ |
D | package-lock.json | 9 "d3": "7.8.5" string 12 "@typescript-eslint/eslint-plugin": "5.59.6", 13 "@typescript-eslint/parser": "5.59.6", 15 "eslint-config-prettier": "8.8.0", 16 "npm-run-all": "4.1.5", 19 "stylelint-config-standard": "33.0.0", 23 "node_modules/@aashutoshrathi/word-wrap": { 25 "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 26 …"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFw… 32 "node_modules/@babel/code-frame": { [all …]
|
/aosp_15_r20/external/icu/icu4c/source/test/intltest/ |
H A D | astrotst.cpp | 5 * Copyright (c) 1996-2016, International Business Machines Corporation and 24 #define CASE(id,test) case id: name = #test; if (exec) { logln(#test "---"); logln((UnicodeString)"… 67 gc = Calendar::createInstance(TimeZone::getGMT()->clone(), status); in init() 91 gc->clear(); in TestSolarLongitude() 92 gc->set(tests[i].d[0], tests[i].d[1]-1, tests[i].d[2], tests[i].d[3], tests[i].d[4]); in TestSolarLongitude() 94 CalendarAstronomer astro(gc->getTime(status)); in TestSolarLongitude() 115 gc->clear(); in TestLunarPosition() 116 …gc->set((int32_t)tests[i][0], (int32_t)tests[i][1]-1, (int32_t)tests[i][2], (int32_t)tests[i][3], … in TestLunarPosition() 117 CalendarAstronomer astro(gc->getTime(status)); in TestLunarPosition() 120 …tring)"Moon position is " + result.toString() + (UnicodeString)"; " /* + result->toHmsString()*/); in TestLunarPosition() [all …]
|
/aosp_15_r20/external/icu/icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/ |
H A D | IntlTestNumberFormatAPI.java | 5 * Copyright (C) 1996-2009, International Business Machines 9 * Port From: JDK 1.4b1 : java.text.Format.IntlTestNumberFormatAPI 10 * Source File: java/text/format/IntlTestNumberFormatAPI.java 15 @summary test International Number Format API 18 package com.ibm.icu.dev.test.format; 43 logln("NumberFormat API test---"); logln(""); in TestAPI() 67 logln("Currency : " + cur.format(1234.5)); in TestAPI() 68 logln("Percent : " + per.format(1234.5)); in TestAPI() 69 logln("Integer : " + integer.format(1234.5)); in TestAPI() 70 logln("Int_fr : " + int_fr.format(1234.5)); in TestAPI() [all …]
|
/aosp_15_r20/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
H A D | IntlTestNumberFormatAPI.java | 6 * Copyright (C) 1996-2009, International Business Machines 10 * Port From: JDK 1.4b1 : java.text.Format.IntlTestNumberFormatAPI 11 * Source File: java/text/format/IntlTestNumberFormatAPI.java 16 @summary test International Number Format API 19 package android.icu.dev.test.format; 46 logln("NumberFormat API test---"); logln(""); in TestAPI() 70 logln("Currency : " + cur.format(1234.5)); in TestAPI() 71 logln("Percent : " + per.format(1234.5)); in TestAPI() 72 logln("Integer : " + integer.format(1234.5)); in TestAPI() 73 logln("Int_fr : " + int_fr.format(1234.5)); in TestAPI() [all …]
|
/aosp_15_r20/external/gemmlowp/standalone/ |
H A D | neon-gemm-kernel-benchmark.cc | 7 // http://www.apache.org/licenses/LICENSE-2.0 15 // This is a standalone testbed and benchmark for gemmlowp-style GEMM kernels, 23 // This program is entirely self-contained, and can be compiled manually 31 ~/android/toolchains/arm-linux-androideabi/bin/arm-linux-androideabi-clang++ \ 32 -fPIE -pie -O3 --std=c++11 standalone/neon-gemm-kernel-benchmark.cc -o \ 33 /tmp/benchmark -mfloat-abi=softfp -mfpu=neon-vfpv4 && adb push /tmp/benchmark \ 36 ~/android/toolchains/aarch64-linux-android/bin/aarch64-linux-android-clang++ \ 37 -fPIE -static -O3 --std=c++11 standalone/neon-gemm-kernel-benchmark.cc -o \ 109 // LHS = "left-hand side" 110 // RHS = "right-hand side" [all …]
|
/aosp_15_r20/external/eigen/bench/perf_monitoring/resources/ |
H A D | chart_footer.html | 3 ….color(d3.scale.category10().range()) … 10 …tickFormat: d3.format('.0f') … 15 .rotateLabels(-90); 20 tickFormat: function(val){ return d3.format('.0f')(val) + ' GFlops'; }*/ 24 + ' <p style="font-weight:normal;text-align: left;">' 28 …d3.select('#chart').datum(data).call(chart); … 29 …var plot = d3.select('#chart > g'); … 33 ….style('font-size', '24px') … 34 ….attr('text-anchor', 'middle').attr('x', '50%').attr('y', '20px') …
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/date_time/test/gregorian/ |
D | testformatters.cpp | 17 check("check string: " + ds1, ds1 == "2002-Jan-02"); in main() 24 check("check sql string: "+sds1, sds1 == "2002-01-02"); in main() 28 check("check string: "+ds2, ds2 == "2001-Dec-30"); in main() 30 check("check iso extended string: "+ids2, ids2 == "2001-12-30"); in main() 33 date d3(neg_infin); in main() local 34 std::cout << "|" << to_simple_string(d3) << "|" << std::endl; in main() 36 (to_simple_string(d3) == std::string("-infinity"))); in main() 43 (to_simple_string(d5) == std::string("not-a-date-time"))); in main() 46 check("check period format", in main() 47 (to_simple_string(p1) == std::string("[2000-Jan-01/2000-Dec-31]"))); in main() [all …]
|
/aosp_15_r20/external/libaom/av1/common/arm/ |
H A D | av1_convolve_scale_neon_i8mm.c | 30 // clang-format off 35 // clang-format on 51 // We halved the filter values so -1 from right shift. in convolve8_4_h() 52 return vshrn_n_s32(sum, ROUND0_BITS - 1); in convolve8_4_h() 76 // We halved the filter values so -1 from right shift. in convolve8_8_h() 77 return vcombine_s16(vshrn_n_s32(sum0123, ROUND0_BITS - 1), in convolve8_8_h() 78 vshrn_n_s32(sum4567, ROUND0_BITS - 1)); in convolve8_8_h() 89 // A shim of 1 << (ROUND0_BITS - 1) enables us to use non-rounding in convolve_horiz_scale_neon_i8mm() 90 // shifts - which are generally faster than rounding shifts on modern CPUs. in convolve_horiz_scale_neon_i8mm() 94 ((1 << (bd + FILTER_BITS - 1)) + (1 << (ROUND0_BITS - 1))) >> 2); in convolve_horiz_scale_neon_i8mm() [all …]
|
H A D | av1_convolve_scale_neon_dotprod.c | 30 // clang-format off 35 // clang-format on 46 // Transform sample range to [-128, 127] for 8-bit signed dot product. in convolve8_4_h() 55 // We halved the filter values so -1 from right shift. in convolve8_4_h() 56 return vshrn_n_s32(sum, ROUND0_BITS - 1); in convolve8_4_h() 72 // Transform sample range to [-128, 127] for 8-bit signed dot product. in convolve8_8_h() 86 // We halved the filter values so -1 from right shift. in convolve8_8_h() 87 return vcombine_s16(vshrn_n_s32(sum0123, ROUND0_BITS - 1), in convolve8_8_h() 88 vshrn_n_s32(sum4567, ROUND0_BITS - 1)); in convolve8_8_h() 97 // A shim of 1 << (ROUND0_BITS - 1) enables us to use non-rounding in convolve_horiz_scale_neon_dotprod() [all …]
|
/aosp_15_r20/external/spdx-tools/tvloader/parser2v2/ |
H A D | parse_creation_info_test.go | 1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 7 "github.com/spdx/tools-golang/spdx/v2_2" 63 t.Fatalf("expected pkg to be nil, got non-nil pkg") 72 err := parser.parsePair2_2("LicenseID", "LicenseRef-TestLic") 101 err := parser.parsePair2_2("Relationship", "SPDXRef-blah CONTAINS SPDXRef-blah-else") 132 err = parser.parsePair2_2("AnnotationDate", "2018-09-15T00:36:00Z") 148 err = parser.parsePair2_2("SPDXREF", "SPDXRef-45") 170 err := parser.parsePairFromCreationInfo2_2("SPDXVersion", "SPDX-2.2") 172 t.Errorf("expected non-nil error, got nil") 264 err = parser.parsePairFromCreationInfo2_2("Created", "2018-09-10T11:46:00Z") [all …]
|
/aosp_15_r20/external/spdx-tools/tvloader/parser2v3/ |
H A D | parse_creation_info_test.go | 1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 7 "github.com/spdx/tools-golang/spdx/v2_3" 63 t.Fatalf("expected pkg to be nil, got non-nil pkg") 72 err := parser.parsePair2_3("LicenseID", "LicenseRef-TestLic") 101 err := parser.parsePair2_3("Relationship", "SPDXRef-blah CONTAINS SPDXRef-blah-else") 132 err = parser.parsePair2_3("AnnotationDate", "2018-09-15T00:36:00Z") 148 err = parser.parsePair2_3("SPDXREF", "SPDXRef-45") 170 err := parser.parsePairFromCreationInfo2_3("SPDXVersion", "SPDX-2.3") 172 t.Errorf("expected non-nil error, got nil") 264 err = parser.parsePairFromCreationInfo2_3("Created", "2018-09-10T11:46:00Z") [all …]
|
/aosp_15_r20/external/spdx-tools/tvloader/parser2v1/ |
H A D | parse_creation_info_test.go | 1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 7 "github.com/spdx/tools-golang/spdx/v2_1" 63 t.Fatalf("expected pkg to be nil, got non-nil pkg") 72 err := parser.parsePair2_1("LicenseID", "LicenseRef-TestLic") 101 err := parser.parsePair2_1("Relationship", "SPDXRef-blah CONTAINS SPDXRef-blah-else") 132 err = parser.parsePair2_1("AnnotationDate", "2018-09-15T00:36:00Z") 148 err = parser.parsePair2_1("SPDXREF", "SPDXRef-45") 170 err := parser.parsePairFromCreationInfo2_1("SPDXVersion", "SPDX-2.1") 172 t.Errorf("expected non-nil error, got nil") 264 err = parser.parsePairFromCreationInfo2_1("Created", "2018-09-10T11:46:00Z") [all …]
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/quantized/cpu/qnnpack/src/q8gemm_sparse/ |
H A D | 4x4-packA-aarch32-neon.S | 5 * This source code is licensed under the BSD-style license found in the 10 #include <requantization/runtime-assembly.h> 21 # |----------------| 23 # |----------------| 27 # And after pushing r4-r9 and d8-d15 on stack 28 # |----------------| 29 # |r4 - r11 | 0 31 # |----------------| 34 # Packed A format. 37 # --------- K ----------- -- (K + 4 - 1) / 4 -- [all …]
|
/aosp_15_r20/external/flac/test/ |
H A D | write_iff.pl | 1 #!/usr/bin/perl -w 8 $0 <format> <bps> <channels> <sample-rate> <#samples> <sample-type> 10 <format> is one of aiff,wave,wave64,rf64 12 <channels> is 1-8 13 <sample-rate> is any 32-bit value 14 <#samples> is 0-2^64-1 15 <sample-type> is one of zero,rand 25 my ($format, $bps, $channels, $samplerate, $samples, $sampletype) = @ARGV; 28 die $usage unless defined $formats{$format}; 34 # convert bits-per-sample to bytes-per-sample [all …]
|
/aosp_15_r20/external/libffi/testsuite/libffi.bhaible/ |
H A D | test-call.c | 3 Copyright 1995-2017 Bruno Haible <[email protected]> 19 /* { dg-do run } */ 28 /* libffi testsuite local changes -------------------------------- */ 35 int _fprintf(FILE *stream, const char *format, ...) in _fprintf() argument 38 va_start(args, format); in _fprintf() 44 vsprintf(&rbuf1[strlen(rbuf1)], format, args); in _fprintf() 48 vsprintf(rbuf2, format, args); in _fprintf() 51 vsprintf(&rbuf2[strlen(rbuf2)], format, args); in _fprintf() 63 /* --------------------------------------------------------------- */ 129 fprintf(out,"->%d\n",ir); in int_tests() [all …]
|