mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-25 23:44:35 +00:00
Change main repository to github.
This commit is contained in:
parent
895e06d778
commit
f8231bb109
2
LICENSE
2
LICENSE
@ -1,4 +1,4 @@
|
|||||||
Tracy Profiler (https://bitbucket.org/wolfpld/tracy) is licensed under the
|
Tracy Profiler (https://github.com/wolfpld/tracy) is licensed under the
|
||||||
3-clause BSD license.
|
3-clause BSD license.
|
||||||
|
|
||||||
Copyright (c) 2017-2020, Bartosz Taudul <wolf.pld@gmail.com>
|
Copyright (c) 2017-2020, Bartosz Taudul <wolf.pld@gmail.com>
|
||||||
|
@ -88,7 +88,7 @@
|
|||||||
\vspace{10pt}
|
\vspace{10pt}
|
||||||
\today
|
\today
|
||||||
\vfill
|
\vfill
|
||||||
\url{https://bitbucket.org/wolfpld/tracy}
|
\url{https://github.com/wolfpld/tracy}
|
||||||
\end{titlepage}
|
\end{titlepage}
|
||||||
|
|
||||||
\begin{abstract}
|
\begin{abstract}
|
||||||
|
@ -90,7 +90,7 @@
|
|||||||
\vspace{10pt}
|
\vspace{10pt}
|
||||||
\today
|
\today
|
||||||
\vfill
|
\vfill
|
||||||
\url{https://bitbucket.org/wolfpld/tracy}
|
\url{https://github.com/wolfpld/tracy}
|
||||||
\end{titlepage}
|
\end{titlepage}
|
||||||
|
|
||||||
\tableofcontents
|
\tableofcontents
|
||||||
@ -245,7 +245,7 @@ With all that being said, Tracy may not be the right choice for you, if you need
|
|||||||
\subsection{Performance impact}
|
\subsection{Performance impact}
|
||||||
\label{perfimpact}
|
\label{perfimpact}
|
||||||
|
|
||||||
To check how much slowdown is introduced by using Tracy, let's profile an example application. For this purpose we have used etcpak\footnote{\url{https://bitbucket.org/wolfpld/etcpak}}. The input data was a $16384 \times 16384$ pixels test image and the $4 \times 4$ pixel block compression function was selected to be instrumented. The image was compressed on 12 parallel threads, and the timing data represents a mean compression time of a single image.
|
To check how much slowdown is introduced by using Tracy, let's profile an example application. For this purpose we have used etcpak\footnote{\url{https://github.com/wolfpld/etcpak}}. The input data was a $16384 \times 16384$ pixels test image and the $4 \times 4$ pixel block compression function was selected to be instrumented. The image was compressed on 12 parallel threads, and the timing data represents a mean compression time of a single image.
|
||||||
|
|
||||||
The results are presented in table~\ref{PerformanceImpact}. Dividing the average of run time differences (37.7 \si{\milli\second}) by a number of captured zones per single image (\num{16777216}) shows us that the impact of profiling is only 2.25 \si{\nano\second} per zone (this includes two events: start and end of a zone).
|
The results are presented in table~\ref{PerformanceImpact}. Dividing the average of run time differences (37.7 \si{\milli\second}) by a number of captured zones per single image (\num{16777216}) shows us that the impact of profiling is only 2.25 \si{\nano\second} per zone (this includes two events: start and end of a zone).
|
||||||
|
|
||||||
@ -301,13 +301,13 @@ To see how Tracy can be integrated into an application, you may look at example
|
|||||||
Tracy can be found at the following web addresses:
|
Tracy can be found at the following web addresses:
|
||||||
|
|
||||||
\begin{itemize}
|
\begin{itemize}
|
||||||
\item Homepage -- \url{https://bitbucket.org/wolfpld/tracy}
|
\item Homepage -- \url{https://github.com/wolfpld/tracy}
|
||||||
\item Bug tracker -- \url{https://bitbucket.org/wolfpld/tracy/issues?status=new&status=open}
|
\item Bug tracker -- \url{https://github.com/wolfpld/tracy/issues}
|
||||||
\item Discord chat -- \url{https://discord.gg/pk78auc}
|
\item Discord chat -- \url{https://discord.gg/pk78auc}
|
||||||
\item Sponsoring development -- \url{https://github.com/sponsors/wolfpld/}
|
\item Sponsoring development -- \url{https://github.com/sponsors/wolfpld/}
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
|
|
||||||
If you don't have a Bitbucket account, you may be interested in a GitHub mirror: \url{https://github.com/wolfpld/tracy}.
|
You may be also interested in a Bitbucket mirror: \url{https://bitbucket.org/wolfpld/tracy}.
|
||||||
|
|
||||||
\section{First steps}
|
\section{First steps}
|
||||||
|
|
||||||
|
@ -477,7 +477,7 @@ static void DrawContents()
|
|||||||
{
|
{
|
||||||
if( ImGui::Selectable( ICON_FA_HOME " Tracy Profiler home page" ) )
|
if( ImGui::Selectable( ICON_FA_HOME " Tracy Profiler home page" ) )
|
||||||
{
|
{
|
||||||
OpenWebpage( "https://bitbucket.org/wolfpld/tracy" );
|
OpenWebpage( "https://github.com/wolfpld/tracy" );
|
||||||
}
|
}
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
if( ImGui::Selectable( ICON_FA_VIDEO " Overview of v0.2" ) )
|
if( ImGui::Selectable( ICON_FA_VIDEO " Overview of v0.2" ) )
|
||||||
|
Loading…
Reference in New Issue
Block a user