aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--bench/SKPBench.cpp2
-rw-r--r--site/dev/tools/index.md2
-rw-r--r--site/dev/tools/skiaperf.md12
3 files changed, 8 insertions, 8 deletions
diff --git a/bench/SKPBench.cpp b/bench/SKPBench.cpp
index 0219f0bc2e..800890265e 100644
--- a/bench/SKPBench.cpp
+++ b/bench/SKPBench.cpp
@@ -19,7 +19,7 @@ SKPBench::SKPBench(const char* name, const SkPicture* pic, const SkIRect& clip,
, fScale(scale)
, fName(name)
, fUseMultiPictureDraw(useMultiPictureDraw) {
- fUniqueName.printf("%s_%.2g", name, scale); // Scale makes this unqiue for skiaperf.com traces.
+ fUniqueName.printf("%s_%.2g", name, scale); // Scale makes this unqiue for perf.skia.org traces.
if (useMultiPictureDraw) {
fUniqueName.append("_mpd");
}
diff --git a/site/dev/tools/index.md b/site/dev/tools/index.md
index 2786104054..980a324fa7 100644
--- a/site/dev/tools/index.md
+++ b/site/dev/tools/index.md
@@ -2,5 +2,5 @@ Tools
=====
Developer tools for accessing the health of Skia, such as
-`nanobench`, `dm`, and [Skia Perf](https://skiaperf.com).
+`nanobench`, `dm`, and [Skia Perf](https://perf.skia.org).
diff --git a/site/dev/tools/skiaperf.md b/site/dev/tools/skiaperf.md
index c4e960e658..bc2f7cecbd 100644
--- a/site/dev/tools/skiaperf.md
+++ b/site/dev/tools/skiaperf.md
@@ -1,7 +1,7 @@
Skia Perf
=========
-[Skia Perf](https://skiaperf.com) is a web based interface for exploring
+[Skia Perf](https://perf.skia.org) is a web based interface for exploring
performance data produced by `nanobench` and the code size bot. The data
includes:
@@ -10,7 +10,7 @@ includes:
* Code size for various symbol types in bytes.
All of the data can be plotted and also can be [analyzed using k-means
-clustering](https://skiaperf.com/clusters/).
+clustering](https://perf.skia.org/clusters/).
Calculations
------------
@@ -18,19 +18,19 @@ Calculations
Skia Perf has the ability to perform calculations over the test data
allowing you to build up interesting queries.
-For example, this query displays the [total code size of the library over time](https://skiaperf.com/#1877):
+For example, this query displays the [total code size of the library over time](https://perf.skia.org/#1877):
sum(fill(filter("config=memory&sub_result=bytes")))
-This query displays [the ratio of playback time in ms to the number of ops for desk\_wowwiki.skp](https://skiaperf.com/#1876):
+This query displays [the ratio of playback time in ms to the number of ops for desk\_wowwiki.skp](https://perf.skia.org/#1876):
ratio(
ave(fill(filter("name=desk_wowwiki.skp&sub_result=min_ms"))),
ave(fill(filter("name=desk_wowwiki.skp&sub_result=ops")))
)
-You can also use the data to answer questions like [how many tests were run per commit](https://skiaperf.com/#1878).
+You can also use the data to answer questions like [how many tests were run per commit](https://perf.skia.org/#1878).
count(filter(""))
-See Skia Perf for the [full list of functions available](https://skiaperf.com/help).
+See Skia Perf for the [full list of functions available](https://perf.skia.org/help).