// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// Returns the [p]-th percentile element from the [doubles].
/// `List<doubles>` will be sorted.
double findPercentile(List<double> doubles, double p) {
assert(doubles.isNotEmpty);
doubles.sort();
return doubles[((doubles.length - 1) * (p / 100)).round()];
}
-
Kaushik Iska authored
As of flutter.dev/go/engine-cpu-profiling, we collect the CPU and Memory usage. With work being done to collect GPU usage on iOS as well. This adds them to the timeline summary. Fixes: https://github.com/flutter/flutter/issues/58803
Unverified60cfe495