Bartosz Taudul
699ff43f1e
Update timings.
2019-10-20 22:18:20 +02:00
Bartosz Taudul
411e4d42ac
Move disassembly from FAQ to manual.
2019-10-20 21:23:16 +02:00
Bartosz Taudul
c774534b47
Use rdtsc instead of rdtscp.
...
But rdtscp is serializing!
No, it's not. Quoting the Intel Instruction Set Reference:
"The RDTSCP instruction is not a serializing instruction, but it does
wait until all previous instructions have executed and all previous
loads are globally visible. But it does not wait for previous stores to
be globally visible, and subsequent instructions may begin execution
before the read operation is performed.",
"The RDTSC instruction is not a serializing instruction. It does not
necessarily wait until all previous instructions have been executed
before reading the counter. Similarly, subsequent instructions may begin
execution before the read operation is performed."
So, the difference is in waiting for prior instructions to finish
executing. Notice that even in the rdtscp case, execution of the
following instructions may commence before time measurement is finished
and data stores may be still pending.
But, you may say, Intel in its "How to Benchmark Code Execution Times"
document shows that using rdtscp is superior to rdstc. Well, not
exactly. What they do show is that when a *single function* is
considered, there are ways to measure its execution time with little to
no error.
This is not what Tracy is doing.
In our case there is no way to determine absolute "this is before" and
"this is after" points of a zone, as we probably already are inside
another zone. Stopping the CPU execution, so that a deeply nested zone
may be measured with great precision, will skew the measurements of all
parent zones.
And this is not what we want to measure, anyway. We are not interested
in how a *single function* behaves, but how a *whole program* behaves.
The out-of-order CPU behavior may influence the measurements? Good! We
are interested in that. We want to see *how* the code is really
executed. How is *stopping* the CPU to make a timer read an appropriate
thing to do, when we want to see how a program is performing?
At least that's the theory.
And besides all that, the profiling overhead is now reduced.
2019-10-20 20:52:33 +02:00
Bartosz Taudul
14292f9e35
Update manual.
2019-10-15 21:57:49 +02:00
Bartosz Taudul
dffe65f8e2
Update manual.
2019-10-14 20:52:18 +02:00
Bartosz Taudul
1ad246b4ca
Update manual.
2019-10-14 20:17:28 +02:00
Bartosz Taudul
98ab83c69b
Update manual.
2019-10-13 17:00:07 +02:00
Bartosz Taudul
4ba885ac95
Update manual.
2019-10-04 21:47:30 +02:00
Bartosz Taudul
871e1f1c37
Describe workaround for exiting from within a zone.
2019-10-04 20:43:08 +02:00
Bartosz Taudul
4e7e9ee3b1
Update manual.
2019-10-04 18:53:06 +02:00
Bartosz Taudul
ffdb6d8a3b
Update manual.
2019-09-30 23:43:07 +02:00
Bartosz Taudul
e758e98ca4
Update manual.
2019-09-29 21:16:44 +02:00
Bartosz Taudul
2356069eac
Update manual.
2019-09-27 18:15:32 +02:00
Bartosz Taudul
891e7711e9
Update manual.
2019-09-24 00:20:41 +02:00
Bartosz Taudul
49abad2dec
Update manual.
2019-09-23 17:30:00 +02:00
Bartosz Taudul
a5fecc350b
Update manual.
2019-09-21 15:47:37 +02:00
Bartosz Taudul
fb63dd89bc
Update manual.
2019-09-21 15:21:29 +02:00
Bartosz Taudul
dfb9ae1a90
Update manual.
2019-09-21 15:03:09 +02:00
Bartosz Taudul
6fbfd12d1f
Update manual.
2019-09-16 22:02:47 +02:00
Bartosz Taudul
e0105451f6
Update manual.
2019-09-12 20:14:54 +02:00
Bartosz Taudul
c1731f864b
Update manual.
2019-09-11 19:05:53 +02:00
Bartosz Taudul
9cd359f0b9
Update manual.
2019-09-08 14:38:40 +02:00
Bartosz Taudul
3a9ff94580
Update manual.
2019-09-08 13:38:19 +02:00
Bartosz Taudul
6ef282dd1a
Notify user that the data might not be correct.
2019-09-07 18:20:26 +02:00
Bartosz Taudul
70ae2f763d
Update manual.
2019-09-07 17:20:51 +02:00
Bartosz Taudul
0837463f05
Describe how wonderful linux interfaces are.
2019-09-03 21:45:19 +02:00
Bartosz Taudul
be36e7a19c
Update manual.
2019-08-31 01:08:03 +02:00
Bartosz Taudul
fc0593a840
Update manual.
2019-08-28 21:38:51 +02:00
Bartosz Taudul
ee14ff6d6e
Update manual.
2019-08-28 20:39:29 +02:00
Bartosz Taudul
5b0ccef373
Change some icons.
2019-08-28 20:17:38 +02:00
Bartosz Taudul
2d50d07438
Allow completely disabling system tracing.
2019-08-21 01:16:25 +02:00
Bartosz Taudul
5c8937eba2
Update manual.
2019-08-20 23:59:47 +02:00
Bartosz Taudul
580944af65
Update manual.
2019-08-17 17:11:12 +02:00
Bartosz Taudul
26e93b35c6
Update manual.
2019-08-16 20:31:16 +02:00
Bartosz Taudul
2e31c26ae5
Update manual.
2019-08-15 20:21:09 +02:00
Bartosz Taudul
3e06daef31
Update manual.
2019-08-15 20:17:36 +02:00
Bartosz Taudul
bccb845908
Update manual.
2019-08-14 22:19:11 +02:00
Bartosz Taudul
29819321b9
Update manual.
2019-08-14 21:45:34 +02:00
Bartosz Taudul
cf4e04440e
Update manual.
2019-08-14 18:42:04 +02:00
Bartosz Taudul
e5c40b74ee
Update manual.
2019-08-13 21:18:52 +02:00
Bartosz Taudul
8aa0be39d5
Drop support for CPU id queries.
2019-08-12 23:05:34 +02:00
Bartosz Taudul
0b944c88bb
Add a note about condition variables.
2019-08-12 17:01:01 +02:00
Bartosz Taudul
760357d6ea
Explain why there are two methods for filling serial queue.
2019-08-12 13:19:10 +02:00
Bartosz Taudul
6fca188603
Update tech docs.
2019-08-08 19:25:35 +02:00
Bartosz Taudul
177b79a528
Update manual.
2019-08-04 16:19:51 +02:00
Bartosz Taudul
8953a2652e
Update manual.
2019-08-04 00:48:29 +02:00
Bartosz Taudul
51bdbdb71f
Update manual.
2019-08-03 15:09:19 +02:00
Bartosz Taudul
b3a1f932c3
Update tech docs.
2019-08-02 20:46:20 +02:00
Bartosz Taudul
138743f880
Update manual.
2019-08-01 23:24:51 +02:00
Bartosz Taudul
28220a5fbf
Update manual.
2019-07-30 01:15:14 +02:00
Bartosz Taudul
e289f2b8c0
Update tech docs.
2019-07-30 01:15:14 +02:00
Bartosz Taudul
89928fde7b
Queue must be always able to alloc.
2019-07-29 22:13:16 +02:00
Bartosz Taudul
705a2fa3f4
Update manual.
2019-07-27 01:09:39 +02:00
Bartosz Taudul
b19d633d68
Update tech docs.
2019-07-24 23:15:45 +02:00
Bartosz Taudul
a7e0b1614a
Update manual.
2019-07-24 23:14:53 +02:00
Bartosz Taudul
d908e148ec
Update DXT1 AVX timings.
2019-07-22 20:01:16 +02:00
Bartosz Taudul
cdbaec38eb
Update tech docs.
2019-07-20 16:46:54 +02:00
Bartosz Taudul
db80673b9e
Update DXT1 AVX timings.
2019-07-20 14:54:52 +02:00
Bartosz Taudul
396c28011e
Update DXT1 compression timings.
2019-07-19 22:16:33 +02:00
Bartosz Taudul
06296283b7
Fix texture completeness.
2019-07-19 00:53:34 +02:00
Bartosz Taudul
9ec6c1e12d
Basic technical documentation.
2019-07-15 21:00:12 +02:00
Bartosz Taudul
b99315ffbe
Add some notes on how to get the most accurate results.
2019-07-13 20:49:56 +02:00
Bartosz Taudul
74a40c230f
MinGW is also supported.
2019-07-13 20:49:50 +02:00
Bartosz Taudul
0ce93f714b
Cosmetics.
2019-07-13 20:49:36 +02:00
Bartosz Taudul
ff9637e884
Update DXT1 timings table.
...
Clang is able to get much better times on ARM (around 430 us for both
ARM32 and ARM64 NEON). The reference implementation is 1.13 ms on clang.
2019-07-13 20:24:58 +02:00
Bartosz Taudul
5633dc5a87
Add ARM64 NEON timings for DXT1 compression.
2019-07-13 15:32:07 +02:00
Bartosz Taudul
4c93952ffb
Update manual.
2019-07-13 02:03:26 +02:00
Bartosz Taudul
5a4c7518ed
Update manual.
2019-07-12 19:03:05 +02:00
Bartosz Taudul
cd018e88a4
Update manual.
2019-07-11 20:32:39 +02:00
Bartosz Taudul
05dd9a5e59
Update DXT1 timings.
2019-07-08 00:16:06 +02:00
Bartosz Taudul
a33205e3bd
Update DXT1 timings.
2019-07-08 00:01:57 +02:00
Bartosz Taudul
bde9045af5
Update DXT1 timings.
...
SSE takes a hit due to unfavourable codegen.
2019-07-06 00:51:19 +02:00
Bartosz Taudul
e9676ea1d5
Update DXT1 timings.
2019-07-05 18:38:52 +02:00
Bartosz Taudul
d664b93ae0
Describe why there's no CPU usage graph in android traces.
2019-07-03 00:08:30 +02:00
Bartosz Taudul
080ec6e836
Expand manual wrt manual zone scope management.
2019-07-01 18:29:24 +02:00
Bartosz Taudul
3c45476012
Update timings again.
2019-06-30 12:16:22 +02:00
Bartosz Taudul
43042a2aa8
Update DXT1 timings table.
2019-06-30 03:39:37 +02:00
Bartosz Taudul
ddd89dcce5
Add DXT1 AVX2 timings.
2019-06-30 03:23:20 +02:00
Bartosz Taudul
a1e3d9765f
Update DXT1 SSE timings.
2019-06-29 12:23:29 +02:00
Bartosz Taudul
370fead4b2
Update DXT1 timings table.
2019-06-29 02:10:35 +02:00
Bartosz Taudul
50ac219e97
Update NEON timings in DXT1 table.
2019-06-28 22:40:04 +02:00
Bartosz Taudul
4ee45259f2
Update SSE timings in DXT1 table.
2019-06-28 22:00:59 +02:00
Bartosz Taudul
3208d6c803
Add ARM NEON DXT1 compression timings to manual.
2019-06-28 14:26:00 +02:00
Bartosz Taudul
33486fa3cf
Update ARM timings.
2019-06-27 22:47:26 +02:00
Bartosz Taudul
3c066f1527
Simplify code.
2019-06-27 22:40:03 +02:00
Bartosz Taudul
77c6acbc48
Update manual.
2019-06-27 22:30:05 +02:00
Bartosz Taudul
aa4ce30dff
Update manual.
2019-06-27 13:32:57 +02:00
Bartosz Taudul
3bf23e15bb
Update manual.
2019-06-26 21:07:12 +02:00
Bartosz Taudul
0b656c3469
Update manual.
2019-06-24 21:15:33 +02:00
Bartosz Taudul
815ad7df28
Update manual.
2019-06-23 00:21:56 +02:00
Bartosz Taudul
0944eab707
Add background tasks icon.
2019-06-22 14:37:17 +02:00
Bartosz Taudul
d66be0e033
Update manual.
2019-06-18 21:02:49 +02:00
Bartosz Taudul
ae70f694dd
Update manual.
2019-06-17 20:25:25 +02:00
Bartosz Taudul
5db6cc4eee
Update manual.
2019-06-17 01:24:48 +02:00
Bartosz Taudul
b1f49d4c69
Update manual.
2019-06-16 17:22:29 +02:00
Bartosz Taudul
6e8b5381a5
Ctrl-click on a zone to go straight to zone statistics.
2019-06-16 17:00:25 +02:00
Bartosz Taudul
d361261993
Open playback from frame using ctrl+left click.
2019-06-16 16:49:21 +02:00
Bartosz Taudul
26178dfb00
Update manual.
2019-06-16 02:23:11 +02:00
Bartosz Taudul
f7a590de98
Improve ETC1 timing table.
2019-06-15 21:08:35 +02:00
Bartosz Taudul
103be314e7
Update NEON ETC1 compression timings.
2019-06-15 15:38:05 +02:00
Bartosz Taudul
e05669a80f
Add ETC1 compression timings for ARM.
2019-06-13 02:12:03 +02:00
Bartosz Taudul
c43f8562ec
Rename "sync view" to "sync timeline".
2019-06-12 23:46:14 +02:00
Bartosz Taudul
756379b9d8
Update manual.
2019-06-12 23:45:27 +02:00
Bartosz Taudul
8827f568e4
Update manual.
2019-06-12 15:35:00 +02:00
Bartosz Taudul
61bad76e5a
Update manual.
2019-06-12 01:48:11 +02:00
Bartosz Taudul
de544ef959
Update manual.
2019-06-11 02:25:03 +02:00
Bartosz Taudul
5d5b12dce4
Add a note about expected lifetime of image data.
2019-06-09 13:20:46 +02:00
Bartosz Taudul
99c8144154
Show performance difference of async capture.
2019-06-09 13:17:08 +02:00
Bartosz Taudul
22d7b2c78d
Polishing words.
2019-06-09 12:50:14 +02:00
Bartosz Taudul
c3c116317d
Fences must be deleted.
2019-06-08 12:08:20 +02:00
Bartosz Taudul
5470dae120
Add AVX2 ETC1 timings to the manual.
2019-06-08 00:54:46 +02:00
Bartosz Taudul
76379a761a
Update manual.
2019-06-08 00:06:37 +02:00
Bartosz Taudul
1954caa806
Fix listings.
2019-06-08 00:04:10 +02:00
Bartosz Taudul
557d4d7de4
Add logo to manual.
2019-06-02 18:12:15 +02:00
Bartosz Taudul
c0326b9ba0
Add stb_image.
2019-06-02 18:05:49 +02:00
Bartosz Taudul
5181f1be5b
Update manual.
2019-06-02 15:57:59 +02:00
Bartosz Taudul
794d155fde
Update manual.
2019-06-02 15:22:29 +02:00
Bartosz Taudul
860a4625e1
Update manual.
2019-05-12 16:28:59 +02:00
Bartosz Taudul
fcb052cd13
Update manual.
2019-05-10 21:11:58 +02:00
Bartosz Taudul
ee1a653667
Update manual.
2019-05-09 13:43:28 +02:00
Bartosz Taudul
303bbdd512
Update manual.
2019-04-26 23:29:05 +02:00
Bartosz Taudul
0e32de293f
Update manual.
2019-04-23 17:20:05 +02:00
Bartosz Taudul
8d0d6b576a
Update manual.
2019-04-01 20:06:43 +02:00
Bartosz Taudul
b0ab3c6139
High compression mode is now a bit better.
2019-03-27 02:26:39 +01:00
Bartosz Taudul
f52c8e9855
Update manual.
2019-03-24 23:47:02 +01:00
Bartosz Taudul
ff6034dfbf
Change label to us.
2019-03-22 18:54:47 +01:00
Bartosz Taudul
e879016ffa
Add Lua callstack capture time measurement.
2019-03-22 14:47:08 +01:00
Bartosz Taudul
2f22776249
Update manual.
2019-03-17 16:35:50 +01:00
Bartosz Taudul
3b051b1119
Add callstack depth vs time plot.
2019-03-12 20:23:36 +01:00
Bartosz Taudul
01c7712c92
More extensive call stack capture times table.
2019-03-10 23:37:41 +01:00
Bartosz Taudul
935f69469b
Call stack is limited to 62 frames on windows.
2019-03-10 23:37:27 +01:00
Bartosz Taudul
dc2743bcc0
Manual refinements.
2019-03-05 23:39:36 +01:00
Bartosz Taudul
3a7ed53c5c
Update manual.
2019-03-05 20:09:33 +01:00
Bartosz Taudul
c0d0d0d42b
Display keys as keys in manual.
2019-03-01 02:08:57 +01:00
Bartosz Taudul
06f83bbdef
Update manual.
2019-02-28 19:25:30 +01:00
Bartosz Taudul
f15bfb88a3
Update manual.
2019-02-27 21:34:00 +01:00
Bartosz Taudul
06dddd15b4
Update manual.
2019-02-24 18:41:47 +01:00
Bartosz Taudul
4610f79b94
Update manual.
2019-02-24 17:49:20 +01:00
Bartosz Taudul
ba769ab23a
Update manual.
2019-02-23 01:32:06 +01:00
Bartosz Taudul
5f3f6d18bb
Cosmetics.
2019-02-23 00:37:48 +01:00
Bartosz Taudul
542d081027
Update manual.
2019-02-21 23:24:18 +01:00
Bartosz Taudul
5ddc605dd6
Update manual.
2019-02-20 16:04:30 +01:00
Bartosz Taudul
0fd3025a7e
Fix typo.
2019-02-20 02:51:03 +01:00
Bartosz Taudul
a75d602f6e
Update manual.
2019-02-19 21:37:40 +01:00
Bartosz Taudul
062058315e
Update manual.
2019-02-17 17:10:18 +01:00
Bartosz Taudul
d2a39e29e1
Update manual.
2019-02-17 16:35:10 +01:00
Bartosz Taudul
e254f049a5
Update manual.
2019-02-10 17:33:39 +01:00
Bartosz Taudul
90c1428aac
Update manual.
2019-02-06 23:05:58 +01:00
Bartosz Taudul
bb4d390bc7
Update manual.
2019-02-06 14:03:54 +01:00
Bartosz Taudul
52a7f3a39a
Update manual.
2019-01-30 01:56:31 +01:00