Skip to content

Commit

Permalink
Automatic push by ghp-import
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Oct 9, 2024
0 parents commit 7dbfc97
Show file tree
Hide file tree
Showing 150 changed files with 11,639 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
2,883 changes: 2,883 additions & 0 deletions assets/css/style.css

Large diffs are not rendered by default.

7,440 changes: 7,440 additions & 0 deletions css/bootstrap.css

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions css/site.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
a {
color: #1E90B3;
text-decoration: none;
}

a:hover,
a:focus {
color: #1E90B3;
text-decoration: underline;
}

a:focus {
outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.navbar {
min-height: 40px;
}

img {
display: block;
height: auto;
max-width: 100%;
}

.img-center {
margin:0 auto;
}

/* Properties of img-polaroid*/
.img-polaroid {
padding: 4px;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.5);
box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.5);
max-width: 153px;
max-height: 153px;
}
184 changes: 184 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,184 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="google-site-verification"
content="_8nZ7KJx54y7NEnE3tvEmjGutx6mtTMsanWXgnXxjaE" />
<meta charset="utf-8">
<title>QuTiP - Quantum Toolbox in Python</title>
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="P.D. Nation & J.R. Johansson">

<link href="/css/bootstrap.css" rel="stylesheet">
<style> body { padding-top: 0px; } .footer { padding-top: 50px; } </style>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/css/gh-fork-ribbon.css">
<link rel="stylesheet" href="/css/site.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7GD9QRNR6E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-7GD9QRNR6E');
</script>
</head>

<body>

<div class="container" style="max-width: 1024px;">

<div class="img-responsive">

<div class="row" style="background: #e6e6e6; margin-left: 0px; margin-right: 0px;">
<a class="github-fork-ribbon" href="https://github.com/qutip" data-ribbon="Fork me on GitHub" title="Fork me on GitHub" style="float: right; position: relative;">Fork me on GitHub</a>

<div class="row" style="margin: 20px;">
<div class="col-md-4">
<img src="/images/logo.png" height="125px">
</div>

<div class="col-md-6">
<h1 style="font-size:48px;"><b>QuTiP</b></h1>
<h2>Quantum Toolbox in Python</h2>
</div>

</div>
</div>

<!-- Static navbar -->
<div class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/index.html">QuTiP</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/qutip-benchmark/">Benchmarks</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Historical<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/qutip-benchmark/ops/add.html">Qobj Add</a></li>
<li><a href="/qutip-benchmark/ops/matmul.html">Qobj Matmul</a></li>
<li><a href="/qutip-benchmark/ops/qobjevo.html">QobjEvo @ Ket</a></li>
<li><a href="/qutip-benchmark/ops/solve.html">Solvers</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Scaling<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/qutip-benchmark/ops/s_add_qobjevo.html">Qobj Add and QobjEvo Matmul</a></li>
<li><a href="/qutip-benchmark/ops/s_matmul.html">Qobj Matmul</a></li>
<li><a href="/qutip-benchmark/ops/s_solve.html">Solvers</a></li>
</ul>
</li>
</ul>
</div>
</div>


<div class="row">

<div class="col-md-12">
<div class="alert alert-info" role="alert">
Benchmarks are currently only available for QuTiP 5, which is the
upcoming major release of QuTiP.
</div>
</div>

<div class="col-md-9">

<h2>QuTiP benchmarks</h2>

<p>QuTiP benchmarks are run nightly on GitHub Actions. Two different kinds of
plots are produced -- historical and scaling.
</p>

<p><em>Historical</em> plots show the changes in benchmark performance
over the last month.
</p>

<p><em>Scaling</em> plots show the lastest benchmark performance as a
function of the size of the data. The data might be a Qobj, QobjEvo or
a system Hamiltonian.
</p>

<p>Where possible, we compare QuTiP performance to the equivalent raw numpy
and SciPy operations.
</p>

<p>You can view the plots by clicking on the links below or using the
navigation bar above.
</p>

<h3>Historical plots</h3>

<ul>
<li><a href="/qutip-benchmark/ops/add.html">Qobj Add</a></li>
<li><a href="/qutip-benchmark/ops/matmul.html">Qobj Matmul</a></li>
<li><a href="/qutip-benchmark/ops/qobjevo.html">QobjEvo @ Ket</a></li>
<li><a href="/qutip-benchmark/ops/solve.html">Solvers</a></li>
</ul>

<h3>Scaling plots</h3>

<ul>
<li><a href="/qutip-benchmark/ops/s_add_qobjevo.html">Qobj Add and QobjEvo Matmul</a></li>
<li><a href="/qutip-benchmark/ops/s_matmul.html">Qobj Matmul</a></li>
<li><a href="/qutip-benchmark/ops/s_solve.html">Solvers</a></li>
</ul>

<h3>Benchmarking process</h3>

<p>Benchmarking on GitHub Actions comes with some challenges. GitHub Action
runners are randomly assigned and the underlying hardware is not consistent.
We account for this by showing separate lines on each plot for the most
commonly provided CPUs.
</p>

<p>The downside is that the plots are more cluttered, but the upside is that
they give a clearer picture of performance across a range of typical
CPUs used in cloud data centres.
</p>


<h3>Contributing</h3>

<p>The benchmarks are maintained in the
<a href="https://www.github.com/qutip/qutip-benchmark">qutip-benchmark</a>
repository. Suggestions for new benchmarks or bug reports are welcome (please
open an issue or pull reuqest).
</p>

<p>If you or your company would like to support the benchmarking effort QuTiP
would welcome contributions towards running benchmarks, either by offering to
pay for running benchmarks on additional cloud instances (e.g. machines with
better CPUs, more RAM, GPUs) or by offering to run benchmarks on dedicated
hardware you have available. If this interests you, please email the
<a href="mailto:[email protected] ">qutip-admin</a> mailing list.
</p>

</div> <!-- col-md-9 main content div -->
</div> <!-- main row div -->

<div class="footer">
<p>&copy; 2011 to 2024 inclusive, QuTiP developers and contributors.</p>
</div>

</div> <!-- container -->

<script src="/js/jquery.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src='https://d3js.org/d3.v3.min.js'></script>
<script src='https://d3js.org/topojson.v1.min.js'></script>
<script src='/js/datamaps.world.min.js'></script>
<script src='/js/map.js'></script>
</body>
</html>

147 changes: 147 additions & 0 deletions ops/add.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="google-site-verification"
content="_8nZ7KJx54y7NEnE3tvEmjGutx6mtTMsanWXgnXxjaE" />
<meta charset="utf-8">
<title>QuTiP - Quantum Toolbox in Python</title>
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="P.D. Nation & J.R. Johansson">

<link href="/css/bootstrap.css" rel="stylesheet">
<style> body { padding-top: 0px; } .footer { padding-top: 50px; } </style>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/css/gh-fork-ribbon.css">
<link rel="stylesheet" href="/css/site.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7GD9QRNR6E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-7GD9QRNR6E');
</script>
</head>

<body>

<div class="container" style="max-width: 1024px;">

<div class="img-responsive">

<div class="row" style="background: #e6e6e6; margin-left: 0px; margin-right: 0px;">
<a class="github-fork-ribbon" href="https://github.com/qutip" data-ribbon="Fork me on GitHub" title="Fork me on GitHub" style="float: right; position: relative;">Fork me on GitHub</a>

<div class="row" style="margin: 20px;">
<div class="col-md-4">
<img src="/images/logo.png" height="125px">
</div>

<div class="col-md-6">
<h1 style="font-size:48px;"><b>QuTiP</b></h1>
<h2>Quantum Toolbox in Python</h2>
</div>

</div>
</div>

<!-- Static navbar -->
<div class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/index.html">QuTiP</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/qutip-benchmark/">Benchmarks</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Historical<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/qutip-benchmark/ops/add.html">Qobj Add</a></li>
<li><a href="/qutip-benchmark/ops/matmul.html">Qobj Matmul</a></li>
<li><a href="/qutip-benchmark/ops/qobjevo.html">QobjEvo @ Ket</a></li>
<li><a href="/qutip-benchmark/ops/solve.html">Solvers</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Scaling<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/qutip-benchmark/ops/s_add_qobjevo.html">Qobj Add and QobjEvo Matmul</a></li>
<li><a href="/qutip-benchmark/ops/s_matmul.html">Qobj Matmul</a></li>
<li><a href="/qutip-benchmark/ops/s_solve.html">Solvers</a></li>
</ul>
</li>
</ul>
</div>
</div>


<div class="container">
<div class="row">
<div>
<h3 class="text-center">Historical Benchmarks: Qobj Add</h3>
</div>
</div>

<div class="row justify-content-md-center">
<div class="col-md-6 pull-left">


<div>
<img src="../plots/nightly/math:add:op-plus-ket-32-dense.png">
</div>

</div> <!-- col-md-6 right content div -->
<div class="col-md-6 pull right">


<div>
<img src="../plots/nightly/math:add:op-plus-ket-32-sparse.png">
</div>

</div> <!-- col-md-6 left content div -->
</div><!-- main row div -->


<div class="row justify-content-md-center">
<div class="col-md-6 pull-left">


<div>
<img src="../plots/nightly/math:add:op-plus-ket-128-dense.png">
</div>

</div> <!-- col-md-6 right content div -->
<div class="col-md-6 pull right">


<div>
<img src="../plots/nightly/math:add:op-plus-ket-128-sparse.png">
</div>

</div> <!-- col-md-6 left content div -->
</div><!-- main row div -->
</div>

<div class="footer">
<p>&copy; 2011 to 2024 inclusive, QuTiP developers and contributors.</p>
</div>

</div> <!-- container -->

<script src="/js/jquery.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src='https://d3js.org/d3.v3.min.js'></script>
<script src='https://d3js.org/topojson.v1.min.js'></script>
<script src='/js/datamaps.world.min.js'></script>
<script src='/js/map.js'></script>
</body>
</html>

Loading

0 comments on commit 7dbfc97

Please sign in to comment.