diff --git a/assets/data/papers.yaml b/assets/data/papers.yaml new file mode 100644 index 0000000..212d9d0 --- /dev/null +++ b/assets/data/papers.yaml @@ -0,0 +1,18 @@ +- title: Provable bounds for noise-free expectation values computed from noisy samples + date: 2023-12-01 + url: https://arxiv.org/abs/2312.00733 + journal: arXiv + content: | + In this paper, we explore the impact of noise on quantum computing, particularly focusing on the challenges when sampling bit strings from noisy quantum computers as well as the implications for optimization and machine learning applications. We formally quantify the sampling overhead to extract good samples from noisy quantum computers and relate it to the layer fidelity, a metric to determine the performance of noisy quantum processors. Further, we show how this allows us to use the Conditional Value at Risk of noisy samples to determine provable bounds on noise-free expectation values. We discuss how to leverage these bounds for different algorithms and demonstrate our findings through experiments on a real quantum computer involving up to 127 qubits. The results show a strong alignment with theoretical predictions. + authors: + - Samantha V. Barron + - Daniel J. Egger + - Elijah Pelofske + - Andreas Bärtschi + - Stephan Eidenbenz + - Matthis Lehmkuehler + - Stefan Woerner + tags: + - error-mitigation + - qaoa + - cvar \ No newline at end of file diff --git a/content/papers/_content.gotmpl b/content/papers/_content.gotmpl new file mode 100644 index 0000000..967be4c --- /dev/null +++ b/content/papers/_content.gotmpl @@ -0,0 +1,50 @@ +{{ $data := dict }} +{{ $path := "data/papers.yaml" }} +{{ with resources.Get $path }} + {{ with . | transform.Unmarshal }} + {{ $data = . }} + {{ end }} +{{ else }} + {{ errorf "Unable to get global resource %q" $path }} +{{ end }} + + +{{/* Add pages and page resources. */}} +{{ range $data }} + + {{/* Add page. */}} + {{ $content := dict "mediaType" "text/markdown" "value" .content }} + {{ $dates := dict "date" (time.AsTime .date) }} + {{ $params := dict "authors" .authors "tags" .tags "journal" .journal "url" .url }} + {{ $page := dict + "content" $content + "dates" $dates + "kind" "page" + "params" $params + "path" .title + "title" .title + }} + {{ $.AddPage $page }} + + {{/* Add page resource. */}} + {{ $item := . }} + {{ with $url := $item.cover }} + {{ with resources.GetRemote $url }} + {{ with .Err }} + {{ errorf "Unable to get remote resource %s: %s" $url . }} + {{ else }} + {{ $content := dict "mediaType" .MediaType.Type "value" .Content }} + {{ $params := dict "alt" $item.title }} + {{ $resource := dict + "content" $content + "params" $params + "path" (printf "%s/cover.%s" $item.title .MediaType.SubType) + }} + {{ $.AddResource $resource }} + {{ end }} + {{ else }} + {{ errorf "Unable to get remote resource %s" $url }} + {{ end }} + {{ end }} + +{{ end }} \ No newline at end of file diff --git a/layouts/papers/single.html b/layouts/papers/single.html new file mode 100644 index 0000000..2e19c25 --- /dev/null +++ b/layouts/papers/single.html @@ -0,0 +1,34 @@ +{{ define "main" }} +

{{ .Title }}

+ +
+ +

Published: {{ .Date.Format "January 2, 2006" }} ({{ .Params.journal}})

+ +
+ + {{ with .Params.authors }} +

Authors: + {{ range . }} + {{ . }}, + {{ end }}

+ {{ end }} +
+ +

Abstract: {{ .Content }}

+ +
+ + {{ with .GetTerms "tags" }} +

Tags:

+ + {{ end }} +{{ end }} \ No newline at end of file