---
blogpost: true
date: Jul 3, 2017
title: Dask Benchmarks
tags: Programming, Python, scipy, dask
layout_style: wide
---

<!-- markdownlint-disable-file -->

<link href="https://cdn.pydata.org/bokeh/release/bokeh-0.12.6.min.css"
      rel="stylesheet" type="text/css">
<link href="https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.6.min.css"
      rel="stylesheet" type="text/css">

<script src="https://cdn.pydata.org/bokeh/release/bokeh-0.12.6.min.js"></script>
<script src="https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.6.min.js"></script>

_This work is supported by [Continuum Analytics](https://continuum.io)
and the Data Driven Discovery Initiative from the [Moore
Foundation](https://www.moore.org/)._

<div class="row">
<div class="col-md-6">

## Summary

We measure the performance of Dask's distributed scheduler for a variety of
different workloads under increasing scales of both problem and cluster size.
This helps to answer questions about dask's scalability and also helps to
educate readers on the sorts of computations that scale well.

We will vary our computations in a few ways to see how they stress performance.
We consider the following:

1.  **Computational and communication patterns** like embarrassingly parallel, fully
    sequential, bulk communication, many-small communication, nearest neighbor,
    tree reductions, and dynamic graphs.
2.  Varying **task duration** ranging from very fast (microsecond) tasks, to
    100ms and 1s long tasks. Faster tasks make it harder for the central
    scheduler to keep up with the workers.
3.  Varying **cluster size** from one two-core worker to 256 two-core workers
    and varying **dataset size** which we scale linearly with the number of
    workers. This means that we're measuring [weak scaling](https://en.wikipedia.org/wiki/Scalability#Weak_versus_strong_scaling).
4.  Varying APIs between **tasks**, multidimensional **arrays** and
    **dataframes** all of which have cases in the above categories but depend
    on different in-memory computational systems like NumPy or Pandas.

We will start with benchmarks for straight tasks, which are the most flexible
system and also the easiest to understand. This will help us to understand
scaling limits on arrays and dataframes.

_Note: we did not tune our benchmarks or configuration at all for these
experiments. They are well below what is possible, but perhaps representative
of what a beginning user might experience upon setting up a cluster without
expertise or thinking about configuration._

</div>

<div class="col-md-6">
A Note on Benchmarks and Bias
-----------------------------

_you can safely skip this section if you're in a rush_

This is a technical document, not a marketing piece. These benchmarks adhere
to the principles laid out in [this
blogpost](/2017/03/09/biased-benchmarks) and
attempt to avoid those pitfalls around developer bias. In particular the
following are true:

1.  We decided on a set of benchmarks before we ran them on a cluster
2.  We did not improve the software or tweak the benchmarks after seeing the
    results.
    These were run on the current release of Dask in the wild that was put out
    weeks ago, not on a development branch.
3.  The computations were constructed naively, as a novice would write them.
    They were not tweaked for extra performance.
4.  The cluster was configured naively, without attention to scale or special
    parameters

We estimate that expert use would result in about a 5-10x scaling improvement
over what we'll see. We'll detail how to improve scaling with expert methods
at the bottom of the post.

All that being said the author of this blogpost is paid to write this software
and so you probably shouldn't trust him. We invite readers to explore things
independently. All configuration, notebooks, plotting code, and data are
available below:

- [dask-kubernetes](https://github.com/martindurant/dask-kubernetes) for
  cluster deployment
- [Jupyter notebook for benchmarks](https://gist.github.com/mrocklin/4c198b13e92f881161ef175810c7f6bc#file-scaling-gcs-ipynb)
- [Jupyter notebook for plots](https://nbviewer.jupyter.org/urls/gist.githubusercontent.com/mrocklin/4c198b13e92f881161ef175810c7f6bc/raw/2fc5a40805fb306eec2af6573e2e93a9d72883cb/scaling-plots.ipynb)
- [Benchmark results data on GCS](https://storage.googleapis.com/dask-data/scaling-data.csv)

</div>
</div>

<hr>

## Tasks

We start by benchmarking the task scheduling API. Dask's task scheduling APIs
are at the heart of the other "big data" APIs (like dataframes). We start with
tasks because they're the simplest and most raw representation of Dask. Mostly
we'll run the following functions on integers, but you could fill in any
function here, like a pandas dataframe method or sklearn routine.

```python
import time

def inc(x):
    return x + 1

def add(x, y):
    return x + y

def slowinc(x, delay=0.1):
    time.sleep(delay)
    return x + 1

def slowadd(x, y, delay=0.1):
    time.sleep(delay)
    return x + y

def slowsum(L, delay=0.1):
    time.sleep(delay)
    return sum(L)
```

<div class="row">
<div class="col-md-6">

### Embarrassingly Parallel Tasks

We run the following code on our cluster and measure how long they take to
complete:

```python
futures = client.map(slowinc, range(4 * n), delay=1) # 1s delay
wait(futures)
```

```python
futures = client.map(slowinc, range(100 * n_cores)) # 100ms delay
wait(futures)
```

```python
futures = client.map(inc, range(n_cores * 200))     # fast
wait(futures)
```

<img src="/images/embarrassingly-parallel-5-black-on-white.svg"
     width="50%">

We see that for fast tasks the system can process around 2000-3000 tasks per
second. This is mostly bound by scheduler and client overhead. Adding more
workers into the system doesn't give us any more tasks per second. However if
our tasks take any amount of time (like 100ms or 1s) then we see decent
speedups.

If you switch to _linear_ scales on the plots, you'll see that as we get out to
512 cores we start to slow down by about a factor of two. I'm surprised to see
this behavior (hooray benchmarks) because all of Dask's scheduling decisions
are independent of cluster size. My first guess is that the scheduler may be
being swamped with administrative messages, but we'll have to dig in a bit
deeper here.

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="36dc768f-23a6-4b1c-8cbe-a0346af1d182"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Tree Reduction

Not all computations are embarrassingly parallel. Many computations have
dependencies between them. Consider a tree reduction, where we combine
neighboring elements until there is only one left. This stresses task
dependencies and small data movement.

```python
from dask import delayed

L = range(2**7 * n)
while len(L) > 1:  # while there is more than one element left
    # add neighbors together
    L = [delayed(slowadd)(a, b) for a, b in zip(L[::2], L[1::2])]

L[0].compute()
```

<img src="/images/tree-reduction-black-on-white.svg"
     width="50%">

We see similar scaling to the embarrassingly parallel case. Things proceed
linearly until they get to around 3000 tasks per second, at which point they
fall behind linear scaling. Dask doesn't seem to mind dependencies, even
custom situations like this one.

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="90a82d6b-b090-49df-8900-62ca8188d39a"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Nearest Neighbor

Nearest neighbor computations are common in data analysis when you need to share a bit of data between neighboring elements, such as frequently occurs in timeseries computations in dataframes or overlapping image processing in arrays or PDE computations.

```python
L = range(20 * n)
L = client.map(slowadd, L[:-1], L[1:])
L = client.map(slowadd, L[:-1], L[1:])
wait(L)
```

<img src="/images/nearest-neighbor-black-on-white.svg"
     width="50%">

Scaling is similar to the tree reduction case. Interesting dependency
structures don't incur significant overhead or scaling costs.

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="11288c56-ea8f-45d3-9629-62c82b24eb54"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Sequential

<img src="/images/sequential-black-on-white.svg"
     width="10%" align="right">

We consider a computation that isn't parallel at all, but is instead highly sequential. Increasing the number of workers shouldn't help here (there is only one thing to do at a time) but this does demonstrate the extra stresses that arise from a large number of workers. Note that we have turned off task fusion for this, so here we're measuring how many roundtrips can occur between the scheduler and worker every second.

```python
x = 1

for i in range(100):
    x = delayed(inc)(x)

x.compute()
```

So we get something like 100 roundtrips per second, or around 10ms roundtrip
latencies. It turns out that a decent chunk of this cost was due to an
optimization; workers prefer to batch small messages for higher throughput. In
this case that optimization hurts us. Still though, we're about 2-4x faster
than video frame-rate here (video runs at around 24Hz or 40ms between frames).

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="733be4a9-6378-4112-bcaf-bfb1a4217c9c"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Client in the loop

Finally we consider a reduction that consumes whichever futures finish first
and adds them together. This is an example of using client-side logic within
the computation, which is often helpful in complex algorithms. This also
scales a little bit better because there are fewer dependencies to track within
the scheduler. The client takes on a bit of the load.

```python
from dask.distributed import as_completed
futures = client.map(slowinc, range(n * 20))

pool = as_completed(futures)
batches = pool.batches()

while True:
    try:
        batch = next(batches)
        if len(batch) == 1:
            batch += next(batches)
    except StopIteration:
        break
    future = client.submit(slowsum, batch)
    pool.add(future)
```

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="3c6ec7c3-ffd7-4ec9-8ef7-1e8b21a044f5"></div>
</div></div>
</div>

<div class="row">

### Tasks: Complete

We show most of the plots from above for comparison.

<div class="bk-root">
<div class="bk-plotdiv" id="30baf2d4-57bd-4393-8a2c-c9deb1a1edc9"></div>
</div>
</div>

## Arrays

When we combine NumPy arrays with the task scheduling system above we get
dask.array, a distributed multi-dimensional array. This section shows
computations like the last section (maps, reductions, nearest-neighbor), but
now these computations are motivated by actual data-oriented computations and
involve real data movement.

<div class="row">
<div class="col-md-6">
### Create Dataset

We make a square array with somewhat random data. This array scales with the
number of cores. We cut it into uniform chunks of size 2000 by 2000.

```python
N = int(5000 * math.sqrt(n_cores))
x = da.random.randint(0, 10000, size=(N, N), chunks=(2000, 2000))
x = x.persist()
wait(x)
```

Creating this array is embarrassingly parallel. There is an odd corner in the
graph here that I'm not able to explain.

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="bdce2a6b-8576-4724-8736-24f4b86d6487"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Elementwise Computation

We perform some numerical computation element-by-element on this array.

```python
y = da.sin(x) ** 2 + da.cos(x) ** 2
y = y.persist()
wait(y)
```

This is also embarrassingly parallel. Each task here takes around 300ms
(the time it takes to call this on a single 2000 by 2000 numpy array chunk).

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="d919e07f-2795-4bfd-9f97-d0aaf24c0a2a"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Reductions

We sum the array. This is implemented as a tree reduction.

```python
x.std().compute()
```

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="8f38e6fe-fab7-480b-9eb8-0f72781e24d7"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Random Access

We get a single element from the array. This shouldn't get any faster with
more workers, but it may get slower depending on how much base-line load a
worker adds to the scheduler.

```python
x[1234, 4567].compute()
```

We get around 400-800 bytes per second, which translates to response times of
10-20ms, about twice the speed of video framerate. We see that performance
does degrade once we have a hundred or so active connections.

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="88e05fb2-abac-4b1e-bcf9-a04d9148a6bf"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Communication

We add the array to its transpose. This forces different chunks to move around
the network so that they can add to each other. Roughly half of the array
moves on the network.

```python
y = x + x.T
y = y.persist()
wait(y)
```

The task structure of this computation is something like nearest-neighbors. It
has a regular pattern with a small number of connections per task. It's really
more a test of the network hardware, which we see does not impose any
additional scaling limitations (this looks like normal slightly-sub-linear
scaling).

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="7b3301e3-8beb-4da4-bbef-9eb52793f8c1"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Rechunking

Sometimes communication is composed of many small transfers. For example if
you have a time series of images so that each image is a chunk, you might want
to rechunk the data so that all of the time values for each pixel are in a
chunk instead. Doing this can be very challenging because every output chunk
requires a little bit of data from every input chunk, resulting in potentially
n-squared transfers.

```python
y = x.rechunk((20000, 200)).persist()
wait(y)

y = y.rechunk((200, 20000)).persist()
wait(y)
```

This computation can be _very hard_. We see that dask does it more slowly than
fast computations like reductions, but it still scales decently well up to
hundreds of workers.

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="a1a28d56-81f7-4580-8400-f7aec3cd4f59"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Nearest Neighbor

Dask.array includes the ability to overlap small bits of neighboring blocks to
enable functions that require a bit of continuity like derivatives or spatial
smoothing functions.

```python
y = x.map_overlap(slowinc, depth=1, delay=0.1).persist()
wait(y)
```

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="f04e6ad2-5317-4dc8-babd-f3b8d85ae09c"></div>
</div></div>
</div>

<div class="row">

### Array Complete

<div class="bk-root">
<div class="bk-plotdiv" id="ea30e0d3-0a1b-40bb-be2f-e0b54af96aab"></div>
</div>
</div>

## DataFrames

We can combine Pandas Dataframes with Dask to obtain Dask dataframes,
distributed tables. This section will be much like the last section on arrays
but will instead focus on pandas-style computations.

<div class="row">
<div class="col-md-6">
### Create Dataset

We make an array of random integers with ten columns and two million rows per
core, but into chunks of size one million. We turn this into a dataframe of
integers:

```python
x = da.random.randint(0, 10000, size=(N, 10), chunks=(1000000, 10))
df = dd.from_dask_array(x).persist()
wait(df)
```

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="c6417fff-a706-4e33-9337-548f59f230f9"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Elementwise

We can perform 100ms tasks or try out a bunch of arithmetic.

```python
y = df.map_partitions(slowinc, meta=df).persist()
wait(y)
```

```python
y = (df[0] + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10).persist()
wait(y)
```

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="3d2dcdc7-c91f-4e16-9a6f-88b4837e6375"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Random access

Similarly we can try random access with loc.

```python
df.loc[123456].compute()
```

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="e2d30245-cca5-41bc-8691-59037c33c9f2"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Reductions

We can try reductions along the full dataset or a single series:

```python
df.std().compute()
```

```python
df[0].std().compute()
```

Groupby aggregations like `df.groupby(...).column.mean()` operate very
similarly to reductions, just with slightly more complexity.

```python
df.groupby(0)[1].mean().compute()
```

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="055fa730-cc11-4b5d-8237-c067f0fcb5d5"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Shuffles

However operations like `df.groupby(...).apply(...)` are much harder to
accomplish because we actually need to construct the groups. This requires a
full shuffle of all of the data, which can be quite expensive.

This is also the same operation that occurs when we sort or call `set_index`.

```python
df.groupby(0).apply(len).compute()  # this would be faster as df.groupby(0).size()
```

```python
y = df.set_index(1).persist()
wait(y)
```

This still performs decently and scales well out to a hundred or so workers.

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="a46691fb-a1b1-47fb-9d8f-9a6933ba78b7"></div>
</div></div>
</div>

<div class="row">
<div class="col-md-6">

### Timeseries operations

Timeseries operations often require nearest neighbor computations. Here we
look at rolling aggregations, but cumulative operations, resampling, and so
on are all much the same.

```python
y = df.rolling(5).mean().persist()
wait(y)
```

</div>

<div class="col-md-6"><div class="bk-root">
<div class="bk-plotdiv" id="ea096ed4-c553-404e-b18f-a1336a4d4156"></div>
</div></div>
</div>

<div class="row">

### Dataframes: Complete

<div class="bk-root">
<div class="bk-plotdiv" id="3bad34c6-9772-45c7-88d7-62c3eaa3fa97"></div>
</div>
</div>

<div class="row">
<div class="col-md-6">

## Analysis

Let's start with a few main observations:

1.  The longer your individual tasks take, the better Dask (or any distributed
    system) will scale. As you increase the number of workers you should also
    endeavor to increase average task size, for example by increasing the
    in-memory size of your array chunks or dataframe partitions.
2.  The Dask scheduler + Client currently maxes out at around 3000 tasks per
    second. Another way to put this is that if our computations take 100ms
    then we can saturate about 300 cores, which is more-or-less what we observe
    here.
3.  Adding dependencies is generally free in modest cases such as in a reduction or
    nearest-neighbor computation. It doesn't matter what structure your
    dependencies take, as long as parallelism is still abundant.
4.  Adding more substantial dependencies, such as in array rechunking or
    dataframe shuffling, can be more costly, but dask collection algorithms
    (array, dataframe) are built to maintain scalability even at scale.
5.  The scheduler seems to slow down at 256 workers, even for long task

lengths. This suggests that we may have an overhead issue that needs to be
resolved.

</div>

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

## Expert Approach

So given our experience here, let's now tweak settings to make Dask run well.
We want to avoid two things:

1.  Lots of independent worker processes
2.  Lots of small tasks

So lets change some things:

1.  **Bigger workers:** Rather than have 256 two-core workers lets deploy 32
    sixteen-core workers.
2.  **Bigger chunks:** Rather than have 2000 by 2000 numpy array chunks lets
    bump this up to 10,000 by 10,000.

    Rather than 1,000,000 row Pandas dataframe partitions let's bump this up to 10,000,000.

    These sizes are still well within comfortable memory limits. Each is about
    a Gigabyte in our case.

When we make these changes we find that all metrics improve at larger scales.
Some notable improvements are included in a table below (sorry for not having
pretty plots in this case).

<table>
<thead>
<td><b>Benchmark</b></td><td><b>Small</b></td><td><b>Big</b></td><td><b>Unit</b></td>
</thead>
<tr>
<td>Tasks: Embarrassingly parallel</td>
<td>3500</td>
<td>3800</td>
<td>tasks/s</td>
</tr>
<tr>
<td>Array: Elementwise sin(x)**2 + cos(x)**2</td>
<td>2400</td>
<td>6500</td>
<td>MB/s</td>
</tr>
<tr>
<td>DataFrames: Elementwise arithmetic </td>
<td>9600</td>
<td>66000</td>
<td>MB/s</td>
</tr>
<tr>
<td>Arrays: Rechunk</td>
<td>4700</td>
<td>4800</td>
<td>MB/s</td>
</tr>
<tr>
<td>DataFrames: Set index</td>
<td>1400</td>
<td>1000</td>
<td>MB/s</td>
</tr>
</table>

We see that for some operations we can get significant improvements
(dask.dataframe is now churning through data at 60/s) and for other operations
that are largely scheduler or network bound this doesn't strongly improve the
situation (and sometimes hurts).

Still though, even with naive settings we're routinely pushing through 10s of
gigabytes a second on a modest cluster. These speeds are available for a very
wide range of computations.

</div>
</div>

<div class="row">
<div class="col-md-6">

## Final thoughts

Hopefully these notes help people to understand Dask's scalability. Like all
tools it has limits, but even under normal settings Dask should scale well out
to a hundred workers or so. Once you reach this limit you might want to start
taking other factors into consideration, especially threads-per-worker and
block size, both of which can help push well into the thousands-of-cores range.

The included notebooks are self contained, with code to both run and time the
computations as well as produce the Bokeh figures. I would love to see other
people reproduce these benchmarks (or others!) on different hardware or with
different settings.

- [Jupyter notebook for benchmarks](https://gist.github.com/mrocklin/4c198b13e92f881161ef175810c7f6bc#file-scaling-gcs-ipynb)
- [Jupyter notebook for plots](https://nbviewer.jupyter.org/urls/gist.githubusercontent.com/mrocklin/4c198b13e92f881161ef175810c7f6bc/raw/2fc5a40805fb306eec2af6573e2e93a9d72883cb/scaling-plots.ipynb)

</div>

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

## Tooling

This blogpost made use of the following tools:

1.  [Dask-kubernetes](https://github.com/martindurant/dask-kubernetes): for
    deploying clusters of varying sizes on Google compute engine
2.  [Bokeh](https://bokeh.pydata.org/en/latest/): for plotting
    ([gallery](https://bokeh.pydata.org/en/latest/docs/gallery.html))
3.  [gcsfs](https://gcsfs.readthedocs.io/en/latest/): for storage on Google
    cloud storage

</div>
</div>

<script type="text/javascript">
    (function() {
  var fn = function() {
    Bokeh.safely(function() {
      var docs_json = {"c37a7732-0c94-4514-bc5b-189fa40a390f":{"roots":{"references":[{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"e007db40-8804-4fc3-8fd0-f0d696c2697c","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,506.8406659004797]}},"id":"aa15e897-6c86-46d5-9c8a-1976053e42e0","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"8b74d8e5-a13e-4955-bfca-bcab0e2df8a7","type":"ColumnDataSource"},"glyph":{"id":"fe27d651-f139-49a9-8553-62e6d681be99","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"e007db40-8804-4fc3-8fd0-f0d696c2697c","type":"Circle"},"selection_glyph":null},"id":"72ff53d1-eae1-44b0-9e17-1576c8ed8435","type":"GlyphRenderer"},{"attributes":{"below":[{"id":"ec90fd4d-97e4-4514-b1b9-a342144ecfd4","type":"LogAxis"}],"left":[{"id":"4d0b5ee2-e522-422c-ac00-fb6e8bd64d19","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"ec90fd4d-97e4-4514-b1b9-a342144ecfd4","type":"LogAxis"},{"id":"900cd3cf-7e4a-4349-ac71-a261a5822bff","type":"Grid"},{"id":"4d0b5ee2-e522-422c-ac00-fb6e8bd64d19","type":"LogAxis"},{"id":"4802e78d-1853-4c20-8f57-d2ef5d94f259","type":"Grid"},{"id":"add7c6e9-6c2c-44db-a848-5316f1f5604e","type":"BoxAnnotation"},{"id":"9c0133b2-694e-4b46-9a57-b640227dede1","type":"Legend"},{"id":"574611f2-05d6-4ba6-8e30-00a164f87763","type":"GlyphRenderer"},{"id":"9bf05800-53d0-4c83-9dc9-6d36bf273717","type":"GlyphRenderer"},{"id":"8761dbdd-001d-4bdf-adee-a45a6d304b7e","type":"GlyphRenderer"},{"id":"74e9596d-b53b-4669-87c7-c36ea13c283b","type":"GlyphRenderer"},{"id":"b5da0192-a4d1-4258-993d-08035157554c","type":"GlyphRenderer"},{"id":"020543b4-4bdc-4f9d-813e-9e578b5b9566","type":"GlyphRenderer"}],"title":{"id":"e9b463ca-461c-448b-996c-36d409061c1a","type":"Title"},"tool_events":{"id":"7354dc19-fb54-4295-ae5e-42975743213a","type":"ToolEvents"},"toolbar":{"id":"c7f571ae-9d27-4b2f-b54e-dc53e40e99f8","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"ec984df4-d8d4-49d2-bdd8-09e7ed64bd84","type":"DataRange1d"},"x_scale":{"id":"9f289e7e-4d9e-4659-a45e-0d47e06c494f","type":"LogScale"},"y_range":{"id":"bc249175-2057-4b6a-8901-302cdcd70cec","type":"DataRange1d"},"y_scale":{"id":"8b140c20-6d76-44f3-91e6-e42463f894b7","type":"LogScale"}},"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"9a6593d5-0250-4e46-af7e-b2a7748c0733","type":"FixedTicker"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"7c99fea2-3216-4d84-b912-8d9584fad011","type":"Panel"},{"id":"e3565d29-459e-453a-82a3-5fb3335eab1b","type":"Panel"}]},"id":"948f0ba1-2615-4ca3-9634-5eade5d4eab8","type":"Tabs"},{"attributes":{"plot":null,"text":"Tasks: Nearest Neighbor"},"id":"e9b463ca-461c-448b-996c-36d409061c1a","type":"Title"},{"attributes":{"callback":null,"start":0},"id":"ec984df4-d8d4-49d2-bdd8-09e7ed64bd84","type":"DataRange1d"},{"attributes":{},"id":"7354dc19-fb54-4295-ae5e-42975743213a","type":"ToolEvents"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"e0ba9b60-db70-4b11-90ea-2868bc56108f","type":"PanTool"},{"id":"119970ac-6463-4f32-a7e2-f3bb89fcae56","type":"WheelZoomTool"},{"id":"f50914d8-200a-4f31-abfd-26c17a885c0c","type":"BoxZoomTool"},{"id":"25aa7dd9-490d-4122-9f8a-fa60ccf8b1ac","type":"SaveTool"},{"id":"f26e3fe2-102a-4632-99cc-17710686c86a","type":"ResetTool"},{"id":"3b7b47f2-f735-4ce9-94a7-152fe76da795","type":"HelpTool"}]},"id":"c7f571ae-9d27-4b2f-b54e-dc53e40e99f8","type":"Toolbar"},{"attributes":{"num_minor_ticks":10},"id":"b835afc1-9f31-47a8-8415-37c4fc09a68f","type":"LogTicker"},{"attributes":{"plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"}},"id":"3b7b47f2-f735-4ce9-94a7-152fe76da795","type":"HelpTool"},{"attributes":{"callback":null,"end":3889.605662888761,"start":0},"id":"bc249175-2057-4b6a-8901-302cdcd70cec","type":"DataRange1d"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"add7c6e9-6c2c-44db-a848-5316f1f5604e","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"},"ticker":{"id":"b835afc1-9f31-47a8-8415-37c4fc09a68f","type":"LogTicker"}},"id":"900cd3cf-7e4a-4349-ac71-a261a5822bff","type":"Grid"},{"attributes":{},"id":"9f289e7e-4d9e-4659-a45e-0d47e06c494f","type":"LogScale"},{"attributes":{"axis_label":"cores","formatter":{"id":"43614ea2-6c98-4c4b-b244-cd6997748460","type":"LogTickFormatter"},"plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"},"ticker":{"id":"9a6593d5-0250-4e46-af7e-b2a7748c0733","type":"FixedTicker"}},"id":"ec90fd4d-97e4-4514-b1b9-a342144ecfd4","type":"LogAxis"},{"attributes":{"plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"}},"id":"f26e3fe2-102a-4632-99cc-17710686c86a","type":"ResetTool"},{"attributes":{"ticker":null},"id":"43614ea2-6c98-4c4b-b244-cd6997748460","type":"LogTickFormatter"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,429249.4818984265]}},"id":"8d20c76c-a0e7-490a-990d-8778b22525db","type":"ColumnDataSource"},{"attributes":{"ticker":null},"id":"dbe6206b-2096-45ac-9348-a3ceb73aca41","type":"LogTickFormatter"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"YiGd3kr1M0C4DswHLGBDQAJlPBqPJVNAF1KOo6LJYkAH1cQ/wblxQALKM0XtrH9ADDdmn9fbi0DY4pMc/3KVQBZyRig+NJpA","dtype":"float64","shape":[9]}}},"id":"a044186a-fb4c-40df-99b5-041e0e8bae53","type":"ColumnDataSource"},{"attributes":{"items":[{"id":"e3759520-c0b2-49f6-b20d-9837dd3812ff","type":"LegendItem"},{"id":"d078ef74-743b-4d72-930b-cdccaa71686b","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"}},"id":"9c0133b2-694e-4b46-9a57-b640227dede1","type":"Legend"},{"attributes":{"callback":null,"start":0},"id":"b001ffc1-f73c-4a86-8852-4cc84bccf134","type":"DataRange1d"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"574611f2-05d6-4ba6-8e30-00a164f87763","type":"GlyphRenderer"}]},"id":"e3759520-c0b2-49f6-b20d-9837dd3812ff","type":"LegendItem"},{"attributes":{"data_source":{"id":"c258ceef-ff77-4c99-bede-d114e0e8661e","type":"ColumnDataSource"},"glyph":{"id":"9921a856-db94-45ec-965b-a4c82007d7c9","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"916990fa-9a5f-41cf-86af-c752ab75187b","type":"Line"},"selection_glyph":null},"id":"8761dbdd-001d-4bdf-adee-a45a6d304b7e","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"d0630987-de58-4730-9b74-9d48879ccebb","type":"Circle"},{"attributes":{"data_source":{"id":"a044186a-fb4c-40df-99b5-041e0e8bae53","type":"ColumnDataSource"},"glyph":{"id":"d0630987-de58-4730-9b74-9d48879ccebb","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"92c4857d-a271-4cd8-ae95-b9d97f4b5500","type":"Circle"},"selection_glyph":null},"id":"9bf05800-53d0-4c83-9dc9-6d36bf273717","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"92c4857d-a271-4cd8-ae95-b9d97f4b5500","type":"Circle"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"f3de3fe5-0544-441d-a3fe-a189685e7c38","type":"Line"},{"attributes":{"data_source":{"id":"8d20c76c-a0e7-490a-990d-8778b22525db","type":"ColumnDataSource"},"glyph":{"id":"a151b77f-3293-4751-b50f-342b95f0d038","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f3de3fe5-0544-441d-a3fe-a189685e7c38","type":"Line"},"selection_glyph":null},"id":"020543b4-4bdc-4f9d-813e-9e578b5b9566","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"9921a856-db94-45ec-965b-a4c82007d7c9","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"916990fa-9a5f-41cf-86af-c752ab75187b","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"98d27QUzmkDK8eq3P0GeQDr+4mLrCqlAVTMqiTA6rEBCN3IZNmOuQOX8onhe0a1A7S7Drxhtq0DDEdAa+eaqQHPoMPdNM6lA","dtype":"float64","shape":[9]}}},"id":"f4cb967a-e3e7-4c2a-85d7-94edafe74ddb","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,5109.292459316874]}},"id":"99f31978-e596-4b53-9442-bfdc9bf67fd9","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"98d27QUzmkDK8eq3P0GeQDr+4mLrCqlAVTMqiTA6rEBCN3IZNmOuQOX8onhe0a1A7S7Drxhtq0DDEdAa+eaqQHPoMPdNM6lA","dtype":"float64","shape":[9]}}},"id":"c258ceef-ff77-4c99-bede-d114e0e8661e","type":"ColumnDataSource"},{"attributes":{"label":{"value":"1us"},"renderers":[{"id":"8761dbdd-001d-4bdf-adee-a45a6d304b7e","type":"GlyphRenderer"}]},"id":"d078ef74-743b-4d72-930b-cdccaa71686b","type":"LegendItem"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"3b37257b-29ce-4b6b-ab05-d55f53cb5318","type":"Line"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"5612f988-0273-4d0b-82df-e2a036b566dd","type":"Circle"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"3b9715d7-d3cf-43b1-83b5-5d46099190a6","type":"Circle"},{"attributes":{"data_source":{"id":"99f31978-e596-4b53-9442-bfdc9bf67fd9","type":"ColumnDataSource"},"glyph":{"id":"3b37257b-29ce-4b6b-ab05-d55f53cb5318","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4f639ad0-1df4-4065-b96f-87db75286b8d","type":"Line"},"selection_glyph":null},"id":"b5da0192-a4d1-4258-993d-08035157554c","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"1a533ad6-a74d-45af-8afd-5fadb94dc063","type":"Circle"},{"attributes":{"data_source":{"id":"f4cb967a-e3e7-4c2a-85d7-94edafe74ddb","type":"ColumnDataSource"},"glyph":{"id":"3b9715d7-d3cf-43b1-83b5-5d46099190a6","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1a533ad6-a74d-45af-8afd-5fadb94dc063","type":"Circle"},"selection_glyph":null},"id":"74e9596d-b53b-4669-87c7-c36ea13c283b","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"24450ec2-23b0-43b9-a45e-645b0d14b4e0","type":"ColumnDataSource"},"glyph":{"id":"802d8d3b-1602-4f78-8b1a-ccbbd26324ae","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"5612f988-0273-4d0b-82df-e2a036b566dd","type":"Circle"},"selection_glyph":null},"id":"2f5b7913-d5eb-4f8d-8015-4df1e3921af0","type":"GlyphRenderer"},{"attributes":{"plot":null,"text":"Tasks: Nearest Neighbor"},"id":"b34839f9-43a6-4db1-b259-9ae621bab554","type":"Title"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"3a7b15e0-3597-4a99-8089-6ecce1d9ca49","type":"PanTool"},{"id":"cd0d9904-16bc-4916-b074-b04f42c3c0c8","type":"WheelZoomTool"},{"id":"a0edbc21-c056-4cdc-a171-0c99928b8ab7","type":"BoxZoomTool"},{"id":"8b476975-4b0a-41e2-b278-f7b49bc29967","type":"SaveTool"},{"id":"fbef2fb6-1564-4b5c-b1ab-205dd4802aea","type":"ResetTool"},{"id":"b34e007a-6220-4ded-a494-4c692ef5e34e","type":"HelpTool"}]},"id":"35bf0528-69b8-462b-b22b-f20921cbf075","type":"Toolbar"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"4f639ad0-1df4-4065-b96f-87db75286b8d","type":"Line"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"a151b77f-3293-4751-b50f-342b95f0d038","type":"Line"},{"attributes":{},"id":"96fee7b2-af76-440c-980d-23642c8291a7","type":"ToolEvents"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"YiGd3kr1M0C4DswHLGBDQAJlPBqPJVNAF1KOo6LJYkAH1cQ/wblxQALKM0XtrH9ADDdmn9fbi0DY4pMc/3KVQBZyRig+NJpA","dtype":"float64","shape":[9]}}},"id":"5393ef18-b0dd-4e69-aa17-c8a894b3e553","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"63046e3d-cbb0-40b2-ba3e-840605226eac","type":"Line"},{"attributes":{"below":[{"id":"8712c194-d4cf-4fc1-8238-75a3367208c5","type":"LinearAxis"}],"left":[{"id":"ec103342-fbb5-4e1e-9218-efecfbb465dc","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"8712c194-d4cf-4fc1-8238-75a3367208c5","type":"LinearAxis"},{"id":"097ec216-0566-4402-a20f-c9f8c6bf53a6","type":"Grid"},{"id":"ec103342-fbb5-4e1e-9218-efecfbb465dc","type":"LinearAxis"},{"id":"c815bc0b-8a5a-44e6-953d-8085a5106242","type":"Grid"},{"id":"7125017b-656e-407f-9006-42d58445db17","type":"BoxAnnotation"},{"id":"8b367327-372a-448e-99a6-fd80f7367292","type":"Legend"},{"id":"0e811120-b5fb-4b6a-acaf-28b0e4a6c1d1","type":"GlyphRenderer"},{"id":"2f5b7913-d5eb-4f8d-8015-4df1e3921af0","type":"GlyphRenderer"},{"id":"34a85c78-f3f8-4f21-91e8-1fe0f4fae357","type":"GlyphRenderer"},{"id":"c3588a2b-2bad-4eac-a8e9-cdba1cb268e2","type":"GlyphRenderer"},{"id":"8fca08fa-ae6e-4a96-b377-c51a5fac6c86","type":"GlyphRenderer"},{"id":"68b04869-9d0b-402b-8294-fb51737caed5","type":"GlyphRenderer"}],"title":{"id":"b34839f9-43a6-4db1-b259-9ae621bab554","type":"Title"},"tool_events":{"id":"96fee7b2-af76-440c-980d-23642c8291a7","type":"ToolEvents"},"toolbar":{"id":"35bf0528-69b8-462b-b22b-f20921cbf075","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"b001ffc1-f73c-4a86-8852-4cc84bccf134","type":"DataRange1d"},"x_scale":{"id":"e1be6568-4bdb-4bb3-8e27-b00adda77f05","type":"LinearScale"},"y_range":{"id":"e7f927e6-d0b1-43e7-a944-2fafdd81d46d","type":"DataRange1d"},"y_scale":{"id":"0258df5a-ee7f-4f26-bade-9deb6f13bd65","type":"LinearScale"}},"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"e1be6568-4bdb-4bb3-8e27-b00adda77f05","type":"LinearScale"},{"attributes":{"callback":null,"end":3889.605662888761,"start":0},"id":"e7f927e6-d0b1-43e7-a944-2fafdd81d46d","type":"DataRange1d"},{"attributes":{},"id":"0258df5a-ee7f-4f26-bade-9deb6f13bd65","type":"LinearScale"},{"attributes":{"plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"},"ticker":{"id":"bdbd2aa8-f4d8-4d12-ac1b-a1da26502d0e","type":"BasicTicker"}},"id":"097ec216-0566-4402-a20f-c9f8c6bf53a6","type":"Grid"},{"attributes":{"axis_label":"cores","formatter":{"id":"43f1f63c-8840-41d0-bd91-73753f416566","type":"BasicTickFormatter"},"plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"},"ticker":{"id":"0e46acf9-09da-417d-a968-159dea7e0873","type":"FixedTicker"}},"id":"8712c194-d4cf-4fc1-8238-75a3367208c5","type":"LinearAxis"},{"attributes":{},"id":"bdbd2aa8-f4d8-4d12-ac1b-a1da26502d0e","type":"BasicTicker"},{"attributes":{"axis_label":"tasks/s","formatter":{"id":"aa405d77-23c5-4840-adfb-fcbfde7f3700","type":"BasicTickFormatter"},"plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"},"ticker":{"id":"2d761743-2cf4-43a2-8c8e-d0cc887a92af","type":"BasicTicker"}},"id":"ec103342-fbb5-4e1e-9218-efecfbb465dc","type":"LinearAxis"},{"attributes":{},"id":"2d761743-2cf4-43a2-8c8e-d0cc887a92af","type":"BasicTicker"},{"attributes":{"dimension":1,"plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"},"ticker":{"id":"2d761743-2cf4-43a2-8c8e-d0cc887a92af","type":"BasicTicker"}},"id":"c815bc0b-8a5a-44e6-953d-8085a5106242","type":"Grid"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"70dff99f-4db9-4aff-9bb8-0fb5923eb273","type":"Line"},{"attributes":{"data_source":{"id":"5393ef18-b0dd-4e69-aa17-c8a894b3e553","type":"ColumnDataSource"},"glyph":{"id":"70dff99f-4db9-4aff-9bb8-0fb5923eb273","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"63046e3d-cbb0-40b2-ba3e-840605226eac","type":"Line"},"selection_glyph":null},"id":"0e811120-b5fb-4b6a-acaf-28b0e4a6c1d1","type":"GlyphRenderer"},{"attributes":{"child":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"e3565d29-459e-453a-82a3-5fb3335eab1b","type":"Panel"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"7125017b-656e-407f-9006-42d58445db17","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"}},"id":"3a7b15e0-3597-4a99-8089-6ecce1d9ca49","type":"PanTool"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"802d8d3b-1602-4f78-8b1a-ccbbd26324ae","type":"Circle"},{"attributes":{"plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"}},"id":"cd0d9904-16bc-4916-b074-b04f42c3c0c8","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"7125017b-656e-407f-9006-42d58445db17","type":"BoxAnnotation"},"plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"}},"id":"a0edbc21-c056-4cdc-a171-0c99928b8ab7","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"}},"id":"8b476975-4b0a-41e2-b278-f7b49bc29967","type":"SaveTool"},{"attributes":{"plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"}},"id":"fbef2fb6-1564-4b5c-b1ab-205dd4802aea","type":"ResetTool"},{"attributes":{"plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"}},"id":"b34e007a-6220-4ded-a494-4c692ef5e34e","type":"HelpTool"},{"attributes":{},"id":"aa405d77-23c5-4840-adfb-fcbfde7f3700","type":"BasicTickFormatter"},{"attributes":{"below":[{"id":"5782e52f-d045-4066-8e67-4ff6b658a5b9","type":"LinearAxis"}],"left":[{"id":"b6d97613-9b92-4c51-93c9-494f3435f0be","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"5782e52f-d045-4066-8e67-4ff6b658a5b9","type":"LinearAxis"},{"id":"eb20f2d2-177b-4983-8352-8bfbceddd49c","type":"Grid"},{"id":"b6d97613-9b92-4c51-93c9-494f3435f0be","type":"LinearAxis"},{"id":"46f80ab7-5004-455a-a548-55ec92fffb80","type":"Grid"},{"id":"656cf7cc-3748-4c60-ad17-48948d4f1067","type":"BoxAnnotation"},{"id":"e428b65c-bedd-4afe-b852-3e0e275615e3","type":"Legend"},{"id":"4bf1be6f-0524-4691-a469-c271ed97e0b9","type":"GlyphRenderer"},{"id":"fad64154-6abb-410f-a32f-9691b20da3f9","type":"GlyphRenderer"},{"id":"c100652d-4b2f-441d-a19b-1d5d96238306","type":"GlyphRenderer"},{"id":"6216cd53-1ee7-4d64-bed7-99aa32b36d65","type":"GlyphRenderer"},{"id":"610e6598-84c3-4377-bce3-4258e91e8129","type":"GlyphRenderer"},{"id":"eae59b8c-4aae-42b2-af00-907169e4c2d0","type":"GlyphRenderer"}],"title":{"id":"5ed47176-1165-43e2-acb6-dcbc4ffee512","type":"Title"},"tool_events":{"id":"19779bf4-dc96-4d5f-a96c-650727df217c","type":"ToolEvents"},"toolbar":{"id":"344426e7-d635-4e04-a5de-4ffd275f71c6","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"8e2a6dae-41dd-4920-8ff6-8780ed089f0a","type":"DataRange1d"},"x_scale":{"id":"1e10a22c-12aa-4a41-915c-f85a8ed32090","type":"LinearScale"},"y_range":{"id":"e4513607-4e88-4611-b52e-319f23abdd30","type":"DataRange1d"},"y_scale":{"id":"1bb1ad9c-effe-4731-9798-9d4a4aa13fa5","type":"LinearScale"}},"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"43f1f63c-8840-41d0-bd91-73753f416566","type":"BasicTickFormatter"},{"attributes":{"data_source":{"id":"798b04c0-7810-433c-9d10-e52806569ced","type":"ColumnDataSource"},"glyph":{"id":"11d6ffa4-ab28-4bc2-b71f-bdb2f16a1e20","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1d27dfc8-f33e-4a00-859c-228c9443d3a6","type":"Line"},"selection_glyph":null},"id":"a5327d44-b21a-412c-8c94-f9363f357d96","type":"GlyphRenderer"},{"attributes":{"overlay":{"id":"16d3717d-7fcf-4009-b087-43fb39f20e1e","type":"BoxAnnotation"},"plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"}},"id":"50075953-0cab-4112-abce-afe021f330ea","type":"BoxZoomTool"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"16d3717d-7fcf-4009-b087-43fb39f20e1e","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"}},"id":"216cc837-f8a2-4718-a2b9-ab6aae1188f5","type":"SaveTool"},{"attributes":{"plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"}},"id":"497251b6-85e2-450e-a3df-dc513d4623d8","type":"ResetTool"},{"attributes":{"plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"}},"id":"da51f522-93e8-4265-a989-c54b2d742198","type":"HelpTool"},{"attributes":{"data_source":{"id":"540ea8dd-e79f-4d23-8d1d-2260fd9c9cc4","type":"ColumnDataSource"},"glyph":{"id":"a07c6be1-0e1c-4254-b77a-11bcee7c1e3c","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"e44f06cb-5e14-4173-829a-78e5edb37dd6","type":"Line"},"selection_glyph":null},"id":"0c8fbb3b-c3b4-497a-95d9-2952c6e6eeaf","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"5cf39d3a-1212-4d68-abe5-26f177c25f18","type":"Line"},{"attributes":{},"id":"94f6bf21-e27e-4108-87fb-96b57789a1b2","type":"BasicTickFormatter"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"BSBNWCE2dEC9BpWUVImFQDzSCcCUkJBAVLgx0fyxnkCFGyLiy4+jQE7fanACZ6xAEeby5mMgsEDryZN7k+GwQFqGlput7rBA","dtype":"float64","shape":[9]}}},"id":"8b605df9-daae-46b1-8b66-17e858c53271","type":"ColumnDataSource"},{"attributes":{"items":[{"id":"9c0152fe-a0bb-465d-b3aa-5de9592b1e82","type":"LegendItem"},{"id":"e3124601-7f30-4128-812e-4afdebf41a1e","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"}},"id":"c5106ceb-af0f-41eb-a0a3-00686ab2f704","type":"Legend"},{"attributes":{"label":{"value":"1us"},"renderers":[{"id":"0c8fbb3b-c3b4-497a-95d9-2952c6e6eeaf","type":"GlyphRenderer"}]},"id":"e3124601-7f30-4128-812e-4afdebf41a1e","type":"LegendItem"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"47190973-cc0e-4e9f-9e83-1c6099856fa6","type":"GlyphRenderer"}]},"id":"9c0152fe-a0bb-465d-b3aa-5de9592b1e82","type":"LegendItem"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a07c6be1-0e1c-4254-b77a-11bcee7c1e3c","type":"Line"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"513004ff-e78b-4e56-9c41-4646f797f42b","type":"Circle"},{"attributes":{"data_source":{"id":"8b605df9-daae-46b1-8b66-17e858c53271","type":"ColumnDataSource"},"glyph":{"id":"513004ff-e78b-4e56-9c41-4646f797f42b","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6f97b8de-fdc5-4e2d-870c-d99b2113bd24","type":"Circle"},"selection_glyph":null},"id":"75535fe1-cdc3-44dd-af24-2d0e3adb77e1","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"6f97b8de-fdc5-4e2d-870c-d99b2113bd24","type":"Circle"},{"attributes":{"children":[{"id":"4adbb7d8-6616-44e4-be42-6d199ba330ec","type":"WidgetBox"},{"id":"5392f54b-cdeb-4555-b378-01c7d6dede56","type":"WidgetBox"}],"sizing_mode":"scale_width"},"id":"2562d80e-1e0a-4237-9f75-df3916b837df","type":"Row"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"e44f06cb-5e14-4173-829a-78e5edb37dd6","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Gmr7TkyPlEBRf7wkoNCfQH9VJgZniqdALjvyvyi0rECvSL87J26wQO0MDDGQELJANhKvi9UxskBz0zc+QhSyQD61nBkBcrFA","dtype":"float64","shape":[9]}}},"id":"e5963e2e-6c71-420e-952f-d9e7cd5d5cce","type":"ColumnDataSource"},{"attributes":{"children":[{"id":"d5eef40f-39b6-49cb-9230-302039c21841","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"4adbb7d8-6616-44e4-be42-6d199ba330ec","type":"WidgetBox"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"22e1c530-a0b1-4c90-8339-87536ab99c31","type":"Circle"},{"attributes":{"data_source":{"id":"2b1426ac-bef1-47be-bd6f-2c91cfcd041e","type":"ColumnDataSource"},"glyph":{"id":"5cf39d3a-1212-4d68-abe5-26f177c25f18","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"fb651baa-3b08-4a63-94ae-dead5e491646","type":"Line"},"selection_glyph":null},"id":"ddc24851-3ca0-4a00-b6cf-df22004ede8c","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"8fab1eeb-2015-497e-b3ad-0a658f76ebe1","type":"Circle"},{"attributes":{"data_source":{"id":"e5963e2e-6c71-420e-952f-d9e7cd5d5cce","type":"ColumnDataSource"},"glyph":{"id":"22e1c530-a0b1-4c90-8339-87536ab99c31","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"8fab1eeb-2015-497e-b3ad-0a658f76ebe1","type":"Circle"},"selection_glyph":null},"id":"0310db36-3f75-438c-be17-cdf7fd57fe79","type":"GlyphRenderer"},{"attributes":{"children":[{"id":"4311ab7e-c88e-42cf-b077-bfd6acbda2f0","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"b2d08de9-8122-4c7e-8580-06583132cad3","type":"WidgetBox"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,82786.0840579272]}},"id":"2b1426ac-bef1-47be-bd6f-2c91cfcd041e","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"fb651baa-3b08-4a63-94ae-dead5e491646","type":"Line"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"ea66368f-c907-4b57-a0fa-fc3448cd572a","type":"Line"},{"attributes":{"data_source":{"id":"3bba641a-0ba0-4372-9468-28fcab8e2930","type":"ColumnDataSource"},"glyph":{"id":"ea66368f-c907-4b57-a0fa-fc3448cd572a","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"db5662e3-c646-431a-a02b-a341a39ac170","type":"Line"},"selection_glyph":null},"id":"6551e6ea-0811-4028-ad05-fef84dbb3abf","type":"GlyphRenderer"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"db5662e3-c646-431a-a02b-a341a39ac170","type":"Line"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"e252e15d-c6d5-4642-8016-3528d9a053b7","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,336851.07713094505]}},"id":"3bba641a-0ba0-4372-9468-28fcab8e2930","type":"ColumnDataSource"},{"attributes":{"children":[{"id":"50a686fd-e2c5-440a-92af-bbfc9d851b96","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"97bd2a78-88d3-40cc-a011-e9307cede1c8","type":"WidgetBox"},{"attributes":{"children":[{"id":"f9c919ee-8bdd-4d0f-b48c-bc38b6926c14","type":"ToolbarBox"},{"id":"344a1d6e-41e7-4fa4-86a6-6537dbb6c9da","type":"Column"}],"sizing_mode":"scale_width"},"id":"ed39ed3e-c52c-4159-85ae-c61b8a19409c","type":"Column"},{"attributes":{"children":[{"id":"97bd2a78-88d3-40cc-a011-e9307cede1c8","type":"WidgetBox"},{"id":"6beb2b9d-7ce1-443c-a599-6f7ff7d88cc9","type":"WidgetBox"}],"sizing_mode":"scale_width"},"id":"fb713db1-aa51-4406-b604-cd896be47fdf","type":"Row"},{"attributes":{"children":[{"id":"716ab0cd-3d4a-4000-afeb-483507e81870","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"e4f2702d-389c-44d0-b7f1-a01a1d855234","type":"WidgetBox"},{"attributes":{"children":[{"id":"d5449472-9151-45a2-82ef-636c1e6e7fad","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"6beb2b9d-7ce1-443c-a599-6f7ff7d88cc9","type":"WidgetBox"},{"attributes":{"sizing_mode":"scale_width","toolbar_location":"above","tools":[{"id":"3940e366-9f09-44b8-97f8-2bd1a03e885c","type":"PanTool"},{"id":"285fd6ac-775c-4e1a-936a-68a5442242b7","type":"WheelZoomTool"},{"id":"8546812f-01ca-4877-98fd-c31364acbe3d","type":"BoxZoomTool"},{"id":"00dffc1d-3080-4d12-b51b-e86572d80407","type":"SaveTool"},{"id":"44cf5793-22b4-47bf-a7a1-da3521d2ceea","type":"ResetTool"},{"id":"1e78d025-bd71-4310-9185-a2857b169623","type":"HelpTool"},{"id":"84c5ebf4-804c-45e8-86a3-23655f9c10cf","type":"PanTool"},{"id":"52678c06-d482-4439-b4f7-fdd872eb00e1","type":"WheelZoomTool"},{"id":"1636d618-670c-4438-b4f8-ee09061d2c5e","type":"BoxZoomTool"},{"id":"de891a7c-65b8-4d1c-9b61-242f54a10f4b","type":"SaveTool"},{"id":"a72122d2-7c05-4909-b806-34da1879e5a5","type":"ResetTool"},{"id":"35ae2e1d-7679-4f32-9cb4-5e5c38fc97c4","type":"HelpTool"},{"id":"f240d2c0-ff6c-491a-ab4e-61eae5d526ed","type":"PanTool"},{"id":"e2ce7b1b-cf07-411c-b287-d1b33ecf17f9","type":"WheelZoomTool"},{"id":"d9cf7207-525f-49a5-9224-035cd6dfc2dc","type":"BoxZoomTool"},{"id":"e4a0baa0-5ecc-4689-a4f4-6ee954c27052","type":"SaveTool"},{"id":"58423d76-834c-42ce-9dc5-b8729ce97321","type":"ResetTool"},{"id":"9b541db3-5f39-403a-ac85-bd080ebaa38a","type":"HelpTool"},{"id":"ee8f3c74-9606-467b-9649-496ff3790d92","type":"PanTool"},{"id":"20be3e8f-d733-4775-88b3-846d52aa9ab7","type":"WheelZoomTool"},{"id":"157c4d22-7e1e-4cb9-b5de-51771a77c65b","type":"BoxZoomTool"},{"id":"1d85faba-8a6b-4095-961d-e7b90412bc93","type":"SaveTool"},{"id":"c39730d2-c985-4f53-97f8-e14e1accf06e","type":"ResetTool"},{"id":"b5fe7351-f4ac-4095-818c-83276790a403","type":"HelpTool"},{"id":"69b885bb-30f4-426f-9d42-de58458e2ff9","type":"PanTool"},{"id":"dc2065d3-d923-4d56-8f0a-098f825d4480","type":"WheelZoomTool"},{"id":"7fb2a7a7-6e7c-4f7e-abe6-bb0b4d4547c0","type":"BoxZoomTool"},{"id":"6e62c218-37ff-42bd-806b-b4c4eaaf4155","type":"SaveTool"},{"id":"5862d233-d9e4-402f-a9b0-823b4b28838d","type":"ResetTool"},{"id":"1abec02d-e81f-4d20-8096-046d0dca57f1","type":"HelpTool"},{"id":"9cdbfea0-78a1-4816-95b3-20711d60ba64","type":"PanTool"},{"id":"d917a161-3ebd-4ff0-9e66-b1890604b6c7","type":"WheelZoomTool"},{"id":"c2e5b325-c321-4c08-b3da-cdf89da70574","type":"BoxZoomTool"},{"id":"60a7d2f5-41bc-4215-ac31-864b2bf34829","type":"SaveTool"},{"id":"66346441-b239-489b-900f-c4d4660d7478","type":"ResetTool"},{"id":"9e9eec61-23ba-4987-af83-bc09e49775bd","type":"HelpTool"},{"id":"d7e00d52-b6a0-43d3-b2ce-aba245b42337","type":"PanTool"},{"id":"b288bf15-ef2e-4945-9eb4-ccaf8cd6c334","type":"WheelZoomTool"},{"id":"6007b073-348b-41bc-a701-31198057ecfe","type":"BoxZoomTool"},{"id":"2a2d4a72-6109-438e-aa25-4a5692f74faf","type":"SaveTool"},{"id":"d377ce77-c83a-4022-83a8-021b1f1aa6b0","type":"ResetTool"},{"id":"16a5b5ca-891a-4048-9e4c-749d27fa4e99","type":"HelpTool"},{"id":"6c0f4cd7-3b7f-450a-8ec5-5ad54dee9602","type":"PanTool"},{"id":"268bb071-8229-41d7-81ce-b1a2b2b810d9","type":"WheelZoomTool"},{"id":"8af95738-37f1-4d91-bff1-a0ad5a3357a7","type":"BoxZoomTool"},{"id":"45ddb6b8-b536-4147-a7e6-f7302b12e46a","type":"SaveTool"},{"id":"19085b66-4288-4213-ba84-7d22eb1a99ac","type":"ResetTool"},{"id":"8c843b78-9689-42c8-a19b-383f83ed3cae","type":"HelpTool"},{"id":"8361b22b-3ff7-4956-88ad-047a13352874","type":"PanTool"},{"id":"775682b6-14e9-4776-8728-d6245765d7d7","type":"WheelZoomTool"},{"id":"ed4b4a35-3f55-4984-b0c8-a056878f6a04","type":"BoxZoomTool"},{"id":"470cd535-e7e1-4478-b54d-b49a97059204","type":"SaveTool"},{"id":"3ce9e121-6fd7-401f-a547-da593e4dc77b","type":"ResetTool"},{"id":"16d88d36-65a2-4f3e-b237-11a79023b49a","type":"HelpTool"},{"id":"322e809f-122d-44ab-adfb-fff13baa036d","type":"PanTool"},{"id":"e612c372-7409-4d8a-944c-1206bca538ab","type":"WheelZoomTool"},{"id":"58a240d7-30be-4420-b93a-ca1289863d13","type":"BoxZoomTool"},{"id":"86c94690-79f6-4288-ba82-e17a4d185cb9","type":"SaveTool"},{"id":"edc59f29-54a7-45a3-84bb-03fcb65ef6df","type":"ResetTool"},{"id":"b4032102-911b-4c4c-8f60-4ecff36ecb9b","type":"HelpTool"},{"id":"6b4da656-890a-4f15-8308-bba17bf46855","type":"PanTool"},{"id":"a81c27f4-60d4-49ea-a1a6-2ac54ae5f301","type":"WheelZoomTool"},{"id":"62446d6b-d3d2-4d9b-91a7-1846e468a714","type":"BoxZoomTool"},{"id":"64b8c2ea-0b92-4c14-9235-028576947076","type":"SaveTool"},{"id":"9b3a52e3-e27a-4f6b-b6ba-e0db55d8bed9","type":"ResetTool"},{"id":"92a69e8a-7390-4350-9ad6-284193c2055f","type":"HelpTool"},{"id":"dc08ebd3-6a70-4b66-9ed5-ab2033b02617","type":"PanTool"},{"id":"261f447f-6e57-4caa-9612-990ac53104cc","type":"WheelZoomTool"},{"id":"ef6a0b65-2aec-4574-8101-1c476620c1ed","type":"BoxZoomTool"},{"id":"4c7d084f-250c-4af4-beb5-bd802fa783d4","type":"SaveTool"},{"id":"6df2cb4a-cb98-4ae4-bb00-2a88c169f1d5","type":"ResetTool"},{"id":"217745ac-c1b5-4fac-a108-b550990c8efa","type":"HelpTool"}]},"id":"f9c919ee-8bdd-4d0f-b48c-bc38b6926c14","type":"ToolbarBox"},{"attributes":{"children":[{"id":"e4f2702d-389c-44d0-b7f1-a01a1d855234","type":"WidgetBox"},{"id":"b2d08de9-8122-4c7e-8580-06583132cad3","type":"WidgetBox"}],"sizing_mode":"scale_width"},"id":"5329528e-3df4-406e-b886-28d673e4447c","type":"Row"},{"attributes":{"children":[{"id":"7fc598d6-b20a-457d-80b4-34bf7c5ca49e","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"5392f54b-cdeb-4555-b378-01c7d6dede56","type":"WidgetBox"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"a6a7460d-9127-40a4-a3b5-041c6162c91d","type":"GlyphRenderer"}]},"id":"f9533df3-a6f2-407a-a408-6a557236dd27","type":"LegendItem"},{"attributes":{"callback":null,"start":0},"id":"ae5f6fd6-f43f-466a-ba47-9ec627c63007","type":"DataRange1d"},{"attributes":{"label":{"value":"df.groupby(0)[1].mean()"},"renderers":[{"id":"05ced829-496d-462f-ae2d-1f5499a1f090","type":"GlyphRenderer"}]},"id":"0dee6c19-e80f-4b2a-8572-c5cd37b26727","type":"LegendItem"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"ce6d9538-d93f-4540-9638-af71fd1def1d","type":"Line"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"07d91c02-e062-456a-9384-315be72b3083","type":"Line"},{"attributes":{"data_source":{"id":"c661d9d5-4983-489a-9fcf-603afdd0f6d9","type":"ColumnDataSource"},"glyph":{"id":"2870733a-83c0-42fa-b0c5-46055057169f","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"21f20435-a99a-4de2-bb0e-d4e943c3e436","type":"Line"},"selection_glyph":null},"id":"acfdfd9a-88eb-4304-8a3e-84611f33f47b","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"001b88c9-3f27-41f4-926b-0ac15ed5689f","type":"Line"},{"attributes":{},"id":"68486794-1408-4221-b928-fa766fa764ad","type":"LinearScale"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"kTbDifc1jEA5B/1PBoKaQOuHU50ntahAZ9QJI5VLtkAx9mM3CDnEQLuRZacBKdBAqmH6cOlv00AR3Nhh5G/eQEoAPNDmhd1A","dtype":"float64","shape":[9]}}},"id":"a923277a-6ebf-49d3-931e-6010777b924e","type":"ColumnDataSource"},{"attributes":{"callback":null,"end":26586.15297054953,"start":0},"id":"749e5bb6-c494-4e2e-9e01-e5861c6f02f1","type":"DataRange1d"},{"attributes":{"line_color":{"value":"#2ca02c"},"x":{"field":"x"},"y":{"field":"y"}},"id":"af8ec2ab-0eb9-4319-8850-85c543cf609e","type":"Line"},{"attributes":{},"id":"d67d8d4b-835a-41e8-8bc5-d4a6faf5158f","type":"LinearScale"},{"attributes":{"data_source":{"id":"b0869052-3aa1-458f-84c4-0ad2af85c8a4","type":"ColumnDataSource"},"glyph":{"id":"001b88c9-3f27-41f4-926b-0ac15ed5689f","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"ce6d9538-d93f-4540-9638-af71fd1def1d","type":"Line"},"selection_glyph":null},"id":"a6a7460d-9127-40a4-a3b5-041c6162c91d","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"},"ticker":{"id":"f9d318ce-04f0-482f-a599-56fd4fa97d31","type":"BasicTicker"}},"id":"940bc7b4-5373-490f-881f-eef70bc28979","type":"Grid"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"4ee4b42b-979d-4f58-9941-87e79c4e041c","type":"Circle"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"e83adf33-b642-416f-b7d2-66d599f504ca","type":"Line"},{"attributes":{"axis_label":"cores","formatter":{"id":"eb928f75-ac1a-440d-a878-1e362607141a","type":"BasicTickFormatter"},"plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"},"ticker":{"id":"89edb50a-f462-4468-9f7d-c3780147d18c","type":"FixedTicker"}},"id":"9ec87ca6-9a84-4edf-84fa-bec88e938f62","type":"LinearAxis"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"5bc49d92-fc97-4b58-a172-03a07173681b","type":"Circle"},{"attributes":{},"id":"f9d318ce-04f0-482f-a599-56fd4fa97d31","type":"BasicTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"CPDOA7wEdkDPvmrzVKmGQPPjMBfneZZAL4RSELzboUAewsNdADiwQGQLuqvxDLlAiDO3aHUuwUBjrjECPpnGQMOz+hDDrsRA","dtype":"float64","shape":[9]}}},"id":"15c59cd6-40c0-409b-b871-6db811ffa5b0","type":"ColumnDataSource"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"89e861d7-44d0-4fd6-b419-f305fd33df7c","type":"BasicTickFormatter"},"plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"},"ticker":{"id":"40bb2014-3905-4a83-bf53-5035bd8bbd4e","type":"BasicTicker"}},"id":"8b50a8f3-cb96-4f46-b0eb-421532888322","type":"LinearAxis"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"9d53358f-a4b9-4b60-ac35-5f0e5f26d9fe","type":"PanTool"},{"id":"71b8f90f-69b5-4a11-b22e-9c8037bd5bef","type":"WheelZoomTool"},{"id":"09ada8fa-169d-49df-abc7-0703b7616c81","type":"BoxZoomTool"},{"id":"168f662e-50de-4018-b25f-82741503df6e","type":"SaveTool"},{"id":"ff50f331-ff6c-4fc5-9f0d-272907ba7131","type":"ResetTool"},{"id":"0a9d28ae-0c46-4fa8-93b9-7586884f78b2","type":"HelpTool"}]},"id":"310269a5-cd66-453b-91ab-8c1a0a8effa2","type":"Toolbar"},{"attributes":{"line_color":{"value":"#2ca02c"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2cbdd32b-6f36-4da1-819d-9f23498a0cf0","type":"Line"},{"attributes":{},"id":"40bb2014-3905-4a83-bf53-5035bd8bbd4e","type":"BasicTicker"},{"attributes":{"below":[{"id":"b9355d3b-be49-47fd-8d7c-aa58437774a1","type":"LinearAxis"}],"left":[{"id":"7f7381b1-b3c1-442b-9895-0807a0393276","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"b9355d3b-be49-47fd-8d7c-aa58437774a1","type":"LinearAxis"},{"id":"7d32d4ca-4bcb-4b99-80f8-4754c9adb392","type":"Grid"},{"id":"7f7381b1-b3c1-442b-9895-0807a0393276","type":"LinearAxis"},{"id":"af6933eb-7eb8-4827-8ca1-0222eae27f31","type":"Grid"},{"id":"31e613bb-109b-4dd8-a7b8-dedb6ac90927","type":"BoxAnnotation"},{"id":"ce4c2571-807d-49e2-86ee-7b9ef2271d9c","type":"Legend"},{"id":"3543525d-36fc-463f-b01a-5ace3e3a5e70","type":"GlyphRenderer"},{"id":"d385e74e-efcb-4bd7-b948-857f407fe29f","type":"GlyphRenderer"},{"id":"a48aa2d3-5a7c-4537-b210-38f11a1832f4","type":"GlyphRenderer"},{"id":"53e417c9-c14d-4f62-b71e-b64f00b18b47","type":"GlyphRenderer"},{"id":"212c18d2-a6f0-4ad8-9c48-a97150375720","type":"GlyphRenderer"},{"id":"297420ff-5aff-4487-b0f0-78eba07a1421","type":"GlyphRenderer"},{"id":"cc17ce54-c27b-4773-ace9-fd26405a4b4d","type":"GlyphRenderer"},{"id":"0e99105b-1eec-4047-8453-f246267675b9","type":"GlyphRenderer"},{"id":"4f423387-fdc4-4b44-b254-02e16e1ed7d5","type":"GlyphRenderer"}],"title":{"id":"b855bdcf-49d0-4831-b74d-e3ae5412f989","type":"Title"},"tool_events":{"id":"721dbc85-e610-47c7-8f41-dda7878cd574","type":"ToolEvents"},"toolbar":{"id":"310269a5-cd66-453b-91ab-8c1a0a8effa2","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"48ea96b9-707e-4d47-8ccb-4694ea2ba5ba","type":"DataRange1d"},"x_scale":{"id":"40f1492c-7169-4025-83b2-48425797ef38","type":"LinearScale"},"y_range":{"id":"c3a76bce-924f-4592-8dca-1e241e089d42","type":"DataRange1d"},"y_scale":{"id":"52e94f31-a4bd-4799-a606-d59624f1d7da","type":"LinearScale"}},"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"PhAgSQGEM0BmSs6U6HdDQAwo6ea6PVNAoNqNGAnLYkDbj4LPiEVyQN1kKI9W54BAZTy4mhPIjED7LEuHcqKWQMQ4SLgPgZ5A","dtype":"float64","shape":[9]}}},"id":"01406b6d-6a17-4881-978b-e7d727a550cb","type":"ColumnDataSource"},{"attributes":{"dimension":1,"plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"},"ticker":{"id":"40bb2014-3905-4a83-bf53-5035bd8bbd4e","type":"BasicTicker"}},"id":"badd4c30-b02a-4b7c-b266-8b9a6136e084","type":"Grid"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"58fe4fa5-dcd4-44c0-8470-313aa0bb0b1d","type":"Line"},{"attributes":{"callback":null,"start":0},"id":"48ea96b9-707e-4d47-8ccb-4694ea2ba5ba","type":"DataRange1d"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"57a5cbde-0274-4268-87f8-613a696ecb16","type":"Circle"},{"attributes":{},"id":"eb928f75-ac1a-440d-a878-1e362607141a","type":"BasicTickFormatter"},{"attributes":{"child":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"26ff1b0e-0ff1-4a7e-be62-eb15afe2b542","type":"Panel"},{"attributes":{},"id":"e8aa3b5e-d639-45de-869e-0d9a1b28a5f9","type":"ToolEvents"},{"attributes":{"data_source":{"id":"1d4b06d5-b304-40e9-8cfd-5b687a0981b5","type":"ColumnDataSource"},"glyph":{"id":"07d91c02-e062-456a-9384-315be72b3083","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"58fe4fa5-dcd4-44c0-8470-313aa0bb0b1d","type":"Line"},"selection_glyph":null},"id":"a881979e-2750-4ccf-b89d-e358d963f201","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"kTbDifc1jEA5B/1PBoKaQOuHU50ntahAZ9QJI5VLtkAx9mM3CDnEQLuRZacBKdBAqmH6cOlv00AR3Nhh5G/eQEoAPNDmhd1A","dtype":"float64","shape":[9]}}},"id":"acde6a51-8f85-4dc7-a6ba-f8d7ad9f2648","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,463070.74804554624]}},"id":"e1013d68-16ec-4e99-89b3-b9cc61b6aaa4","type":"ColumnDataSource"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"6e2d097b-519f-4d25-9d8f-71339b740fee","type":"BoxAnnotation"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"77a721b5-c3cf-4306-aec5-1a831b2890e6","type":"Line"},{"attributes":{"data_source":{"id":"a28d6861-99d3-4706-be92-9be70b1e5cb8","type":"ColumnDataSource"},"glyph":{"id":"2cbdd32b-6f36-4da1-819d-9f23498a0cf0","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"43b4164d-0a5c-489b-ad75-c5850978a99d","type":"Line"},"selection_glyph":null},"id":"494cd700-056c-434d-bb7e-5fd639a6400e","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"}},"id":"9cdbfea0-78a1-4816-95b3-20711d60ba64","type":"PanTool"},{"attributes":{},"id":"2271dbe4-edd0-41c8-b581-78f6706f05cc","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"703f3b02-e1f8-40f8-8191-a6fd37198ded","type":"Circle"},{"attributes":{"plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"},"ticker":{"id":"c7cd4249-3e45-47ad-b403-7086b88c1c1d","type":"LogTicker"}},"id":"e7ef135f-2aa1-4d9b-9c96-514f9a5702e4","type":"Grid"},{"attributes":{"data_source":{"id":"0b519c29-087a-4f44-8156-70db42cbcd01","type":"ColumnDataSource"},"glyph":{"id":"58a16226-cc0a-49f9-8e51-27fd1224a9e5","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"119e9dc5-2f9b-4e29-9aeb-5d23a8de4ccf","type":"Line"},"selection_glyph":null},"id":"81e42002-a8be-4345-b4e1-df093044c5f1","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"01406b6d-6a17-4881-978b-e7d727a550cb","type":"ColumnDataSource"},"glyph":{"id":"57a5cbde-0274-4268-87f8-613a696ecb16","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"703f3b02-e1f8-40f8-8191-a6fd37198ded","type":"Circle"},"selection_glyph":null},"id":"a6539ac4-c610-470f-a3a3-c918c3b7e923","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"}},"id":"d917a161-3ebd-4ff0-9e66-b1890604b6c7","type":"WheelZoomTool"},{"attributes":{"plot":null,"text":"DataFrames: Reductions"},"id":"b855bdcf-49d0-4831-b74d-e3ae5412f989","type":"Title"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"78faa5a9-3f86-4363-9f9e-f3ec7d2e2979","type":"FixedTicker"},{"attributes":{"overlay":{"id":"6e2d097b-519f-4d25-9d8f-71339b740fee","type":"BoxAnnotation"},"plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"}},"id":"c2e5b325-c321-4c08-b3da-cdf89da70574","type":"BoxZoomTool"},{"attributes":{"axis_label":"cores","formatter":{"id":"bf3acc1e-c75c-4182-8881-12c577ee7678","type":"LogTickFormatter"},"plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"},"ticker":{"id":"7a39f017-1a6a-48be-b9dc-2cfcffd5a9d0","type":"FixedTicker"}},"id":"1a1d9b6b-53b1-43ed-90a4-9884182fa0f3","type":"LogAxis"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"1Kb//XpDnED+4P/fNNapQHf4V3ait6lAprCFQjc6r0DGsrWLmNarQOaB18HP4q1ArjxETcD/rEC2aNo+EvGrQGxqBt5Qg6tA","dtype":"float64","shape":[9]}}},"id":"ba10e327-d886-4fb0-83d6-95a0d28b2077","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"}},"id":"60a7d2f5-41bc-4215-ac31-864b2bf34829","type":"SaveTool"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"0bc873c0-748f-492a-a171-c53189241066","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"1Kb//XpDnED+4P/fNNapQHf4V3ait6lAprCFQjc6r0DGsrWLmNarQOaB18HP4q1ArjxETcD/rEC2aNo+EvGrQGxqBt5Qg6tA","dtype":"float64","shape":[9]}}},"id":"a28d6861-99d3-4706-be92-9be70b1e5cb8","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"}},"id":"66346441-b239-489b-900f-c4d4660d7478","type":"ResetTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"43b4164d-0a5c-489b-ad75-c5850978a99d","type":"Line"},{"attributes":{"plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"}},"id":"9e9eec61-23ba-4987-af83-bc09e49775bd","type":"HelpTool"},{"attributes":{"callback":null,"end":54450.69515151354,"start":0},"id":"30b0e041-8696-46b0-afac-b993237dd5e2","type":"DataRange1d"},{"attributes":{"data_source":{"id":"e1013d68-16ec-4e99-89b3-b9cc61b6aaa4","type":"ColumnDataSource"},"glyph":{"id":"92b1ebc2-f5c3-4338-aa83-522144f6edf8","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"e83adf33-b642-416f-b7d2-66d599f504ca","type":"Line"},"selection_glyph":null},"id":"abc7b321-64df-4b9f-af6b-1c535dfa2c81","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"0/MveXGpk0CwnWLotLafQFzSKK/0oatAGQzzlhiFvEBuV2Og1WzIQFHk16Cvv8pAs1osroIq1EBv606nwBHYQN/8RMqJ9tlA","dtype":"float64","shape":[9]}}},"id":"1d4b06d5-b304-40e9-8cfd-5b687a0981b5","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"acde6a51-8f85-4dc7-a6ba-f8d7ad9f2648","type":"ColumnDataSource"},"glyph":{"id":"5bc49d92-fc97-4b58-a172-03a07173681b","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"0bc873c0-748f-492a-a171-c53189241066","type":"Circle"},"selection_glyph":null},"id":"d7a8e78a-acbf-40cf-8053-6ee0e66f2b88","type":"GlyphRenderer"},{"attributes":{"label":{"value":"1us"},"renderers":[{"id":"494cd700-056c-434d-bb7e-5fd639a6400e","type":"GlyphRenderer"}]},"id":"0cb38f80-7295-488c-94f0-6da0bc31d650","type":"LegendItem"},{"attributes":{"label":{"value":"x[12345, 23456]"},"renderers":[{"id":"bbf95936-5035-451e-a57a-3569ca7497d0","type":"GlyphRenderer"}]},"id":"aea13c1c-9ff9-4089-b0a7-e253c556541e","type":"LegendItem"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"51bde773-d544-40ca-95ac-f509ded2ce8f","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,4996.005022052732]}},"id":"4b8c6c40-6a39-4ed8-bea3-cd03b5cdcf20","type":"ColumnDataSource"},{"attributes":{},"id":"89e861d7-44d0-4fd6-b419-f305fd33df7c","type":"BasicTickFormatter"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,90187.75092977297]}},"id":"c661d9d5-4983-489a-9fcf-603afdd0f6d9","type":"ColumnDataSource"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"4f57502d-f735-4ccc-82ca-e963c02312e8","type":"Circle"},{"attributes":{},"id":"20705683-411c-4b3d-8b0f-bae6aad074a7","type":"LogScale"},{"attributes":{"data_source":{"id":"ce4017e6-9e2d-42c6-90aa-b10b01a952d1","type":"ColumnDataSource"},"glyph":{"id":"7a2b565a-76a5-47cc-b363-6c71c9e408be","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"79773228-b238-46de-a46e-225b8a19bdec","type":"Circle"},"selection_glyph":null},"id":"1220894e-d5c5-4272-bf99-4f2213703bda","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"ba10e327-d886-4fb0-83d6-95a0d28b2077","type":"ColumnDataSource"},"glyph":{"id":"4f57502d-f735-4ccc-82ca-e963c02312e8","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1e078d9d-e2c4-45ca-8d6f-79d782b698b9","type":"Circle"},"selection_glyph":null},"id":"ace2b496-86ba-4ad5-a5b7-25ca170cf0ff","type":"GlyphRenderer"},{"attributes":{"items":[{"id":"0f3ae3ee-88b3-4931-a341-7e5f4501bca1","type":"LegendItem"},{"id":"4f1c1d69-f1c9-4f18-a4ff-7b464185c69a","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"}},"id":"12862a29-a060-4fff-b654-18b2c2b74aa7","type":"Legend"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"21f20435-a99a-4de2-bb0e-d4e943c3e436","type":"Line"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"1e078d9d-e2c4-45ca-8d6f-79d782b698b9","type":"Circle"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"c4dddac3-6ae5-4394-81ee-7b43d84e191c","type":"Line"},{"attributes":{"callback":null,"end":31167.568472113522,"start":0},"id":"c3a76bce-924f-4592-8dca-1e241e089d42","type":"DataRange1d"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"92b1ebc2-f5c3-4338-aa83-522144f6edf8","type":"Line"},{"attributes":{"label":{"value":"x.std()"},"renderers":[{"id":"a881979e-2750-4ccf-b89d-e358d963f201","type":"GlyphRenderer"}]},"id":"0f3ae3ee-88b3-4931-a341-7e5f4501bca1","type":"LegendItem"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"2870733a-83c0-42fa-b0c5-46055057169f","type":"Line"},{"attributes":{"data_source":{"id":"2366c833-409a-45a4-a48d-3dafbf3758b3","type":"ColumnDataSource"},"glyph":{"id":"3b61a9c5-5f13-478d-a23a-c2aec972ca77","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2bc79701-541f-4812-aed0-f3294aef0fcd","type":"Circle"},"selection_glyph":null},"id":"60298c59-be4e-4074-a111-cf48a70a3975","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"58a16226-cc0a-49f9-8e51-27fd1224a9e5","type":"Line"},{"attributes":{},"id":"40f1492c-7169-4025-83b2-48425797ef38","type":"LinearScale"},{"attributes":{"data_source":{"id":"aa15e897-6c86-46d5-9c8a-1976053e42e0","type":"ColumnDataSource"},"glyph":{"id":"bf1999e5-e42b-464b-9db0-ea3083c3c1d1","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"7abab916-ce13-45b2-b8d4-a4898c863064","type":"Line"},"selection_glyph":null},"id":"7ab82ebf-e918-475c-bc9e-b885ae95fd38","type":"GlyphRenderer"},{"attributes":{"callback":null,"start":0},"id":"99879e3e-cb86-4ed8-a9ec-b60d8ff48f74","type":"DataRange1d"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"txeRHSzYhUCjQkyym/ODQDXnP5WM5IpAL2chJm3jhEB0ZkdqW+WBQI2SGi6KzoBAUViGGKc/hEDneAuUg4eCQAnnNrBvOH1A","dtype":"float64","shape":[9]}}},"id":"5649e48b-92ca-4927-a7df-20ef2fd756e0","type":"ColumnDataSource"},{"attributes":{"num_minor_ticks":10},"id":"c7cd4249-3e45-47ad-b403-7086b88c1c1d","type":"LogTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"gT1T0rcmkkBfZLyai4CeQPrpFfFJcqpAtJAQZsY2tkD936fnDJnCQEN9+GXL79BAP/LDy9Ijz0A7bbDIfRrUQJv5zSYbI9NA","dtype":"float64","shape":[9]}}},"id":"b75993a1-dab9-4167-a4ff-744b0f50fd93","type":"ColumnDataSource"},{"attributes":{"items":[{"id":"d82896f9-20c8-4dde-9f78-84e02a60992d","type":"LegendItem"},{"id":"975dd06b-ac52-4693-963f-4c915b65d961","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"}},"id":"b142de0f-ddfe-4ba6-9b4e-21e324ef3bb7","type":"Legend"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"623ace2e-2755-4bd6-acb7-31ce376f74e0","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"119e9dc5-2f9b-4e29-9aeb-5d23a8de4ccf","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"1f09cd72-46d5-44f3-bc9c-3e031e52d214","type":"Line"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2bc79701-541f-4812-aed0-f3294aef0fcd","type":"Circle"},{"attributes":{"items":[{"id":"aea13c1c-9ff9-4089-b0a7-e253c556541e","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"}},"id":"2597e3d6-7fdb-4bf5-b6f7-59aa315a357d","type":"Legend"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"4251447a-159a-41b2-933e-dc4d435891ab","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"29f934af-0a2f-475c-b30f-41c636927b76","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"gT1T0rcmkkBfZLyai4CeQPrpFfFJcqpAtJAQZsY2tkD936fnDJnCQEN9+GXL79BAP/LDy9Ijz0A7bbDIfRrUQJv5zSYbI9NA","dtype":"float64","shape":[9]}}},"id":"0b519c29-087a-4f44-8156-70db42cbcd01","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,231102.94226687078]}},"id":"32c9197d-5315-41b6-9e6c-c2737380b947","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"4b8c6c40-6a39-4ed8-bea3-cd03b5cdcf20","type":"ColumnDataSource"},"glyph":{"id":"623ace2e-2755-4bd6-acb7-31ce376f74e0","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"29f934af-0a2f-475c-b30f-41c636927b76","type":"Line"},"selection_glyph":null},"id":"60b83405-6ab4-4cc9-a41c-02803e9efe91","type":"GlyphRenderer"},{"attributes":{"label":{"value":"x.std(axis=0)"},"renderers":[{"id":"81e42002-a8be-4345-b4e1-df093044c5f1","type":"GlyphRenderer"}]},"id":"4f1c1d69-f1c9-4f18-a4ff-7b464185c69a","type":"LegendItem"},{"attributes":{},"id":"52e94f31-a4bd-4799-a606-d59624f1d7da","type":"LinearScale"},{"attributes":{"callback":null,"start":0},"id":"59143419-5a59-4079-b1b6-0baec3f3748d","type":"DataRange1d"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"90385b33-d105-4e0d-a88c-a8eab6abc79b","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"663560ce-17e4-47cd-9a05-eb90e0101f4c","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"txeRHSzYhUCjQkyym/ODQDXnP5WM5IpAL2chJm3jhEB0ZkdqW+WBQI2SGi6KzoBAUViGGKc/hEDneAuUg4eCQAnnNrBvOH1A","dtype":"float64","shape":[9]}}},"id":"26b4c843-d146-42c6-9f7c-a5c786a8ed80","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"f9ceb0bb-d6df-4bd8-99d2-19e4daff9739","type":"LinearAxis"}],"left":[{"id":"d69ad060-24dc-4df7-b601-5ad79928397a","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"f9ceb0bb-d6df-4bd8-99d2-19e4daff9739","type":"LinearAxis"},{"id":"c35e9a65-e8cf-47d5-ae34-2bcc54919712","type":"Grid"},{"id":"d69ad060-24dc-4df7-b601-5ad79928397a","type":"LinearAxis"},{"id":"c0978681-84c6-4bb7-bdd3-57f79db94c3c","type":"Grid"},{"id":"d8b19c6c-70f9-41cb-aba5-a65bbc695962","type":"BoxAnnotation"},{"id":"17dd8ac4-5015-44f3-b808-be58f596fc84","type":"Legend"},{"id":"587410b9-0902-470c-bf93-59d3ebbd3ed6","type":"GlyphRenderer"},{"id":"60298c59-be4e-4074-a111-cf48a70a3975","type":"GlyphRenderer"},{"id":"3e3a4880-9622-4757-8216-1579e675e963","type":"GlyphRenderer"},{"id":"6cdd9453-036b-46a1-8702-56743bbbbb70","type":"GlyphRenderer"},{"id":"d1ebdf62-fdde-4a98-b4cb-020bb3f8a1a8","type":"GlyphRenderer"},{"id":"456a4a3c-1e23-4e6a-bedd-81c07d21ef13","type":"GlyphRenderer"},{"id":"709df9d8-d49b-4549-8089-964dc4ed02d1","type":"GlyphRenderer"},{"id":"0d73ec87-f247-42dd-aa8e-6a30c4849c0e","type":"GlyphRenderer"},{"id":"36248ec8-5457-4eb1-adb0-908e0f6b885e","type":"GlyphRenderer"}],"title":{"id":"967319c6-0c31-492f-b322-f8f817477f2d","type":"Title"},"tool_events":{"id":"e8aa3b5e-d639-45de-869e-0d9a1b28a5f9","type":"ToolEvents"},"toolbar":{"id":"f5b16683-200e-4e29-81cb-326fec0bed88","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"59143419-5a59-4079-b1b6-0baec3f3748d","type":"DataRange1d"},"x_scale":{"id":"0f59b806-374d-4a2d-ab91-87a07c54fe51","type":"LinearScale"},"y_range":{"id":"07e1eb75-b4b6-44ce-a243-c0bd7102bfa3","type":"DataRange1d"},"y_scale":{"id":"9b40eff8-fd36-462b-ba68-b6b1ff7caee3","type":"LinearScale"}},"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"fdf3243b-03c6-4e71-8bb1-8a5bc2723d4e","type":"Circle"},{"attributes":{},"id":"721dbc85-e610-47c7-8f41-dda7878cd574","type":"ToolEvents"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"8946c13e-3fd9-4cd2-ad6b-048b3f3d3184","type":"PanTool"},{"id":"18467990-49d6-4857-8698-0ecf850b8dae","type":"WheelZoomTool"},{"id":"f12f9873-2e5a-4d0e-b72a-022169603cba","type":"BoxZoomTool"},{"id":"70ca44b0-73ae-499b-bf6e-a24ee883237a","type":"SaveTool"},{"id":"0888f93d-b6d7-486b-b5f6-52007244ea56","type":"ResetTool"},{"id":"12b05cc5-f225-412a-a571-bb01258df41c","type":"HelpTool"}]},"id":"f5b16683-200e-4e29-81cb-326fec0bed88","type":"Toolbar"},{"attributes":{"data_source":{"id":"8f276392-afce-4e80-935d-28392f36571b","type":"ColumnDataSource"},"glyph":{"id":"90385b33-d105-4e0d-a88c-a8eab6abc79b","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f0ebf59d-e2e3-4945-9f9e-9f549d51541a","type":"Line"},"selection_glyph":null},"id":"7a8d5d6f-8fb1-4d50-88a8-5a53336ee7fa","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"32c9197d-5315-41b6-9e6c-c2737380b947","type":"ColumnDataSource"},"glyph":{"id":"4251447a-159a-41b2-933e-dc4d435891ab","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1f09cd72-46d5-44f3-bc9c-3e031e52d214","type":"Line"},"selection_glyph":null},"id":"0ff3ae63-4217-4531-910b-ebe12ee6c8bd","type":"GlyphRenderer"},{"attributes":{},"id":"f7835f9e-6dfd-43fc-a5c2-b8ac698081c6","type":"BasicTickFormatter"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"331fcea2-8946-4bfe-9335-c9556c0aac3b","type":"Circle"},{"attributes":{"plot":null,"text":"Tasks: Embarrassingly Parallel"},"id":"967319c6-0c31-492f-b322-f8f817477f2d","type":"Title"},{"attributes":{"data_source":{"id":"b75993a1-dab9-4167-a4ff-744b0f50fd93","type":"ColumnDataSource"},"glyph":{"id":"fdf3243b-03c6-4e71-8bb1-8a5bc2723d4e","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"331fcea2-8946-4bfe-9335-c9556c0aac3b","type":"Circle"},"selection_glyph":null},"id":"72786059-6377-45c0-9914-95820228350f","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"3ba055f8-c19e-4f01-80ac-432301ad1555","type":"Line"},{"attributes":{},"id":"0f59b806-374d-4a2d-ab91-87a07c54fe51","type":"LinearScale"},{"attributes":{"ticker":null},"id":"f9fcb2a3-381c-4e09-99c0-5f86896d31d0","type":"LogTickFormatter"},{"attributes":{"callback":null,"end":3997.1079293993125,"start":0},"id":"07e1eb75-b4b6-44ce-a243-c0bd7102bfa3","type":"DataRange1d"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"txeRHSzYhUCjQkyym/ODQDXnP5WM5IpAL2chJm3jhEB0ZkdqW+WBQI2SGi6KzoBAUViGGKc/hEDneAuUg4eCQAnnNrBvOH1A","dtype":"float64","shape":[9]}}},"id":"9dce6d6a-a1f8-4fe1-a323-dee8ffeb69ab","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"9dde85bf-6688-4bae-b751-cbf4ecd3c2bd","type":"Line"},{"attributes":{},"id":"9b40eff8-fd36-462b-ba68-b6b1ff7caee3","type":"LinearScale"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,322140.36834698654]}},"id":"8f276392-afce-4e80-935d-28392f36571b","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"},"ticker":{"id":"6d59dcbf-1771-4e95-bb38-55a2b41e58dd","type":"BasicTicker"}},"id":"c35e9a65-e8cf-47d5-ae34-2bcc54919712","type":"Grid"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"f0ebf59d-e2e3-4945-9f9e-9f549d51541a","type":"Line"},{"attributes":{"axis_label":"cores","formatter":{"id":"f7835f9e-6dfd-43fc-a5c2-b8ac698081c6","type":"BasicTickFormatter"},"plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"},"ticker":{"id":"20d3ccb9-5f8a-499b-baf5-3dcdf25ae187","type":"FixedTicker"}},"id":"f9ceb0bb-d6df-4bd8-99d2-19e4daff9739","type":"LinearAxis"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"5306f2a4-4a35-4dd1-9d4b-6a683dbca024","type":"Line"},{"attributes":{"data_source":{"id":"a923277a-6ebf-49d3-931e-6010777b924e","type":"ColumnDataSource"},"glyph":{"id":"af8ec2ab-0eb9-4319-8850-85c543cf609e","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"77a721b5-c3cf-4306-aec5-1a831b2890e6","type":"Line"},"selection_glyph":null},"id":"05ced829-496d-462f-ae2d-1f5499a1f090","type":"GlyphRenderer"},{"attributes":{},"id":"6d59dcbf-1771-4e95-bb38-55a2b41e58dd","type":"BasicTicker"},{"attributes":{"data_source":{"id":"6010cab9-9325-4735-a3f3-8239177e6e8b","type":"ColumnDataSource"},"glyph":{"id":"5306f2a4-4a35-4dd1-9d4b-6a683dbca024","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"880fff54-54b2-491c-b7e2-bf9d6ca7ad35","type":"Line"},"selection_glyph":null},"id":"123e0dbf-a6dd-488a-88e8-eadf20a2fe99","type":"GlyphRenderer"},{"attributes":{"axis_label":"tasks/s","formatter":{"id":"4e1f28d6-af74-478c-899b-a98e1cc3e250","type":"BasicTickFormatter"},"plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"},"ticker":{"id":"e3c6b138-1bae-4b8f-ad55-97d925753006","type":"BasicTicker"}},"id":"d69ad060-24dc-4df7-b601-5ad79928397a","type":"LinearAxis"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"880fff54-54b2-491c-b7e2-bf9d6ca7ad35","type":"Line"},{"attributes":{},"id":"e3c6b138-1bae-4b8f-ad55-97d925753006","type":"BasicTicker"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a2174dc6-19a1-44b0-811a-4d939b79bdec","type":"Line"},{"attributes":{"dimension":1,"plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"},"ticker":{"id":"e3c6b138-1bae-4b8f-ad55-97d925753006","type":"BasicTicker"}},"id":"c0978681-84c6-4bb7-bdd3-57f79db94c3c","type":"Grid"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"89edb50a-f462-4468-9f7d-c3780147d18c","type":"FixedTicker"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"828a515a-f371-424b-b63a-aa1088e19bd7","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,297389.95539566135]}},"id":"6010cab9-9325-4735-a3f3-8239177e6e8b","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"33c8a65f-1b5c-4354-8f44-cc9f8b4db9f0","type":"ColumnDataSource"},"glyph":{"id":"828a515a-f371-424b-b63a-aa1088e19bd7","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"663560ce-17e4-47cd-9a05-eb90e0101f4c","type":"Line"},"selection_glyph":null},"id":"587410b9-0902-470c-bf93-59d3ebbd3ed6","type":"GlyphRenderer"},{"attributes":{"ticker":null},"id":"7823bb98-4116-4089-9937-625fcb9679f0","type":"LogTickFormatter"},{"attributes":{"child":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"e36df08d-6b52-45fd-90e8-47b2576ad722","type":"Panel"},{"attributes":{"below":[{"id":"5242f714-cfa3-4375-8d8b-c774d1daa5cc","type":"LogAxis"}],"left":[{"id":"ffe59c70-5de8-4542-8ed3-f20a2c9d112a","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"5242f714-cfa3-4375-8d8b-c774d1daa5cc","type":"LogAxis"},{"id":"be11599d-6a02-4b3f-94bc-d8073d089be2","type":"Grid"},{"id":"ffe59c70-5de8-4542-8ed3-f20a2c9d112a","type":"LogAxis"},{"id":"bb28c07a-adf0-4c5f-8192-0278a75f4a80","type":"Grid"},{"id":"0cc6521b-a666-4a7b-a5d3-503c5254fe2c","type":"BoxAnnotation"},{"id":"2597e3d6-7fdb-4bf5-b6f7-59aa315a357d","type":"Legend"},{"id":"bbf95936-5035-451e-a57a-3569ca7497d0","type":"GlyphRenderer"},{"id":"48a027b0-fa86-43fd-86fc-e465a24274e1","type":"GlyphRenderer"},{"id":"c97583c4-51e9-4cff-9769-b4b540deaac8","type":"GlyphRenderer"}],"title":{"id":"b4046279-007b-408b-8cf8-fd84395c0440","type":"Title"},"tool_events":{"id":"bd08573e-dca8-4504-9fde-ba11b52f83e2","type":"ToolEvents"},"toolbar":{"id":"a38a7d79-9cee-46a7-b6ec-37c882d77164","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"601a8953-512e-4f09-b0c0-d1b38f8ea0d0","type":"DataRange1d"},"x_scale":{"id":"0b49eb6f-8950-4bb3-a051-c1546acb1148","type":"LogScale"},"y_range":{"id":"28959523-898e-4099-a510-a779775606a4","type":"DataRange1d"},"y_scale":{"id":"5aa2abcf-9ad7-4f75-8dff-2d63f2be6008","type":"LogScale"}},"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"d8b19c6c-70f9-41cb-aba5-a65bbc695962","type":"BoxAnnotation"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"37525836-a385-4ab9-81df-19e6291ffdc9","type":"Panel"},{"id":"51a14984-ff50-4ffd-9f85-404e8b4bfba6","type":"Panel"}]},"id":"4311ab7e-c88e-42cf-b077-bfd6acbda2f0","type":"Tabs"},{"attributes":{"plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"}},"id":"8946c13e-3fd9-4cd2-ad6b-048b3f3d3184","type":"PanTool"},{"attributes":{"child":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"},"title":"log"},"id":"37525836-a385-4ab9-81df-19e6291ffdc9","type":"Panel"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"w1YWXnOt/z84PQvNaIsPQIhEPP1NRB9ArYqH3f3CLkDSt1Z9g8U9QH5TAs78FU1AkemwSLPlVkAELKWLNq1mQC1uH4c19HBA","dtype":"float64","shape":[9]}}},"id":"2366c833-409a-45a4-a48d-3dafbf3758b3","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"41b4c7b8-3e47-4ce9-ba5c-75ab1567adb8","type":"Line"},{"attributes":{"plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"}},"id":"18467990-49d6-4857-8698-0ecf850b8dae","type":"WheelZoomTool"},{"attributes":{"data_source":{"id":"26b4c843-d146-42c6-9f7c-a5c786a8ed80","type":"ColumnDataSource"},"glyph":{"id":"c0faf656-4336-42f4-a308-ab59b7805475","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"41b4c7b8-3e47-4ce9-ba5c-75ab1567adb8","type":"Line"},"selection_glyph":null},"id":"bbf95936-5035-451e-a57a-3569ca7497d0","type":"GlyphRenderer"},{"attributes":{"overlay":{"id":"d8b19c6c-70f9-41cb-aba5-a65bbc695962","type":"BoxAnnotation"},"plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"}},"id":"f12f9873-2e5a-4d0e-b72a-022169603cba","type":"BoxZoomTool"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"c0faf656-4336-42f4-a308-ab59b7805475","type":"Line"},{"attributes":{"plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"}},"id":"70ca44b0-73ae-499b-bf6e-a24ee883237a","type":"SaveTool"},{"attributes":{"plot":null,"text":"Arrays: Random Access"},"id":"b4046279-007b-408b-8cf8-fd84395c0440","type":"Title"},{"attributes":{"plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"}},"id":"0888f93d-b6d7-486b-b5f6-52007244ea56","type":"ResetTool"},{"attributes":{"callback":null,"start":0},"id":"601a8953-512e-4f09-b0c0-d1b38f8ea0d0","type":"DataRange1d"},{"attributes":{"plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"}},"id":"12b05cc5-f225-412a-a571-bb01258df41c","type":"HelpTool"},{"attributes":{},"id":"bd08573e-dca8-4504-9fde-ba11b52f83e2","type":"ToolEvents"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"w1YWXnOt/z84PQvNaIsPQIhEPP1NRB9ArYqH3f3CLkDSt1Z9g8U9QH5TAs78FU1AkemwSLPlVkAELKWLNq1mQC1uH4c19HBA","dtype":"float64","shape":[9]}}},"id":"33c8a65f-1b5c-4354-8f44-cc9f8b4db9f0","type":"ColumnDataSource"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"d7e00d52-b6a0-43d3-b2ce-aba245b42337","type":"PanTool"},{"id":"b288bf15-ef2e-4945-9eb4-ccaf8cd6c334","type":"WheelZoomTool"},{"id":"6007b073-348b-41bc-a701-31198057ecfe","type":"BoxZoomTool"},{"id":"2a2d4a72-6109-438e-aa25-4a5692f74faf","type":"SaveTool"},{"id":"d377ce77-c83a-4022-83a8-021b1f1aa6b0","type":"ResetTool"},{"id":"16a5b5ca-891a-4048-9e4c-749d27fa4e99","type":"HelpTool"}]},"id":"a38a7d79-9cee-46a7-b6ec-37c882d77164","type":"Toolbar"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"PhAgSQGEM0BmSs6U6HdDQAwo6ea6PVNAoNqNGAnLYkDbj4LPiEVyQN1kKI9W54BAZTy4mhPIjED7LEuHcqKWQMQ4SLgPgZ5A","dtype":"float64","shape":[9]}}},"id":"43cd3931-9b82-4894-90ca-dc205db37be1","type":"ColumnDataSource"},{"attributes":{"num_minor_ticks":10},"id":"25639941-7512-4fdc-a73b-680bf1c2b0c4","type":"LogTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,123285.74943667026]}},"id":"c6b1dde5-997a-42d4-a3be-0099f9fafcca","type":"ColumnDataSource"},{"attributes":{},"id":"4e1f28d6-af74-478c-899b-a98e1cc3e250","type":"BasicTickFormatter"},{"attributes":{"num_minor_ticks":10},"id":"180b269d-1945-4fe3-a9a4-96715b0344ae","type":"LogTicker"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"3b61a9c5-5f13-478d-a23a-c2aec972ca77","type":"Circle"},{"attributes":{"callback":null,"end":860.5686440460619,"start":0},"id":"28959523-898e-4099-a510-a779775606a4","type":"DataRange1d"},{"attributes":{"items":[{"id":"89a6234b-fee7-4b95-ae76-2a28b32ccfb9","type":"LegendItem"},{"id":"3dc9f913-a083-4fee-9bdb-73613184eac0","type":"LegendItem"},{"id":"a8dc3374-6ebe-49de-b7b0-c9600eb77fb9","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"6340551f-85a0-416d-aac2-8c0234cd2408","subtype":"Figure","type":"Plot"}},"id":"17dd8ac4-5015-44f3-b808-be58f596fc84","type":"Legend"},{"attributes":{"dimension":1,"plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"},"ticker":{"id":"180b269d-1945-4fe3-a9a4-96715b0344ae","type":"LogTicker"}},"id":"bb28c07a-adf0-4c5f-8192-0278a75f4a80","type":"Grid"},{"attributes":{"ticker":null},"id":"0ec83177-9fe3-476b-aef4-91a0528ef45d","type":"LogTickFormatter"},{"attributes":{"plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"},"ticker":{"id":"25639941-7512-4fdc-a73b-680bf1c2b0c4","type":"LogTicker"}},"id":"be11599d-6a02-4b3f-94bc-d8073d089be2","type":"Grid"},{"attributes":{"label":{"value":"1s"},"renderers":[{"id":"587410b9-0902-470c-bf93-59d3ebbd3ed6","type":"GlyphRenderer"}]},"id":"89a6234b-fee7-4b95-ae76-2a28b32ccfb9","type":"LegendItem"},{"attributes":{},"id":"0b49eb6f-8950-4bb3-a051-c1546acb1148","type":"LogScale"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"0ca8d799-8349-44ac-a2a0-a2d717114aca","type":"Line"},{"attributes":{"axis_label":"cores","formatter":{"id":"7823bb98-4116-4089-9937-625fcb9679f0","type":"LogTickFormatter"},"plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"},"ticker":{"id":"481c2585-6dc3-4cc1-bd72-f61b21d604e8","type":"FixedTicker"}},"id":"5242f714-cfa3-4375-8d8b-c774d1daa5cc","type":"LogAxis"},{"attributes":{"data_source":{"id":"43cd3931-9b82-4894-90ca-dc205db37be1","type":"ColumnDataSource"},"glyph":{"id":"0ca8d799-8349-44ac-a2a0-a2d717114aca","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"b8402b64-0090-41e8-b7dd-10e6ce8ed190","type":"Line"},"selection_glyph":null},"id":"3e3a4880-9622-4757-8216-1579e675e963","type":"GlyphRenderer"},{"attributes":{},"id":"5aa2abcf-9ad7-4f75-8dff-2d63f2be6008","type":"LogScale"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b8402b64-0090-41e8-b7dd-10e6ce8ed190","type":"Line"},{"attributes":{"axis_label":"bytes/s","formatter":{"id":"f9fcb2a3-381c-4e09-99c0-5f86896d31d0","type":"LogTickFormatter"},"plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"},"ticker":{"id":"180b269d-1945-4fe3-a9a4-96715b0344ae","type":"LogTicker"}},"id":"ffe59c70-5de8-4542-8ed3-f20a2c9d112a","type":"LogAxis"},{"attributes":{"plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"},"ticker":{"id":"2babd4e6-afe8-471e-bc2a-78e938844e28","type":"LogTicker"}},"id":"faf2ba21-d806-4401-b08c-f410365985c0","type":"Grid"},{"attributes":{"num_minor_ticks":10},"id":"2babd4e6-afe8-471e-bc2a-78e938844e28","type":"LogTicker"},{"attributes":{"num_minor_ticks":10},"id":"417d361c-4a40-4733-9159-5f1811af26b7","type":"LogTicker"},{"attributes":{},"id":"ac0e2ba7-9ee1-4bea-91e9-941fa39bd039","type":"LogScale"},{"attributes":{"data_source":{"id":"a68fcac2-6ff7-4160-ab3f-ef566bea5cbb","type":"ColumnDataSource"},"glyph":{"id":"18874344-f743-48f0-b079-2842f76113a4","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"ebe800c9-1421-4745-b177-d089dafce886","type":"Line"},"selection_glyph":null},"id":"a34be81d-c82c-49d1-a9f4-8a1badfe7633","type":"GlyphRenderer"},{"attributes":{"dimension":1,"plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"},"ticker":{"id":"417d361c-4a40-4733-9159-5f1811af26b7","type":"LogTicker"}},"id":"8960a848-f444-45e4-b72b-b24fd0383d3e","type":"Grid"},{"attributes":{"label":{"value":"x + x.T"},"renderers":[{"id":"d5fcae1d-47da-48ad-b0be-3810b2422c05","type":"GlyphRenderer"}]},"id":"3b9f743b-42cd-47ea-b43e-100516cbdeda","type":"LegendItem"},{"attributes":{"items":[{"id":"3b9f743b-42cd-47ea-b43e-100516cbdeda","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"}},"id":"9d47119f-4b80-4765-8852-50252e2f4aca","type":"Legend"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"5mBoSrF9l0Bna2xc6/uUQD2eEyk3/Z1A41+WwWA8rkCg3qY5Aga3QAVA74snN8NAncj380uyxEDOuHXJpNfQQN8hVioyK9NA","dtype":"float64","shape":[9]}}},"id":"4a4de69b-8e72-4fd9-8190-3e4c0b557405","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"eb0e208c-28e1-4479-bc5b-348fb9762087","type":"ColumnDataSource"},"glyph":{"id":"368751b3-85a8-4719-9b67-3f8e54c728eb","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3d141fb6-7f10-43b8-8df2-de69f45d185d","type":"Line"},"selection_glyph":null},"id":"0845f557-d6e7-420f-9522-e6c54163a1cf","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"}},"id":"8361b22b-3ff7-4956-88ad-047a13352874","type":"PanTool"},{"attributes":{"data_source":{"id":"4a4de69b-8e72-4fd9-8190-3e4c0b557405","type":"ColumnDataSource"},"glyph":{"id":"aaad284f-67f6-4517-a94f-cadc721226eb","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"186312de-983f-4edf-ae08-fb5ffefa454d","type":"Circle"},"selection_glyph":null},"id":"52752298-39d9-4847-892a-1eba3a73b48b","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"}},"id":"775682b6-14e9-4776-8728-d6245765d7d7","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"70ff432f-e2c0-4f3d-8740-3a64d1b9851b","type":"BoxAnnotation"},"plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"}},"id":"ed4b4a35-3f55-4984-b0c8-a056878f6a04","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"}},"id":"470cd535-e7e1-4478-b54d-b49a97059204","type":"SaveTool"},{"attributes":{"plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"}},"id":"3ce9e121-6fd7-401f-a547-da593e4dc77b","type":"ResetTool"},{"attributes":{"plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"}},"id":"16d88d36-65a2-4f3e-b237-11a79023b49a","type":"HelpTool"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"aaad284f-67f6-4517-a94f-cadc721226eb","type":"Circle"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"186312de-983f-4edf-ae08-fb5ffefa454d","type":"Circle"},{"attributes":{"label":{"value":"x + x.T"},"renderers":[{"id":"578be135-9e3c-48f2-b070-14bea88b02d1","type":"GlyphRenderer"}]},"id":"df99970f-4041-44f8-b3a0-0bf1e59c404e","type":"LegendItem"},{"attributes":{"ticker":null},"id":"fb147d32-4323-41ae-9418-c219938a98fc","type":"LogTickFormatter"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"368751b3-85a8-4719-9b67-3f8e54c728eb","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"3d141fb6-7f10-43b8-8df2-de69f45d185d","type":"Line"},{"attributes":{"plot":null,"text":"Arrays: Bulk Communication"},"id":"1fdc5123-d219-45c3-b368-ae3d861946d2","type":"Title"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"baf0ecde-67cc-4c97-afc6-2208995fddb4","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,384876.3226637974]}},"id":"eb0e208c-28e1-4479-bc5b-348fb9762087","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"c7cad613-5c33-42bc-82d2-9efb32eaa493","type":"LinearAxis"}],"left":[{"id":"bcd530b5-5ba1-432f-ad2e-5b552403d553","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"c7cad613-5c33-42bc-82d2-9efb32eaa493","type":"LinearAxis"},{"id":"71d72d02-5d18-4b43-8947-6c8922496a2d","type":"Grid"},{"id":"bcd530b5-5ba1-432f-ad2e-5b552403d553","type":"LinearAxis"},{"id":"42f34310-41c5-4e5b-8ab3-445c347cc2e7","type":"Grid"},{"id":"8dfd84f0-a5b6-4f38-8e13-8b69195e9d75","type":"BoxAnnotation"},{"id":"79e12eb2-6783-4266-9832-ac658476172b","type":"Legend"},{"id":"578be135-9e3c-48f2-b070-14bea88b02d1","type":"GlyphRenderer"},{"id":"fd8659b9-5774-4ade-9016-a647c66e4fda","type":"GlyphRenderer"},{"id":"a34be81d-c82c-49d1-a9f4-8a1badfe7633","type":"GlyphRenderer"}],"title":{"id":"1fdc5123-d219-45c3-b368-ae3d861946d2","type":"Title"},"tool_events":{"id":"c84634d1-74c1-40d3-a358-ac12699478c5","type":"ToolEvents"},"toolbar":{"id":"d3acbb56-ea5e-42fb-ad0f-1081293957ba","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"dff6e4ba-fb61-418f-ad54-a9e4654930b8","type":"DataRange1d"},"x_scale":{"id":"55f6f30e-c5c2-4a42-bcae-8f7abfbae0aa","type":"LinearScale"},"y_range":{"id":"4ea7ba70-545d-4315-8170-2bc5f7a661eb","type":"DataRange1d"},"y_scale":{"id":"1bb3fef9-ec3c-45de-b36b-1b91a4324738","type":"LinearScale"}},"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"c84634d1-74c1-40d3-a358-ac12699478c5","type":"ToolEvents"},{"attributes":{"data_source":{"id":"1b752d80-be80-4b1d-a56a-695e21cd9d48","type":"ColumnDataSource"},"glyph":{"id":"c4dddac3-6ae5-4394-81ee-7b43d84e191c","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"753873da-d320-4b8e-80cc-437382ba91c0","type":"Line"},"selection_glyph":null},"id":"578be135-9e3c-48f2-b070-14bea88b02d1","type":"GlyphRenderer"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"322e809f-122d-44ab-adfb-fff13baa036d","type":"PanTool"},{"id":"e612c372-7409-4d8a-944c-1206bca538ab","type":"WheelZoomTool"},{"id":"58a240d7-30be-4420-b93a-ca1289863d13","type":"BoxZoomTool"},{"id":"86c94690-79f6-4288-ba82-e17a4d185cb9","type":"SaveTool"},{"id":"edc59f29-54a7-45a3-84bb-03fcb65ef6df","type":"ResetTool"},{"id":"b4032102-911b-4c4c-8f60-4ecff36ecb9b","type":"HelpTool"}]},"id":"d3acbb56-ea5e-42fb-ad0f-1081293957ba","type":"Toolbar"},{"attributes":{"callback":null,"start":0},"id":"dff6e4ba-fb61-418f-ad54-a9e4654930b8","type":"DataRange1d"},{"attributes":{},"id":"b02b3b99-c4b6-4243-b106-38dc86d0b2b7","type":"BasicTickFormatter"},{"attributes":{},"id":"55f6f30e-c5c2-4a42-bcae-8f7abfbae0aa","type":"LinearScale"},{"attributes":{"callback":null,"end":19628.783834012105,"start":0},"id":"4ea7ba70-545d-4315-8170-2bc5f7a661eb","type":"DataRange1d"},{"attributes":{},"id":"1bb3fef9-ec3c-45de-b36b-1b91a4324738","type":"LinearScale"},{"attributes":{"plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"},"ticker":{"id":"aa201ab7-4771-437b-9124-88d4bc1b61d0","type":"BasicTicker"}},"id":"71d72d02-5d18-4b43-8947-6c8922496a2d","type":"Grid"},{"attributes":{"axis_label":"cores","formatter":{"id":"b02b3b99-c4b6-4243-b106-38dc86d0b2b7","type":"BasicTickFormatter"},"plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"},"ticker":{"id":"eaf76343-9b43-45f1-bf84-e7ea82ce7024","type":"FixedTicker"}},"id":"c7cad613-5c33-42bc-82d2-9efb32eaa493","type":"LinearAxis"},{"attributes":{},"id":"aa201ab7-4771-437b-9124-88d4bc1b61d0","type":"BasicTicker"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"14d3d91b-e2c9-428c-af94-8bd41548a98e","type":"BasicTickFormatter"},"plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"},"ticker":{"id":"1ca03440-5163-40b6-bc8e-7868360ed4bd","type":"BasicTicker"}},"id":"bcd530b5-5ba1-432f-ad2e-5b552403d553","type":"LinearAxis"},{"attributes":{},"id":"1ca03440-5163-40b6-bc8e-7868360ed4bd","type":"BasicTicker"},{"attributes":{"dimension":1,"plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"},"ticker":{"id":"1ca03440-5163-40b6-bc8e-7868360ed4bd","type":"BasicTicker"}},"id":"42f34310-41c5-4e5b-8ab3-445c347cc2e7","type":"Grid"},{"attributes":{},"id":"14d3d91b-e2c9-428c-af94-8bd41548a98e","type":"BasicTickFormatter"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"753873da-d320-4b8e-80cc-437382ba91c0","type":"Line"},{"attributes":{"ticker":null},"id":"cb7c8cb6-9623-4908-96f9-761c89176a89","type":"LogTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"8dfd84f0-a5b6-4f38-8e13-8b69195e9d75","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"}},"id":"322e809f-122d-44ab-adfb-fff13baa036d","type":"PanTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"5mBoSrF9l0Bna2xc6/uUQD2eEyk3/Z1A41+WwWA8rkCg3qY5Aga3QAVA74snN8NAncj380uyxEDOuHXJpNfQQN8hVioyK9NA","dtype":"float64","shape":[9]}}},"id":"94a916f8-c48b-40f3-ac0e-46d95d98c641","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"}},"id":"e612c372-7409-4d8a-944c-1206bca538ab","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"8dfd84f0-a5b6-4f38-8e13-8b69195e9d75","type":"BoxAnnotation"},"plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"}},"id":"58a240d7-30be-4420-b93a-ca1289863d13","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"}},"id":"86c94690-79f6-4288-ba82-e17a4d185cb9","type":"SaveTool"},{"attributes":{"plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"}},"id":"edc59f29-54a7-45a3-84bb-03fcb65ef6df","type":"ResetTool"},{"attributes":{"plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"}},"id":"b4032102-911b-4c4c-8f60-4ecff36ecb9b","type":"HelpTool"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"526fabff-3c81-46d6-9de0-1f353adfca9d","type":"Circle"},{"attributes":{"axis_label":"cores","formatter":{"id":"f7bbd14e-534b-45b2-aa72-80a33d3d048e","type":"BasicTickFormatter"},"plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"},"ticker":{"id":"426bd2ab-0882-4386-b2c7-83a24a666182","type":"FixedTicker"}},"id":"b9355d3b-be49-47fd-8d7c-aa58437774a1","type":"LinearAxis"},{"attributes":{"items":[{"id":"df99970f-4041-44f8-b3a0-0bf1e59c404e","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"}},"id":"79e12eb2-6783-4266-9832-ac658476172b","type":"Legend"},{"attributes":{"data_source":{"id":"94a916f8-c48b-40f3-ac0e-46d95d98c641","type":"ColumnDataSource"},"glyph":{"id":"526fabff-3c81-46d6-9de0-1f353adfca9d","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"a340b282-bd7f-45ec-9882-8e1c1a6213c3","type":"Circle"},"selection_glyph":null},"id":"fd8659b9-5774-4ade-9016-a647c66e4fda","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a340b282-bd7f-45ec-9882-8e1c1a6213c3","type":"Circle"},{"attributes":{"child":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"3fead079-f081-4604-957d-6844b5640f7e","type":"Panel"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"753a306f-dd3d-44ba-9c81-3ebbc7a35a31","type":"Line"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"18874344-f743-48f0-b079-2842f76113a4","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"ebe800c9-1421-4745-b177-d089dafce886","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"s8bqjTzBiUBTem6Z0ZyGQFtOQa+MMZNAS+oBg8Twl0Arqf2CF8SjQIPxxSmeUatANdBkm/kbrkBhrYhhFXK0QGeZb4e3brJA","dtype":"float64","shape":[9]}}},"id":"a1335509-0bcd-498a-bb3c-5af46436f736","type":"ColumnDataSource"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"eaf76343-9b43-45f1-bf84-e7ea82ce7024","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,384876.3226637974]}},"id":"a68fcac2-6ff7-4160-ab3f-ef566bea5cbb","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"365a4993-c8d9-48d5-a165-7a4e9206a3d1","type":"Line"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"8181542c-7323-46eb-9d9d-21a39b2f337b","type":"Panel"},{"id":"3fead079-f081-4604-957d-6844b5640f7e","type":"Panel"}]},"id":"7fc598d6-b20a-457d-80b4-34bf7c5ca49e","type":"Tabs"},{"attributes":{"child":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"},"title":"log"},"id":"8181542c-7323-46eb-9d9d-21a39b2f337b","type":"Panel"},{"attributes":{"below":[{"id":"69e7f477-33dd-49bb-8742-8a4acc5e5cba","type":"LogAxis"}],"left":[{"id":"6630e827-9e7c-490e-a37e-85408a6a4ae2","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"69e7f477-33dd-49bb-8742-8a4acc5e5cba","type":"LogAxis"},{"id":"a80b5d2e-a365-49b7-815c-151a0ac219f5","type":"Grid"},{"id":"6630e827-9e7c-490e-a37e-85408a6a4ae2","type":"LogAxis"},{"id":"d0f0b675-2b8e-4fd7-9f32-6cbcb749cf23","type":"Grid"},{"id":"dde7e77b-1917-4489-9e8d-103c92197c86","type":"BoxAnnotation"},{"id":"ae2f1fe7-e7ad-4a3c-9994-cd087b537257","type":"Legend"},{"id":"0d08fe1d-5742-4c92-84b6-7ecbbbf5f300","type":"GlyphRenderer"},{"id":"6af73c8b-fc8e-4c8b-a659-a7220854b1e0","type":"GlyphRenderer"},{"id":"ec6a1d09-8449-46cf-b1be-3e11e093564e","type":"GlyphRenderer"}],"title":{"id":"706a83b4-c08b-4b8b-8dd9-08e67528b683","type":"Title"},"tool_events":{"id":"9f244216-2c49-46aa-86e7-c7a71dc00710","type":"ToolEvents"},"toolbar":{"id":"0084c66b-ce81-4d6d-bee6-69dffd00663c","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"87b21d20-ff5f-42fd-8677-3f4c6a3905e5","type":"DataRange1d"},"x_scale":{"id":"e188ceed-f72f-4184-827b-8cf9dcd2016b","type":"LogScale"},"y_range":{"id":"b3a359d4-53fe-4c66-9a9d-198781a27d5d","type":"DataRange1d"},"y_scale":{"id":"098ce152-b87a-43ed-962e-e78371796667","type":"LogScale"}},"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"s8bqjTzBiUBTem6Z0ZyGQFtOQa+MMZNAS+oBg8Twl0Arqf2CF8SjQIPxxSmeUatANdBkm/kbrkBhrYhhFXK0QGeZb4e3brJA","dtype":"float64","shape":[9]}}},"id":"102a1503-0b67-42f0-bf39-b7f25a94fe39","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"102a1503-0b67-42f0-bf39-b7f25a94fe39","type":"ColumnDataSource"},"glyph":{"id":"365a4993-c8d9-48d5-a165-7a4e9206a3d1","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"753a306f-dd3d-44ba-9c81-3ebbc7a35a31","type":"Line"},"selection_glyph":null},"id":"0d08fe1d-5742-4c92-84b6-7ecbbbf5f300","type":"GlyphRenderer"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"dde7e77b-1917-4489-9e8d-103c92197c86","type":"BoxAnnotation"},{"attributes":{"plot":null,"text":"Arrays: Rechunking"},"id":"706a83b4-c08b-4b8b-8dd9-08e67528b683","type":"Title"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"ebad1b33-c8f9-4a5e-909d-89826fa6727b","type":"Line"},{"attributes":{"plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"}},"id":"119970ac-6463-4f32-a7e2-f3bb89fcae56","type":"WheelZoomTool"},{"attributes":{"data_source":{"id":"6a885f9a-7765-41fa-af8a-dc7292f329df","type":"ColumnDataSource"},"glyph":{"id":"b6b35bed-a3cf-4ff2-94af-733dab6ed569","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"ebad1b33-c8f9-4a5e-909d-89826fa6727b","type":"Line"},"selection_glyph":null},"id":"4a334960-fb43-4949-8e13-5cc44f095565","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"ba1f4919-aa9e-4f0c-85be-efee379561cb","type":"Line"},{"attributes":{"data_source":{"id":"3d533bc9-6340-4496-bb65-6e45171a28e4","type":"ColumnDataSource"},"glyph":{"id":"173a4f64-1c36-478b-8939-3df3b90611ec","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3d65a81f-7ebd-459e-b72f-8393275a710d","type":"Line"},"selection_glyph":null},"id":"39e06dbc-9a1e-441a-b66e-387a27314ce3","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"37dbf4b3-9234-42a7-b459-ca9e5ff375fb","type":"ColumnDataSource"},"glyph":{"id":"66b2fd67-9922-4aeb-8161-2fc03aeb60cb","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f8360fdc-5a2e-4f5d-bb69-da02af36803d","type":"Line"},"selection_glyph":null},"id":"1d3782ea-eb9f-4992-bf64-5839a46961ee","type":"GlyphRenderer"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"a7ddf49e-16f8-4cb1-ab9f-d9074592a233","type":"Line"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"173a4f64-1c36-478b-8939-3df3b90611ec","type":"Line"},{"attributes":{"data_source":{"id":"2f0e9839-fadf-4d77-8731-a9c5631134a1","type":"ColumnDataSource"},"glyph":{"id":"ba1f4919-aa9e-4f0c-85be-efee379561cb","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"a7ddf49e-16f8-4cb1-ab9f-d9074592a233","type":"Line"},"selection_glyph":null},"id":"d580f476-985c-4210-a9c9-b6ebbdbe8ef8","type":"GlyphRenderer"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"3d65a81f-7ebd-459e-b72f-8393275a710d","type":"Line"},{"attributes":{"callback":null,"start":0},"id":"3e2b5630-e9ec-4bdd-8ce7-388ee58a26bd","type":"DataRange1d"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"78e8d05c-b35c-4703-ae94-e6433b0aa44e","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,324077.3921569089]}},"id":"3d533bc9-6340-4496-bb65-6e45171a28e4","type":"ColumnDataSource"},{"attributes":{"plot":null,"text":"Tasks: Tree Reduction"},"id":"1c723287-ce27-47d7-b9bc-3997ea760765","type":"Title"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"c2bbde99-cab6-4b0f-9f59-5606c544b5da","type":"PanTool"},{"id":"04ab7ca2-17b0-4ef9-ab95-d3e14701499a","type":"WheelZoomTool"},{"id":"9f4a3ad1-0ccf-45d0-a913-8a7ae8430a44","type":"BoxZoomTool"},{"id":"916517f6-446b-48e0-b5fa-d83ea96d5d34","type":"SaveTool"},{"id":"c6ec5b39-7ffa-4884-8e8a-269660118fda","type":"ResetTool"},{"id":"a5ff4436-25c4-4322-89c0-97a8dbc1e017","type":"HelpTool"}]},"id":"b7046cc2-9a48-4f2f-ae29-090d2ca5f4f9","type":"Toolbar"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"1d27dfc8-f33e-4a00-859c-228c9443d3a6","type":"Line"},{"attributes":{},"id":"2c6240ac-1e30-44cb-ab71-b7d0757e35e6","type":"ToolEvents"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"cd58c1ae-ad48-4da0-9d98-64682209015a","type":"Line"},{"attributes":{},"id":"9a4ab36b-33e0-4d16-8c20-e55f98f2610a","type":"BasicTickFormatter"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f61e049a-3d57-4ba9-ab9d-017dbc17cca7","type":"Line"},{"attributes":{"below":[{"id":"9fa573a4-6877-4f0e-bc99-05420273670b","type":"LinearAxis"}],"left":[{"id":"64566afc-a366-4138-9295-90f1146057ba","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"9fa573a4-6877-4f0e-bc99-05420273670b","type":"LinearAxis"},{"id":"16de9ec2-8e18-4421-9eaa-5af8e7ad7095","type":"Grid"},{"id":"64566afc-a366-4138-9295-90f1146057ba","type":"LinearAxis"},{"id":"6f050933-0f43-41ef-9ea2-2a30766b9370","type":"Grid"},{"id":"c0d7f6ca-e987-4799-8a2e-aabbcfd2f677","type":"BoxAnnotation"},{"id":"b142de0f-ddfe-4ba6-9b4e-21e324ef3bb7","type":"Legend"},{"id":"0ea10786-847d-49d5-b396-c435c2c06fdb","type":"GlyphRenderer"},{"id":"a946cd7b-d171-475c-a913-65ac28152b4a","type":"GlyphRenderer"},{"id":"1d3782ea-eb9f-4992-bf64-5839a46961ee","type":"GlyphRenderer"},{"id":"5c6f5d7b-68f9-4646-9849-50cfd2e8bc5d","type":"GlyphRenderer"},{"id":"460b4115-9f55-49b9-aa33-6f2a4c60ff3c","type":"GlyphRenderer"},{"id":"d0523baa-6be1-4235-af10-98771e7cc0da","type":"GlyphRenderer"}],"title":{"id":"1c723287-ce27-47d7-b9bc-3997ea760765","type":"Title"},"tool_events":{"id":"2c6240ac-1e30-44cb-ab71-b7d0757e35e6","type":"ToolEvents"},"toolbar":{"id":"b7046cc2-9a48-4f2f-ae29-090d2ca5f4f9","type":"Toolbar"},"x_range":{"id":"3e2b5630-e9ec-4bdd-8ce7-388ee58a26bd","type":"DataRange1d"},"x_scale":{"id":"26530279-850c-463b-ba0a-d6f4df44cfc1","type":"LinearScale"},"y_range":{"id":"4ee7d578-0ba1-4170-89ab-35e3a5aa8c2c","type":"DataRange1d"},"y_scale":{"id":"48d8bdaf-97c2-41ff-ba56-13589552217e","type":"LinearScale"}},"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"26530279-850c-463b-ba0a-d6f4df44cfc1","type":"LinearScale"},{"attributes":{"callback":null,"end":3596.14811695509,"start":0},"id":"4ee7d578-0ba1-4170-89ab-35e3a5aa8c2c","type":"DataRange1d"},{"attributes":{},"id":"48d8bdaf-97c2-41ff-ba56-13589552217e","type":"LinearScale"},{"attributes":{"plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"},"ticker":{"id":"a6bcb22e-c9a8-4ac8-a2b9-285ba96e9c01","type":"BasicTicker"}},"id":"16de9ec2-8e18-4421-9eaa-5af8e7ad7095","type":"Grid"},{"attributes":{"axis_label":"cores","formatter":{"id":"9a4ab36b-33e0-4d16-8c20-e55f98f2610a","type":"BasicTickFormatter"},"plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"},"ticker":{"id":"f08e67a9-d608-4d46-a0c4-347b7cea6f5d","type":"FixedTicker"}},"id":"9fa573a4-6877-4f0e-bc99-05420273670b","type":"LinearAxis"},{"attributes":{},"id":"a6bcb22e-c9a8-4ac8-a2b9-285ba96e9c01","type":"BasicTicker"},{"attributes":{"axis_label":"tasks/s","formatter":{"id":"231b4f77-befe-49ea-9d6b-c885949da9ac","type":"BasicTickFormatter"},"plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"},"ticker":{"id":"469a3306-2662-4292-b7fb-d3bac28461b3","type":"BasicTicker"}},"id":"64566afc-a366-4138-9295-90f1146057ba","type":"LinearAxis"},{"attributes":{},"id":"469a3306-2662-4292-b7fb-d3bac28461b3","type":"BasicTicker"},{"attributes":{"dimension":1,"plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"},"ticker":{"id":"469a3306-2662-4292-b7fb-d3bac28461b3","type":"BasicTicker"}},"id":"6f050933-0f43-41ef-9ea2-2a30766b9370","type":"Grid"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"4c9ac1d7-5c2c-4f08-8a68-70c2ab6471e8","type":"Line"},{"attributes":{"data_source":{"id":"b8364272-88ad-444d-ad2a-5e8d9b4df272","type":"ColumnDataSource"},"glyph":{"id":"4c9ac1d7-5c2c-4f08-8a68-70c2ab6471e8","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f61e049a-3d57-4ba9-ab9d-017dbc17cca7","type":"Line"},"selection_glyph":null},"id":"0ea10786-847d-49d5-b396-c435c2c06fdb","type":"GlyphRenderer"},{"attributes":{"child":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"890493da-ef86-4d46-938a-2dd5a182a384","type":"Panel"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"c0d7f6ca-e987-4799-8a2e-aabbcfd2f677","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"}},"id":"c2bbde99-cab6-4b0f-9f59-5606c544b5da","type":"PanTool"},{"attributes":{"data_source":{"id":"538ce727-535f-48dd-a93f-9b165a35f219","type":"ColumnDataSource"},"glyph":{"id":"59098c5b-cfc9-49b6-909c-86c75aada0e9","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"cc390953-da7a-464d-a85f-de7c32bfbec8","type":"Circle"},"selection_glyph":null},"id":"a946cd7b-d171-475c-a913-65ac28152b4a","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"}},"id":"04ab7ca2-17b0-4ef9-ab95-d3e14701499a","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"c0d7f6ca-e987-4799-8a2e-aabbcfd2f677","type":"BoxAnnotation"},"plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"}},"id":"9f4a3ad1-0ccf-45d0-a913-8a7ae8430a44","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"}},"id":"916517f6-446b-48e0-b5fa-d83ea96d5d34","type":"SaveTool"},{"attributes":{"plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"}},"id":"c6ec5b39-7ffa-4884-8e8a-269660118fda","type":"ResetTool"},{"attributes":{"plot":{"id":"0a3bfea8-d1bb-4d64-a752-ba72a5231006","subtype":"Figure","type":"Plot"}},"id":"a5ff4436-25c4-4322-89c0-97a8dbc1e017","type":"HelpTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Qs2j4G2rQkAGPm5LixNSQAEIVOXlumFAHhOcgak6cUC7DoHNWWyAQGIjzN8v5o5Auzk4xMOJnECcfp9Q3SOlQDBM/NVLGKxA","dtype":"float64","shape":[9]}}},"id":"b8364272-88ad-444d-ad2a-5e8d9b4df272","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Qs2j4G2rQkAGPm5LixNSQAEIVOXlumFAHhOcgak6cUC7DoHNWWyAQGIjzN8v5o5Auzk4xMOJnECcfp9Q3SOlQDBM/NVLGKxA","dtype":"float64","shape":[9]}}},"id":"538ce727-535f-48dd-a93f-9b165a35f219","type":"ColumnDataSource"},{"attributes":{},"id":"231b4f77-befe-49ea-9d6b-c885949da9ac","type":"BasicTickFormatter"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"59098c5b-cfc9-49b6-909c-86c75aada0e9","type":"Circle"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"cc390953-da7a-464d-a85f-de7c32bfbec8","type":"Circle"},{"attributes":{"plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"}},"id":"e0ba9b60-db70-4b11-90ea-2868bc56108f","type":"PanTool"},{"attributes":{"plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"}},"id":"25aa7dd9-490d-4122-9f8a-fa60ccf8b1ac","type":"SaveTool"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"66b2fd67-9922-4aeb-8161-2fc03aeb60cb","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f8360fdc-5a2e-4f5d-bb69-da02af36803d","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"q5SRkbXHk0C5OgbIBTCbQNOi7PG6oZ9AYTvcNx2BokB7bWhsEu6mQOBg60Yg8aVA9irH/+SCpUCs8pL575ilQPIu2GiALKRA","dtype":"float64","shape":[9]}}},"id":"bec4eb5f-65ec-4ad6-a8cd-38bcc0872add","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f8595518-de48-4037-b343-1ed562d926b5","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"q5SRkbXHk0C5OgbIBTCbQNOi7PG6oZ9AYTvcNx2BokB7bWhsEu6mQOBg60Yg8aVA9irH/+SCpUCs8pL575ilQPIu2GiALKRA","dtype":"float64","shape":[9]}}},"id":"37dbf4b3-9234-42a7-b459-ca9e5ff375fb","type":"ColumnDataSource"},{"attributes":{"label":{"value":"1us"},"renderers":[{"id":"1d3782ea-eb9f-4992-bf64-5839a46961ee","type":"GlyphRenderer"}]},"id":"975dd06b-ac52-4693-963f-4c915b65d961","type":"LegendItem"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"95198c65-f703-41cd-974a-dc37f0b71e31","type":"Line"},{"attributes":{"child":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"},"title":"log"},"id":"7c99fea2-3216-4d84-b912-8d9584fad011","type":"Panel"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2dbcb092-c667-447b-b5cc-03eb073fbf4b","type":"Circle"},{"attributes":{"data_source":{"id":"dc2c511a-5f42-4f7b-82cc-61a1134db0cb","type":"ColumnDataSource"},"glyph":{"id":"95198c65-f703-41cd-974a-dc37f0b71e31","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"ae54716f-8e3b-44bf-9c64-958fc094c6f1","type":"Line"},"selection_glyph":null},"id":"460b4115-9f55-49b9-aa33-6f2a4c60ff3c","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"c57200fb-e539-4a6c-bb2e-811c3a804e74","type":"Circle"},{"attributes":{"data_source":{"id":"bec4eb5f-65ec-4ad6-a8cd-38bcc0872add","type":"ColumnDataSource"},"glyph":{"id":"2dbcb092-c667-447b-b5cc-03eb073fbf4b","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"c57200fb-e539-4a6c-bb2e-811c3a804e74","type":"Circle"},"selection_glyph":null},"id":"5c6f5d7b-68f9-4646-9849-50cfd2e8bc5d","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"YiGd3kr1M0C4DswHLGBDQAJlPBqPJVNAF1KOo6LJYkAH1cQ/wblxQALKM0XtrH9ADDdmn9fbi0DY4pMc/3KVQBZyRig+NJpA","dtype":"float64","shape":[9]}}},"id":"eac1398b-7784-45d0-b9b5-b28ae1fb5381","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"ae317913-c907-4b2b-a755-528e99973858","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,9558.858417964195]}},"id":"dc2c511a-5f42-4f7b-82cc-61a1134db0cb","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"ae54716f-8e3b-44bf-9c64-958fc094c6f1","type":"Line"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"55a957b5-c201-4d84-8a24-080397bd507a","type":"Line"},{"attributes":{"data_source":{"id":"a66076e3-3f19-4847-bdaf-a37ee50a4b9b","type":"ColumnDataSource"},"glyph":{"id":"55a957b5-c201-4d84-8a24-080397bd507a","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"a2d7f58b-d5fb-4c2d-90f5-693d1cd03750","type":"Line"},"selection_glyph":null},"id":"d0523baa-6be1-4235-af10-98771e7cc0da","type":"GlyphRenderer"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"a2d7f58b-d5fb-4c2d-90f5-693d1cd03750","type":"Line"},{"attributes":{"items":[{"id":"8750c30b-8f3b-4482-917f-12aade87bf36","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"}},"id":"88daa403-982e-4d7e-a63e-e5f4401d6e08","type":"Legend"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"f08e67a9-d608-4d46-a0c4-347b7cea6f5d","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,324077.3921569089]}},"id":"a66076e3-3f19-4847-bdaf-a37ee50a4b9b","type":"ColumnDataSource"},{"attributes":{"num_minor_ticks":10},"id":"9f143fc4-5cc2-4a94-9b7b-a04f077573e1","type":"LogTicker"},{"attributes":{"axis_label":"tasks/s","formatter":{"id":"dbe6206b-2096-45ac-9348-a3ceb73aca41","type":"LogTickFormatter"},"plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"},"ticker":{"id":"9f143fc4-5cc2-4a94-9b7b-a04f077573e1","type":"LogTicker"}},"id":"4d0b5ee2-e522-422c-ac00-fb6e8bd64d19","type":"LogAxis"},{"attributes":{"data_source":{"id":"eac1398b-7784-45d0-b9b5-b28ae1fb5381","type":"ColumnDataSource"},"glyph":{"id":"ae317913-c907-4b2b-a755-528e99973858","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f8595518-de48-4037-b343-1ed562d926b5","type":"Line"},"selection_glyph":null},"id":"574611f2-05d6-4ba6-8e30-00a164f87763","type":"GlyphRenderer"},{"attributes":{"dimension":1,"plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"},"ticker":{"id":"9f143fc4-5cc2-4a94-9b7b-a04f077573e1","type":"LogTicker"}},"id":"4802e78d-1853-4c20-8f57-d2ef5d94f259","type":"Grid"},{"attributes":{"plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"}},"id":"6c2a2f99-b315-4295-938e-4182eefbf3a8","type":"WheelZoomTool"},{"attributes":{"plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"}},"id":"0a12f286-72b9-40f7-9747-cce4fca208b7","type":"PanTool"},{"attributes":{"plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"}},"id":"541700d3-9318-4921-895f-bc6a03b02ecb","type":"ResetTool"},{"attributes":{"below":[{"id":"1cc6a791-0f6a-43c7-8e1a-d0f4b145011b","type":"LinearAxis"}],"left":[{"id":"0e06e81c-7091-4673-987b-28bdfdd387d4","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"1cc6a791-0f6a-43c7-8e1a-d0f4b145011b","type":"LinearAxis"},{"id":"7b9bfd50-057e-41f4-a84f-83020213d396","type":"Grid"},{"id":"0e06e81c-7091-4673-987b-28bdfdd387d4","type":"LinearAxis"},{"id":"7efa5fcd-1384-4e51-8ab3-c56083f3d139","type":"Grid"},{"id":"8f746b66-eb35-40f8-b041-d9f5e016b234","type":"BoxAnnotation"},{"id":"115c68a3-af39-4a59-8199-23ad4a0f78ba","type":"Legend"},{"id":"1da83794-de84-4f89-b7a4-931fd0be822e","type":"GlyphRenderer"},{"id":"a86e104b-497a-42c1-8cb6-aa5f1efd5a97","type":"GlyphRenderer"},{"id":"a209df9a-abf2-4be6-83bc-504ea82e6cdc","type":"GlyphRenderer"},{"id":"399be48b-b05d-48ac-ad82-8bb5171ea982","type":"GlyphRenderer"},{"id":"dae703f0-1c58-4dea-971e-c35560dcd430","type":"GlyphRenderer"},{"id":"07b8d079-8049-4102-a197-ff15e44f8107","type":"GlyphRenderer"}],"title":{"id":"267ba9af-9cac-4fd7-b84f-8a9c428335de","type":"Title"},"tool_events":{"id":"c5e95cab-1de3-47a7-b377-8bf0ec0314d4","type":"ToolEvents"},"toolbar":{"id":"9f5af416-f08d-4983-86a7-a899b6204e52","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"31156497-7771-498e-ab35-a21d97ac706a","type":"DataRange1d"},"x_scale":{"id":"dfdfa1fc-2b37-45fd-a322-6c60455c18fa","type":"LinearScale"},"y_range":{"id":"b3122fae-1c0d-4ad5-9c93-30c05c13efe3","type":"DataRange1d"},"y_scale":{"id":"fa32776a-b5d5-432e-8518-e7c10cb39af5","type":"LinearScale"}},"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"},{"attributes":{"axis_label":"cores","formatter":{"id":"265ba6b0-f36c-412e-ba03-f9440d16790e","type":"BasicTickFormatter"},"plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"},"ticker":{"id":"b4587e42-522f-44d1-bdae-1770fdb06934","type":"FixedTicker"}},"id":"1cc6a791-0f6a-43c7-8e1a-d0f4b145011b","type":"LinearAxis"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"7eb0f20a-143f-4774-b4a4-74fc590cd505","type":"Line"},{"attributes":{"plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"},"ticker":{"id":"9f2d71d4-52cb-45c8-93f2-ef9646ec39d2","type":"BasicTicker"}},"id":"7b9bfd50-057e-41f4-a84f-83020213d396","type":"Grid"},{"attributes":{},"id":"dfdfa1fc-2b37-45fd-a322-6c60455c18fa","type":"LinearScale"},{"attributes":{"callback":null,"end":1846.5368297047141,"start":0},"id":"b3122fae-1c0d-4ad5-9c93-30c05c13efe3","type":"DataRange1d"},{"attributes":{"plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"}},"id":"aaeac710-c162-4542-bc3a-0a5dabae8022","type":"SaveTool"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"efc5e5bd-a54b-4f82-91ac-81f1452b4983","type":"BoxAnnotation"},{"attributes":{"data_source":{"id":"f4ba03ae-1f10-4452-8b9f-402abae81f36","type":"ColumnDataSource"},"glyph":{"id":"d43e85b9-4414-4ae4-8294-35cc8428cfef","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"510ba703-2928-48e3-809c-40633b21ad4c","type":"Line"},"selection_glyph":null},"id":"ac6c1b73-a582-457c-9f3d-112602cdb911","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"909c8428-c38b-43cc-bfe0-dc197b86d528","type":"ColumnDataSource"},"glyph":{"id":"254c5a68-0980-4842-8685-481c9eda7e49","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"8cdf174b-749d-462a-bb44-f0f89e1670f3","type":"Circle"},"selection_glyph":null},"id":"a86e104b-497a-42c1-8cb6-aa5f1efd5a97","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Uji9ucBYZUAdsMJb8tRkQL1Vo71Kh3FAm3a94PqXe0BPlY81iK2BQAwxqXWHd45APa02fXXbmEATpa+2JdqcQKoSrs0vSZpA","dtype":"float64","shape":[9]}}},"id":"f4ba03ae-1f10-4452-8b9f-402abae81f36","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"}},"id":"21b20b53-1ceb-423e-a2ec-b801c3464c1e","type":"HelpTool"},{"attributes":{"plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"}},"id":"de4229e6-b7b3-4b99-a9cf-99e8e2addfe1","type":"HelpTool"},{"attributes":{"ticker":null},"id":"b5b3cacd-17da-4b7a-8255-21f22b67b039","type":"LogTickFormatter"},{"attributes":{"items":[{"id":"e7a616d5-1ff2-476f-94a9-483ba5a296ec","type":"LegendItem"},{"id":"b0557011-7268-4e67-bce4-b6b09d62330d","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"}},"id":"65412682-021f-4cbc-8a36-490fb1d821b7","type":"Legend"},{"attributes":{"data_source":{"id":"6f91da52-632c-4841-85ce-3bd6defdeda0","type":"ColumnDataSource"},"glyph":{"id":"7df733ee-85ac-443a-a6f5-d4cf488ea15c","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"15228f53-57af-4a54-b48e-e18360e7c5bd","type":"Circle"},"selection_glyph":null},"id":"f3e364a8-c1f0-40ba-aed0-daf9ceae878e","type":"GlyphRenderer"},{"attributes":{"label":{"value":"df.groupby(...).apply(...)"},"renderers":[{"id":"ac6c1b73-a582-457c-9f3d-112602cdb911","type":"GlyphRenderer"}]},"id":"e7a616d5-1ff2-476f-94a9-483ba5a296ec","type":"LegendItem"},{"attributes":{"overlay":{"id":"efc5e5bd-a54b-4f82-91ac-81f1452b4983","type":"BoxAnnotation"},"plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"}},"id":"2d6b0dc4-acfe-49bb-9dda-551a36dcf187","type":"BoxZoomTool"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"8cdf174b-749d-462a-bb44-f0f89e1670f3","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Uji9ucBYZUAdsMJb8tRkQL1Vo71Kh3FAm3a94PqXe0BPlY81iK2BQAwxqXWHd45APa02fXXbmEATpa+2JdqcQKoSrs0vSZpA","dtype":"float64","shape":[9]}}},"id":"b9cfce9f-3078-42a6-945f-13a8c1e3d479","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"}},"id":"c6324a86-b7a0-4476-8559-7e4c969cbc1d","type":"HelpTool"},{"attributes":{},"id":"fa32776a-b5d5-432e-8518-e7c10cb39af5","type":"LinearScale"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"458fd79c-5c42-4892-a276-8baa6a0bdb43","type":"Line"},{"attributes":{"ticker":null},"id":"e5dad457-ce21-46f9-a4bf-b881885257b3","type":"LogTickFormatter"},{"attributes":{"plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"}},"id":"1867925c-2af4-4db7-8e7f-f5ebe7c04b2c","type":"SaveTool"},{"attributes":{"dimension":1,"plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"},"ticker":{"id":"bf227976-4636-4ae8-b651-79ca2bb13121","type":"LogTicker"}},"id":"c27ae204-4506-4af7-a62e-eb46a04d85b5","type":"Grid"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"6f7d4cfd-27ef-4af1-96e2-a3739b094421","type":"Circle"},{"attributes":{"plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"}},"id":"139b60e4-50a4-4e7d-859b-078ddbdbdcc7","type":"ResetTool"},{"attributes":{"overlay":{"id":"8f746b66-eb35-40f8-b041-d9f5e016b234","type":"BoxAnnotation"},"plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"}},"id":"cd115f44-a4b3-4792-b271-ff55420fa101","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"}},"id":"04994c9c-5fd6-43a7-8350-ba05388e5dda","type":"WheelZoomTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"015a7a30-f537-48db-b3c9-b228a55542cc","type":"Line"},{"attributes":{"plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"}},"id":"9bfe2281-8649-489d-b24b-7d071f5e0448","type":"PanTool"},{"attributes":{},"id":"2e4711a0-181a-485b-bc93-efe06f4dc412","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"8f746b66-eb35-40f8-b041-d9f5e016b234","type":"BoxAnnotation"},{"attributes":{},"id":"49ee7698-c72f-46d2-a94e-80d1221828d2","type":"BasicTicker"},{"attributes":{},"id":"9f2d71d4-52cb-45c8-93f2-ef9646ec39d2","type":"BasicTicker"},{"attributes":{"data_source":{"id":"e23c1abe-7f18-425a-858d-19ad4714f55a","type":"ColumnDataSource"},"glyph":{"id":"19b84dcd-5f69-4967-a022-fc9ba521eb31","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"015a7a30-f537-48db-b3c9-b228a55542cc","type":"Line"},"selection_glyph":null},"id":"d3f0205b-45dc-444f-9485-3a821bd6f1e5","type":"GlyphRenderer"},{"attributes":{"dimension":1,"plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"},"ticker":{"id":"49ee7698-c72f-46d2-a94e-80d1221828d2","type":"BasicTicker"}},"id":"7efa5fcd-1384-4e51-8ab3-c56083f3d139","type":"Grid"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"79603191-d085-4ef7-94a5-4fedb238bd7b","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"adfe0308-4aa4-4654-b9b5-fccc26b80a2e","type":"Line"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"254c5a68-0980-4842-8685-481c9eda7e49","type":"Circle"},{"attributes":{"data_source":{"id":"b9cfce9f-3078-42a6-945f-13a8c1e3d479","type":"ColumnDataSource"},"glyph":{"id":"9e49cfe9-b237-4ef0-834d-3bc6e46582ae","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"6f7d4cfd-27ef-4af1-96e2-a3739b094421","type":"Circle"},"selection_glyph":null},"id":"cf7e8366-7581-4e12-93ef-b6b229126bc9","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,31832.26009933853]}},"id":"033f584b-d1ee-4b4b-b6a7-e7ed41f66129","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"033f584b-d1ee-4b4b-b6a7-e7ed41f66129","type":"ColumnDataSource"},"glyph":{"id":"b1f089ea-54b7-4d44-8d9d-afe7c04eee25","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"458fd79c-5c42-4892-a276-8baa6a0bdb43","type":"Line"},"selection_glyph":null},"id":"b614a223-bbd2-40b1-9145-a3094667aad7","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"d43e85b9-4414-4ae4-8294-35cc8428cfef","type":"Line"},{"attributes":{"callback":null,"start":0},"id":"31156497-7771-498e-ab35-a21d97ac706a","type":"DataRange1d"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"07998121-7f06-437a-b1cb-c2c6736f6931","type":"FixedTicker"},{"attributes":{"plot":null,"text":"DataFrames: Full Shuffle"},"id":"267ba9af-9cac-4fd7-b84f-8a9c428335de","type":"Title"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"9bfe2281-8649-489d-b24b-7d071f5e0448","type":"PanTool"},{"id":"04994c9c-5fd6-43a7-8350-ba05388e5dda","type":"WheelZoomTool"},{"id":"cd115f44-a4b3-4792-b271-ff55420fa101","type":"BoxZoomTool"},{"id":"1867925c-2af4-4db7-8e7f-f5ebe7c04b2c","type":"SaveTool"},{"id":"139b60e4-50a4-4e7d-859b-078ddbdbdcc7","type":"ResetTool"},{"id":"c6324a86-b7a0-4476-8559-7e4c969cbc1d","type":"HelpTool"}]},"id":"9f5af416-f08d-4983-86a7-a899b6204e52","type":"Toolbar"},{"attributes":{},"id":"c5e95cab-1de3-47a7-b377-8bf0ec0314d4","type":"ToolEvents"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2845b27f-001c-4d22-be1f-a9fe59104f77","type":"Line"},{"attributes":{"data_source":{"id":"f2711f11-dc8a-44ce-bde7-5ba41b2e3f1a","type":"ColumnDataSource"},"glyph":{"id":"7eb0f20a-143f-4774-b4a4-74fc590cd505","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"adfe0308-4aa4-4654-b9b5-fccc26b80a2e","type":"Line"},"selection_glyph":null},"id":"1da83794-de84-4f89-b7a4-931fd0be822e","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"LbJ3pRAWX0BbUHF3/95iQIiYAtArN3BAAzvcglmDd0A7RNmNS3J/QPRV3VjCgItAGs1hBVAyk0A6pgUWMmqYQM/xIEy8hpZA","dtype":"float64","shape":[9]}}},"id":"82241e1f-3146-4835-9d0f-898d74080655","type":"ColumnDataSource"},{"attributes":{},"id":"265ba6b0-f36c-412e-ba03-f9440d16790e","type":"BasicTickFormatter"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Uji9ucBYZUAdsMJb8tRkQL1Vo71Kh3FAm3a94PqXe0BPlY81iK2BQAwxqXWHd45APa02fXXbmEATpa+2JdqcQKoSrs0vSZpA","dtype":"float64","shape":[9]}}},"id":"909c8428-c38b-43cc-bfe0-dc197b86d528","type":"ColumnDataSource"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"9e49cfe9-b237-4ef0-834d-3bc6e46582ae","type":"Circle"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"b1f089ea-54b7-4d44-8d9d-afe7c04eee25","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,43718.02267323494]}},"id":"e23c1abe-7f18-425a-858d-19ad4714f55a","type":"ColumnDataSource"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"2e4711a0-181a-485b-bc93-efe06f4dc412","type":"BasicTickFormatter"},"plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"},"ticker":{"id":"49ee7698-c72f-46d2-a94e-80d1221828d2","type":"BasicTicker"}},"id":"0e06e81c-7091-4673-987b-28bdfdd387d4","type":"LinearAxis"},{"attributes":{"data_source":{"id":"82241e1f-3146-4835-9d0f-898d74080655","type":"ColumnDataSource"},"glyph":{"id":"79603191-d085-4ef7-94a5-4fedb238bd7b","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2845b27f-001c-4d22-be1f-a9fe59104f77","type":"Line"},"selection_glyph":null},"id":"fb4f1318-40bf-4b51-8d8c-b441c1eed3c0","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"19b84dcd-5f69-4967-a022-fc9ba521eb31","type":"Line"},{"attributes":{},"id":"cbb9bc6c-1f65-4274-bf49-6c454c02a800","type":"LogScale"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Uji9ucBYZUAdsMJb8tRkQL1Vo71Kh3FAm3a94PqXe0BPlY81iK2BQAwxqXWHd45APa02fXXbmEATpa+2JdqcQKoSrs0vSZpA","dtype":"float64","shape":[9]}}},"id":"f2711f11-dc8a-44ce-bde7-5ba41b2e3f1a","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"510ba703-2928-48e3-809c-40633b21ad4c","type":"Line"},{"attributes":{"label":{"value":"df.groupby(...).apply(...)"},"renderers":[{"id":"1da83794-de84-4f89-b7a4-931fd0be822e","type":"GlyphRenderer"}]},"id":"b8084d43-5b05-43f2-845a-d9bcf1c4ada1","type":"LegendItem"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"b08b8553-f625-4e5e-a796-321b0764389e","type":"LogTickFormatter"},"plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"},"ticker":{"id":"f2dee069-b0ad-4698-b4df-e5a2390d9bfe","type":"LogTicker"}},"id":"3b6698c3-66db-4eea-8093-a3b4f2d0c841","type":"LogAxis"},{"attributes":{"num_minor_ticks":10},"id":"bf227976-4636-4ae8-b651-79ca2bb13121","type":"LogTicker"},{"attributes":{},"id":"0abf6ccc-6de3-47eb-bbb9-5d656a49d2f8","type":"BasicTickFormatter"},{"attributes":{"dimension":1,"plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"},"ticker":{"id":"c4c181b0-9765-469e-a9ca-9fdc9a816d58","type":"LogTicker"}},"id":"35c32da5-a86c-4f8e-a851-c129b4c80bcd","type":"Grid"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"epLhQ0J1YkAd5AFIZzFxQJg0vPmU7ntAyXEzRLI4iUCSgRntGWCSQEF51ldnFptA8ymMPoR+nkBOxBAU3zWiQFbn5NVayKJA","dtype":"float64","shape":[9]}}},"id":"989aa921-a6b0-437c-b8f5-0e724a7aa8df","type":"ColumnDataSource"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"bfbd3b84-ea65-468d-80a4-0bc507dbc1f7","type":"LogTickFormatter"},"plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"},"ticker":{"id":"c4c181b0-9765-469e-a9ca-9fdc9a816d58","type":"LogTicker"}},"id":"3f82da9d-8419-4425-a965-030097068d53","type":"LogAxis"},{"attributes":{"items":[{"id":"9c4ecca6-3fb9-4b99-a76f-29b0cd62cf8b","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"}},"id":"e7cd8d6c-fd1b-47c5-9046-bb0dd0d37454","type":"Legend"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,31832.26009933853]}},"id":"7b5f2355-7a70-4f3d-8db3-05c17d0c3f53","type":"ColumnDataSource"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"b420ab84-de1a-46fb-9d5e-6e58aa4f92d7","type":"BoxAnnotation"},{"attributes":{"label":{"value":"sin(x)**2 + cos(x)**2"},"renderers":[{"id":"f7346b9b-f65b-4d3c-9113-394fac1afe19","type":"GlyphRenderer"}]},"id":"9c4ecca6-3fb9-4b99-a76f-29b0cd62cf8b","type":"LegendItem"},{"attributes":{"data_source":{"id":"6d3d16e4-ca7a-4e07-9444-55fa9920aacc","type":"ColumnDataSource"},"glyph":{"id":"b7d8221d-be30-4e16-8ec6-b34a9423c39f","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"81838cf4-afce-46e4-baf9-1c01298db7f9","type":"Line"},"selection_glyph":null},"id":"8eaa3582-91c7-47cd-ab32-3ebb97258b0b","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"d7c6a4f2-50e5-4522-bb85-49619ead6b2e","type":"ColumnDataSource"},"glyph":{"id":"19f187e5-9ed9-49d6-9323-f06acb06abd8","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"ad7a29b5-2c7d-4ffe-999b-249b07a66a8e","type":"Line"},"selection_glyph":null},"id":"9318cc6d-b0c6-40cb-b3dc-d1660534ca98","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"}},"id":"84c5ebf4-804c-45e8-86a3-23655f9c10cf","type":"PanTool"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"df4b4c32-b151-4eaa-afa8-f2f1c99944af","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"uUoxEbZlhUBIyqgVRxWTQHa8HsxSVKFAbE0WQbrQskAfV+6MsWjBQB8gXbcI8NBAaYcHrUvT1EBXicp+gH7TQA1jrj5WlupA","dtype":"float64","shape":[9]}}},"id":"d6b42dd1-cc84-41b8-9d72-cfc98b3531e0","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"989aa921-a6b0-437c-b8f5-0e724a7aa8df","type":"ColumnDataSource"},"glyph":{"id":"df4b4c32-b151-4eaa-afa8-f2f1c99944af","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1f8c1dcf-cc0e-4738-b1d7-8aad57c363b9","type":"Circle"},"selection_glyph":null},"id":"17c349ae-33d2-40cd-9f5b-e7687a90507d","type":"GlyphRenderer"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"774d9556-37a0-4ca2-8dfb-37d9450954dd","type":"Panel"},{"id":"da378e56-f9e8-445e-b465-2cde4901f11a","type":"Panel"}]},"id":"50a686fd-e2c5-440a-92af-bbfc9d851b96","type":"Tabs"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"1f8c1dcf-cc0e-4738-b1d7-8aad57c363b9","type":"Circle"},{"attributes":{"below":[{"id":"1a1d9b6b-53b1-43ed-90a4-9884182fa0f3","type":"LogAxis"}],"left":[{"id":"3b6698c3-66db-4eea-8093-a3b4f2d0c841","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"1a1d9b6b-53b1-43ed-90a4-9884182fa0f3","type":"LogAxis"},{"id":"e7ef135f-2aa1-4d9b-9c96-514f9a5702e4","type":"Grid"},{"id":"3b6698c3-66db-4eea-8093-a3b4f2d0c841","type":"LogAxis"},{"id":"71be614d-aa83-4b60-b3de-4f3789b14c84","type":"Grid"},{"id":"b420ab84-de1a-46fb-9d5e-6e58aa4f92d7","type":"BoxAnnotation"},{"id":"8096a52d-2eb0-43ae-8c02-d0ccfd8764fe","type":"Legend"},{"id":"8eaa3582-91c7-47cd-ab32-3ebb97258b0b","type":"GlyphRenderer"},{"id":"a54bc275-3a80-4e52-9c0c-ed5ea82ddd80","type":"GlyphRenderer"},{"id":"f054c46b-cd16-493d-a94b-9eafe0508f67","type":"GlyphRenderer"}],"title":{"id":"a9518ca9-f7cc-4199-aa14-9ceaf2c866a7","type":"Title"},"tool_events":{"id":"0981117e-0db9-4157-b86f-b41efd853da2","type":"ToolEvents"},"toolbar":{"id":"f9f5e6ae-d027-438f-8503-8b771446cba4","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"99879e3e-cb86-4ed8-a9ec-b60d8ff48f74","type":"DataRange1d"},"x_scale":{"id":"13eb8f2b-7872-4adc-a796-69ac87b9efe0","type":"LogScale"},"y_range":{"id":"30b0e041-8696-46b0-afac-b993237dd5e2","type":"DataRange1d"},"y_scale":{"id":"20705683-411c-4b3d-8b0f-bae6aad074a7","type":"LogScale"}},"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"837eab4e-6440-4689-a9ca-37aaa40b9633","type":"LogScale"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"81838cf4-afce-46e4-baf9-1c01298db7f9","type":"Line"},{"attributes":{"axis_label":"cores","formatter":{"id":"6f9bfbc1-54df-45f3-9318-b72b981535ea","type":"LogTickFormatter"},"plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"},"ticker":{"id":"ec591052-6ee6-4799-aba5-cec91ccbd76c","type":"FixedTicker"}},"id":"3856bd1f-7162-45f9-9de9-b2cddeb604f6","type":"LogAxis"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"19f187e5-9ed9-49d6-9323-f06acb06abd8","type":"Line"},{"attributes":{"child":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"},"title":"log"},"id":"774d9556-37a0-4ca2-8dfb-37d9450954dd","type":"Panel"},{"attributes":{"plot":null,"text":"Arrays: Create"},"id":"a9518ca9-f7cc-4199-aa14-9ceaf2c866a7","type":"Title"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"ad7a29b5-2c7d-4ffe-999b-249b07a66a8e","type":"Line"},{"attributes":{"num_minor_ticks":10},"id":"43f23bff-cadb-4d03-bbc9-af672ade5478","type":"LogTicker"},{"attributes":{"plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"},"ticker":{"id":"7bed437b-39bf-4be0-8e06-06cfcfe0d424","type":"LogTicker"}},"id":"1ec5a4b7-1e26-4570-8001-17fcdb0f684c","type":"Grid"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b7d8221d-be30-4e16-8ec6-b34a9423c39f","type":"Line"},{"attributes":{"data_source":{"id":"efa8cf3b-3bda-4291-808a-01b3c438e313","type":"ColumnDataSource"},"glyph":{"id":"6f728c8d-c3bd-4ac6-b3d5-e7049adc2931","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"dfeb258a-6b2a-4e5f-998b-e0fada92b7f4","type":"Line"},"selection_glyph":null},"id":"dae703f0-1c58-4dea-971e-c35560dcd430","type":"GlyphRenderer"},{"attributes":{"num_minor_ticks":10},"id":"f2dee069-b0ad-4698-b4df-e5a2390d9bfe","type":"LogTicker"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"5fac156b-7f91-4578-b83b-8858f80abfd0","type":"FixedTicker"},{"attributes":{"axis_label":"cores","formatter":{"id":"728fd7c7-985f-4258-b738-77558af59308","type":"LogTickFormatter"},"plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"},"ticker":{"id":"460ef359-dfb1-403c-837f-2f484f0985b2","type":"FixedTicker"}},"id":"89620215-3410-4fc6-88c0-a36a5b8d0eff","type":"LogAxis"},{"attributes":{"ticker":null},"id":"bf3acc1e-c75c-4182-8881-12c577ee7678","type":"LogTickFormatter"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,37802.07078627213]}},"id":"d7c6a4f2-50e5-4522-bb85-49619ead6b2e","type":"ColumnDataSource"},{"attributes":{},"id":"e698c7cc-b5b7-4fa3-a87f-4a477779ff5b","type":"LogScale"},{"attributes":{},"id":"0981117e-0db9-4157-b86f-b41efd853da2","type":"ToolEvents"},{"attributes":{"num_minor_ticks":10},"id":"c4c181b0-9765-469e-a9ca-9fdc9a816d58","type":"LogTicker"},{"attributes":{"callback":null,"start":0},"id":"00b584b3-d9a5-4d49-bd82-f00cbda59075","type":"DataRange1d"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"84c5ebf4-804c-45e8-86a3-23655f9c10cf","type":"PanTool"},{"id":"52678c06-d482-4439-b4f7-fdd872eb00e1","type":"WheelZoomTool"},{"id":"1636d618-670c-4438-b4f8-ee09061d2c5e","type":"BoxZoomTool"},{"id":"de891a7c-65b8-4d1c-9b61-242f54a10f4b","type":"SaveTool"},{"id":"a72122d2-7c05-4909-b806-34da1879e5a5","type":"ResetTool"},{"id":"35ae2e1d-7679-4f32-9cb4-5e5c38fc97c4","type":"HelpTool"}]},"id":"f9f5e6ae-d027-438f-8503-8b771446cba4","type":"Toolbar"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"e230fb50-90d8-4680-914f-3e15f5488fb7","type":"Panel"},{"id":"a5b8f31d-2417-4153-b180-1655c30646ec","type":"Panel"}]},"id":"716ab0cd-3d4a-4000-afeb-483507e81870","type":"Tabs"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"b9db48f5-2638-4c94-a364-8e39eba47393","type":"PanTool"},{"id":"51b20535-8160-496c-986d-8baaecbb2697","type":"WheelZoomTool"},{"id":"e97e20d3-03e2-428d-aa0f-d00fd9bde72e","type":"BoxZoomTool"},{"id":"86256809-cc92-4e15-ae4a-6278598dfde4","type":"SaveTool"},{"id":"ee40caee-98db-40f4-b0db-7656427ffd03","type":"ResetTool"},{"id":"de4229e6-b7b3-4b99-a9cf-99e8e2addfe1","type":"HelpTool"}]},"id":"ce98c481-bf2e-4620-8761-d1a2a476326f","type":"Toolbar"},{"attributes":{"dimension":1,"plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"},"ticker":{"id":"f2dee069-b0ad-4698-b4df-e5a2390d9bfe","type":"LogTicker"}},"id":"71be614d-aa83-4b60-b3de-4f3789b14c84","type":"Grid"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"95dcdf2b-c4d6-45a7-ad97-b9c34e92a11f","type":"Line"},{"attributes":{"callback":null,"end":16490.85092430819,"start":0},"id":"b60405f4-e776-44b3-9ee4-a2c80585564e","type":"DataRange1d"},{"attributes":{"plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"}},"id":"52678c06-d482-4439-b4f7-fdd872eb00e1","type":"WheelZoomTool"},{"attributes":{"below":[{"id":"3856bd1f-7162-45f9-9de9-b2cddeb604f6","type":"LogAxis"}],"left":[{"id":"3f82da9d-8419-4425-a965-030097068d53","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"3856bd1f-7162-45f9-9de9-b2cddeb604f6","type":"LogAxis"},{"id":"1ec5a4b7-1e26-4570-8001-17fcdb0f684c","type":"Grid"},{"id":"3f82da9d-8419-4425-a965-030097068d53","type":"LogAxis"},{"id":"35c32da5-a86c-4f8e-a851-c129b4c80bcd","type":"Grid"},{"id":"c986fca0-15d9-4c8a-8882-6e5b71bc39e0","type":"BoxAnnotation"},{"id":"c61d2cac-746c-4c5c-916c-7d00d7d3630a","type":"Legend"},{"id":"b058e492-67e4-41d1-bbb8-f32eae7b8603","type":"GlyphRenderer"},{"id":"d83e7c85-974f-43a8-bf57-d9ab409aad72","type":"GlyphRenderer"},{"id":"bc3d125d-ffb3-4a2c-aa72-ab9513b02a62","type":"GlyphRenderer"},{"id":"996f1ef0-18fc-47d7-b849-38ded7d681b6","type":"GlyphRenderer"},{"id":"b4aad3bd-05de-476d-a05d-64797c63e4ab","type":"GlyphRenderer"},{"id":"2bac3660-5ea5-4e97-a5d4-862c9ace444c","type":"GlyphRenderer"}],"title":{"id":"c5a599b2-139c-4174-85a1-7a446a564a1a","type":"Title"},"tool_events":{"id":"3de5bc6b-ad0a-433f-9be7-a436f9ee2b06","type":"ToolEvents"},"toolbar":{"id":"44b15bda-858a-4cd2-849f-3d4bbf0c1470","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"b914e7a2-f1e0-4071-a0c2-d52db778eb69","type":"DataRange1d"},"x_scale":{"id":"4014613c-ecf3-4838-b293-ed7bce5fd9ed","type":"LogScale"},"y_range":{"id":"3e37f90e-ebea-460e-aaad-0ccc2649ad5e","type":"DataRange1d"},"y_scale":{"id":"837eab4e-6440-4689-a9ca-37aaa40b9633","type":"LogScale"}},"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"6a93c929-ad7f-40d9-a5e5-34c1bb4065c9","type":"ToolEvents"},{"attributes":{"overlay":{"id":"b420ab84-de1a-46fb-9d5e-6e58aa4f92d7","type":"BoxAnnotation"},"plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"}},"id":"1636d618-670c-4438-b4f8-ee09061d2c5e","type":"BoxZoomTool"},{"attributes":{},"id":"4014613c-ecf3-4838-b293-ed7bce5fd9ed","type":"LogScale"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"36fbc0eb-dd8a-4425-8fe3-39a618e7adaf","type":"LogTickFormatter"},"plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"},"ticker":{"id":"594148f5-678e-4aec-922f-b845f19d9257","type":"LogTicker"}},"id":"355fbc1d-8ede-4d41-8b62-1872d926a51f","type":"LogAxis"},{"attributes":{"plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"}},"id":"de891a7c-65b8-4d1c-9b61-242f54a10f4b","type":"SaveTool"},{"attributes":{"ticker":null},"id":"6f9bfbc1-54df-45f3-9318-b72b981535ea","type":"LogTickFormatter"},{"attributes":{"plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"}},"id":"a72122d2-7c05-4909-b806-34da1879e5a5","type":"ResetTool"},{"attributes":{"callback":null,"end":26586.15297054953,"start":0},"id":"3e37f90e-ebea-460e-aaad-0ccc2649ad5e","type":"DataRange1d"},{"attributes":{"plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"}},"id":"35ae2e1d-7679-4f32-9cb4-5e5c38fc97c4","type":"HelpTool"},{"attributes":{"plot":null,"text":"Arrays: Nearest Neighbor"},"id":"c5a599b2-139c-4174-85a1-7a446a564a1a","type":"Title"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"uUoxEbZlhUBIyqgVRxWTQHa8HsxSVKFAbE0WQbrQskAfV+6MsWjBQB8gXbcI8NBAaYcHrUvT1EBXicp+gH7TQA1jrj5WlupA","dtype":"float64","shape":[9]}}},"id":"6d3d16e4-ca7a-4e07-9444-55fa9920aacc","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"531899bb-814f-4471-bec2-fa7060ea4879","type":"Line"},{"attributes":{"plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"},"ticker":{"id":"ff027743-2af6-4770-9184-cc03c83a71bd","type":"BasicTicker"}},"id":"a5ca3e57-e32a-4db6-8179-72c0ba47abcf","type":"Grid"},{"attributes":{},"id":"3de5bc6b-ad0a-433f-9be7-a436f9ee2b06","type":"ToolEvents"},{"attributes":{"ticker":null},"id":"b08b8553-f625-4e5e-a796-321b0764389e","type":"LogTickFormatter"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"69b885bb-30f4-426f-9d42-de58458e2ff9","type":"PanTool"},{"id":"dc2065d3-d923-4d56-8f0a-098f825d4480","type":"WheelZoomTool"},{"id":"7fb2a7a7-6e7c-4f7e-abe6-bb0b4d4547c0","type":"BoxZoomTool"},{"id":"6e62c218-37ff-42bd-806b-b4c4eaaf4155","type":"SaveTool"},{"id":"5862d233-d9e4-402f-a9b0-823b4b28838d","type":"ResetTool"},{"id":"1abec02d-e81f-4d20-8096-046d0dca57f1","type":"HelpTool"}]},"id":"44b15bda-858a-4cd2-849f-3d4bbf0c1470","type":"Toolbar"},{"attributes":{},"id":"8248c6db-dbe7-456c-ab26-c3643aa8f701","type":"LinearScale"},{"attributes":{"num_minor_ticks":10},"id":"7bed437b-39bf-4be0-8e06-06cfcfe0d424","type":"LogTicker"},{"attributes":{"items":[{"id":"a3de8dc0-abcd-4d41-8755-b95d88644b34","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"44d846b0-5ac0-4386-b977-fefe682eb1fa","subtype":"Figure","type":"Plot"}},"id":"8096a52d-2eb0-43ae-8c02-d0ccfd8764fe","type":"Legend"},{"attributes":{"data_source":{"id":"6d976f93-8361-43be-ba78-c88a9b9bd37e","type":"ColumnDataSource"},"glyph":{"id":"531899bb-814f-4471-bec2-fa7060ea4879","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"95dcdf2b-c4d6-45a7-ad97-b9c34e92a11f","type":"Line"},"selection_glyph":null},"id":"b058e492-67e4-41d1-bbb8-f32eae7b8603","type":"GlyphRenderer"},{"attributes":{"callback":null,"end":54450.69515151354,"start":0},"id":"c254a9b2-bef4-4b72-b5aa-f2c82c2caf7a","type":"DataRange1d"},{"attributes":{"child":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"},"title":"log"},"id":"e230fb50-90d8-4680-914f-3e15f5488fb7","type":"Panel"},{"attributes":{"below":[{"id":"89620215-3410-4fc6-88c0-a36a5b8d0eff","type":"LogAxis"}],"left":[{"id":"355fbc1d-8ede-4d41-8b62-1872d926a51f","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"89620215-3410-4fc6-88c0-a36a5b8d0eff","type":"LogAxis"},{"id":"fa229f3e-b9eb-4a4d-b7aa-9a158b6e3663","type":"Grid"},{"id":"355fbc1d-8ede-4d41-8b62-1872d926a51f","type":"LogAxis"},{"id":"3f12a60a-b6bf-495c-8aab-879125782ebb","type":"Grid"},{"id":"8aa7f9a3-e0e5-419b-a8a4-5ad8e36fe88f","type":"BoxAnnotation"},{"id":"7e75b446-a5a1-42a6-a69a-c20836f1fc09","type":"Legend"},{"id":"4a30e69a-5fc9-49a9-b6d8-ba88f9921bb4","type":"GlyphRenderer"},{"id":"a1906a82-2729-4639-8244-d507183595be","type":"GlyphRenderer"},{"id":"a02779c4-dd2e-4ea8-84d2-22f9a7077d78","type":"GlyphRenderer"}],"title":{"id":"47048622-1378-44e2-99f1-de93b56bab91","type":"Title"},"tool_events":{"id":"6a93c929-ad7f-40d9-a5e5-34c1bb4065c9","type":"ToolEvents"},"toolbar":{"id":"ce98c481-bf2e-4620-8761-d1a2a476326f","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"00b584b3-d9a5-4d49-bd82-f00cbda59075","type":"DataRange1d"},"x_scale":{"id":"e698c7cc-b5b7-4fa3-a87f-4a477779ff5b","type":"LogScale"},"y_range":{"id":"b60405f4-e776-44b3-9ee4-a2c80585564e","type":"DataRange1d"},"y_scale":{"id":"c85cad71-9c17-451c-945a-363c1d6a860e","type":"LogScale"}},"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"c986fca0-15d9-4c8a-8882-6e5b71bc39e0","type":"BoxAnnotation"},{"attributes":{"label":{"value":"random"},"renderers":[{"id":"8eaa3582-91c7-47cd-ab32-3ebb97258b0b","type":"GlyphRenderer"}]},"id":"a3de8dc0-abcd-4d41-8755-b95d88644b34","type":"LegendItem"},{"attributes":{"plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"}},"id":"69b885bb-30f4-426f-9d42-de58458e2ff9","type":"PanTool"},{"attributes":{"data_source":{"id":"7a3558a2-1290-4827-9a3d-c625a77e8b0e","type":"ColumnDataSource"},"glyph":{"id":"9b093790-fa1b-4925-b9b7-43ffc25beb47","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"426a9403-2d23-4746-a21c-cc376fd6dac6","type":"Line"},"selection_glyph":null},"id":"f054c46b-cd16-493d-a94b-9eafe0508f67","type":"GlyphRenderer"},{"attributes":{"child":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"},"title":"log"},"id":"0eb06f75-3f93-4b46-835e-a4511fcd840d","type":"Panel"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"5648843d-1d51-4531-80e0-14f7e42d4305","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"0/MveXGpk0CwnWLotLafQFzSKK/0oatAGQzzlhiFvEBuV2Og1WzIQFHk16Cvv8pAs1osroIq1EBv606nwBHYQN/8RMqJ9tlA","dtype":"float64","shape":[9]}}},"id":"497683f3-df7a-41af-ae53-1146920e8780","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"}},"id":"dc2065d3-d923-4d56-8f0a-098f825d4480","type":"WheelZoomTool"},{"attributes":{"data_source":{"id":"d6b42dd1-cc84-41b8-9d72-cfc98b3531e0","type":"ColumnDataSource"},"glyph":{"id":"5648843d-1d51-4531-80e0-14f7e42d4305","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f7f0d0b3-1b82-4b62-b6b2-5eaa8f7ac3ff","type":"Circle"},"selection_glyph":null},"id":"a54bc275-3a80-4e52-9c0c-ed5ea82ddd80","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"5765ae37-6a30-4667-90e7-73a12b390a18","type":"ColumnDataSource"},"glyph":{"id":"9e1ea25f-8e06-4321-86cf-a7eb3ae41d67","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"a7b57c45-0aa0-464d-a1f7-22b769b5acee","type":"Line"},"selection_glyph":null},"id":"4a30e69a-5fc9-49a9-b6d8-ba88f9921bb4","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f7f0d0b3-1b82-4b62-b6b2-5eaa8f7ac3ff","type":"Circle"},{"attributes":{"overlay":{"id":"c986fca0-15d9-4c8a-8882-6e5b71bc39e0","type":"BoxAnnotation"},"plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"}},"id":"7fb2a7a7-6e7c-4f7e-abe6-bb0b4d4547c0","type":"BoxZoomTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,43718.02267323494]}},"id":"efa8cf3b-3bda-4291-808a-01b3c438e313","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"}},"id":"6e62c218-37ff-42bd-806b-b4c4eaaf4155","type":"SaveTool"},{"attributes":{},"id":"dc7817a3-cd49-4b6a-89f8-537ebc9b77e2","type":"LinearScale"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"9634e806-9f97-4ba2-93d3-f7411b9ca83c","type":"Line"},{"attributes":{"plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"}},"id":"5862d233-d9e4-402f-a9b0-823b4b28838d","type":"ResetTool"},{"attributes":{"callback":null,"start":0},"id":"4ca0bb4c-dc4d-4e88-9c27-d657bfabf665","type":"DataRange1d"},{"attributes":{"ticker":null},"id":"728fd7c7-985f-4258-b738-77558af59308","type":"LogTickFormatter"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"9b093790-fa1b-4925-b9b7-43ffc25beb47","type":"Line"},{"attributes":{"plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"}},"id":"1abec02d-e81f-4d20-8096-046d0dca57f1","type":"HelpTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"d3c423e7-6dd5-429c-a8ea-24c463171dbc","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"426a9403-2d23-4746-a21c-cc376fd6dac6","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"0/MveXGpk0CwnWLotLafQFzSKK/0oatAGQzzlhiFvEBuV2Og1WzIQFHk16Cvv8pAs1osroIq1EBv606nwBHYQN/8RMqJ9tlA","dtype":"float64","shape":[9]}}},"id":"6d976f93-8361-43be-ba78-c88a9b9bd37e","type":"ColumnDataSource"},{"attributes":{"plot":null,"text":"Arrays: Create"},"id":"374a93fa-028c-4ced-a6cb-2f09519f5c0a","type":"Title"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"90b73c90-6751-497b-91a4-2687c0e9afff","type":"Line"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"7a39f017-1a6a-48be-b9dc-2cfcffd5a9d0","type":"FixedTicker"},{"attributes":{"ticker":null},"id":"bfbd3b84-ea65-468d-80a4-0bc507dbc1f7","type":"LogTickFormatter"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,175286.75839479806]}},"id":"7a3558a2-1290-4827-9a3d-c625a77e8b0e","type":"ColumnDataSource"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"79773228-b238-46de-a46e-225b8a19bdec","type":"Circle"},{"attributes":{"below":[{"id":"0c40f414-7115-4162-ac89-d192308d67d9","type":"LinearAxis"}],"left":[{"id":"a86681af-270c-426f-99dc-5fe3d642ee83","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"0c40f414-7115-4162-ac89-d192308d67d9","type":"LinearAxis"},{"id":"a5ca3e57-e32a-4db6-8179-72c0ba47abcf","type":"Grid"},{"id":"a86681af-270c-426f-99dc-5fe3d642ee83","type":"LinearAxis"},{"id":"cba051c4-7034-4651-af30-532eed93f314","type":"Grid"},{"id":"e66ff0e4-d114-4529-9a0c-97317efe2e91","type":"BoxAnnotation"},{"id":"981660b0-6865-4ab3-a1e0-7f28cb9baec2","type":"Legend"},{"id":"be28dc51-16ef-4fd0-8f80-c604f3e6eaad","type":"GlyphRenderer"},{"id":"557b9797-c849-4fd1-b818-da278a904030","type":"GlyphRenderer"},{"id":"a88c23d3-43d3-4a29-a8c5-20a855f54ba0","type":"GlyphRenderer"}],"title":{"id":"374a93fa-028c-4ced-a6cb-2f09519f5c0a","type":"Title"},"tool_events":{"id":"7244a45f-c85d-4125-a7ae-0f84923c5fe7","type":"ToolEvents"},"toolbar":{"id":"2bb7d9a1-8c78-4cde-af39-f8eabb690582","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"4ca0bb4c-dc4d-4e88-9c27-d657bfabf665","type":"DataRange1d"},"x_scale":{"id":"dc7817a3-cd49-4b6a-89f8-537ebc9b77e2","type":"LinearScale"},"y_range":{"id":"c254a9b2-bef4-4b72-b5aa-f2c82c2caf7a","type":"DataRange1d"},"y_scale":{"id":"8248c6db-dbe7-456c-ab26-c3643aa8f701","type":"LinearScale"}},"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"},{"attributes":{"items":[{"id":"11f43b07-449e-4df3-882c-15505a06b258","type":"LegendItem"},{"id":"58547ae1-621e-4d92-ae27-5c68081b16e1","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"097ea389-c4b4-49e1-9023-05ce1d47706a","subtype":"Figure","type":"Plot"}},"id":"c61d2cac-746c-4c5c-916c-7d00d7d3630a","type":"Legend"},{"attributes":{},"id":"7244a45f-c85d-4125-a7ae-0f84923c5fe7","type":"ToolEvents"},{"attributes":{"data_source":{"id":"9edfe087-a9db-4571-ad5b-4681c0b86949","type":"ColumnDataSource"},"glyph":{"id":"9939fc53-c6da-4a01-8f13-c4bd2d5353e5","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2164bbae-a4b3-4db0-82ec-9b38abaf3bc0","type":"Circle"},"selection_glyph":null},"id":"996f1ef0-18fc-47d7-b849-38ded7d681b6","type":"GlyphRenderer"},{"attributes":{},"id":"06e67db3-4220-4bc5-9c70-f47ea8741d48","type":"BasicTickFormatter"},{"attributes":{"label":{"value":"x.std()"},"renderers":[{"id":"b058e492-67e4-41d1-bbb8-f32eae7b8603","type":"GlyphRenderer"}]},"id":"11f43b07-449e-4df3-882c-15505a06b258","type":"LegendItem"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"3940e366-9f09-44b8-97f8-2bd1a03e885c","type":"PanTool"},{"id":"285fd6ac-775c-4e1a-936a-68a5442242b7","type":"WheelZoomTool"},{"id":"8546812f-01ca-4877-98fd-c31364acbe3d","type":"BoxZoomTool"},{"id":"00dffc1d-3080-4d12-b51b-e86572d80407","type":"SaveTool"},{"id":"44cf5793-22b4-47bf-a7a1-da3521d2ceea","type":"ResetTool"},{"id":"1e78d025-bd71-4310-9185-a2857b169623","type":"HelpTool"}]},"id":"2bb7d9a1-8c78-4cde-af39-f8eabb690582","type":"Toolbar"},{"attributes":{"data_source":{"id":"2922c8ad-35b5-4e79-9792-6becb9fe41b8","type":"ColumnDataSource"},"glyph":{"id":"3ab5e293-8325-4cf4-a709-89e313909a73","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"eda3af37-fd3e-4b25-b800-c5e2cd345759","type":"Line"},"selection_glyph":null},"id":"bc3d125d-ffb3-4a2c-aa72-ab9513b02a62","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"}},"id":"b9db48f5-2638-4c94-a364-8e39eba47393","type":"PanTool"},{"attributes":{"axis_label":"cores","formatter":{"id":"06e67db3-4220-4bc5-9c70-f47ea8741d48","type":"BasicTickFormatter"},"plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"},"ticker":{"id":"17a64fd8-de2d-413d-8fb7-7b0e2aca8c2f","type":"FixedTicker"}},"id":"0c40f414-7115-4162-ac89-d192308d67d9","type":"LinearAxis"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"140ce005-bb9d-46cc-8eda-564195a0245d","type":"Circle"},{"attributes":{"data_source":{"id":"497683f3-df7a-41af-ae53-1146920e8780","type":"ColumnDataSource"},"glyph":{"id":"140ce005-bb9d-46cc-8eda-564195a0245d","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"5887b407-1bf1-40fc-a861-ab937970ec2e","type":"Circle"},"selection_glyph":null},"id":"d83e7c85-974f-43a8-bf57-d9ab409aad72","type":"GlyphRenderer"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"efc0b3c2-8ca9-460c-ab49-b51a72221c59","type":"Line"},{"attributes":{},"id":"ff027743-2af6-4770-9184-cc03c83a71bd","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"5887b407-1bf1-40fc-a861-ab937970ec2e","type":"Circle"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a7b57c45-0aa0-464d-a1f7-22b769b5acee","type":"Line"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"50315001-4f91-4b1a-b4e7-b4ef44c3ce43","type":"BasicTickFormatter"},"plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"},"ticker":{"id":"86a3e6f6-a663-434e-b8b7-44bbc19c24a9","type":"BasicTicker"}},"id":"a86681af-270c-426f-99dc-5fe3d642ee83","type":"LinearAxis"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2164bbae-a4b3-4db0-82ec-9b38abaf3bc0","type":"Circle"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"dfeb258a-6b2a-4e5f-998b-e0fada92b7f4","type":"Line"},{"attributes":{"data_source":{"id":"8be1d71b-98a0-4083-9421-aeab40ecde25","type":"ColumnDataSource"},"glyph":{"id":"90b73c90-6751-497b-91a4-2687c0e9afff","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2ed27db1-4511-40c7-9db0-12bd6aaf650b","type":"Line"},"selection_glyph":null},"id":"b4aad3bd-05de-476d-a05d-64797c63e4ab","type":"GlyphRenderer"},{"attributes":{},"id":"86a3e6f6-a663-434e-b8b7-44bbc19c24a9","type":"BasicTicker"},{"attributes":{"data_source":{"id":"7b5f2355-7a70-4f3d-8db3-05c17d0c3f53","type":"ColumnDataSource"},"glyph":{"id":"9634e806-9f97-4ba2-93d3-f7411b9ca83c","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"d3c423e7-6dd5-429c-a8ea-24c463171dbc","type":"Line"},"selection_glyph":null},"id":"07b8d079-8049-4102-a197-ff15e44f8107","type":"GlyphRenderer"},{"attributes":{"dimension":1,"plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"},"ticker":{"id":"86a3e6f6-a663-434e-b8b7-44bbc19c24a9","type":"BasicTicker"}},"id":"cba051c4-7034-4651-af30-532eed93f314","type":"Grid"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"3ab5e293-8325-4cf4-a709-89e313909a73","type":"Line"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"770006c8-d877-4b90-be85-1b312cc721a6","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"eda3af37-fd3e-4b25-b800-c5e2cd345759","type":"Line"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"b4587e42-522f-44d1-bdae-1770fdb06934","type":"FixedTicker"},{"attributes":{"data_source":{"id":"725dc24c-20c8-4bb8-a124-50832fa60c95","type":"ColumnDataSource"},"glyph":{"id":"770006c8-d877-4b90-be85-1b312cc721a6","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"efc0b3c2-8ca9-460c-ab49-b51a72221c59","type":"Line"},"selection_glyph":null},"id":"be28dc51-16ef-4fd0-8f80-c604f3e6eaad","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"gT1T0rcmkkBfZLyai4CeQPrpFfFJcqpAtJAQZsY2tkD936fnDJnCQEN9+GXL79BAP/LDy9Ijz0A7bbDIfRrUQJv5zSYbI9NA","dtype":"float64","shape":[9]}}},"id":"9edfe087-a9db-4571-ad5b-4681c0b86949","type":"ColumnDataSource"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"9939fc53-c6da-4a01-8f13-c4bd2d5353e5","type":"Circle"},{"attributes":{"child":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"da378e56-f9e8-445e-b465-2cde4901f11a","type":"Panel"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"0eb06f75-3f93-4b46-835e-a4511fcd840d","type":"Panel"},{"id":"a41999c2-103e-46f4-b55e-3c9610dd09da","type":"Panel"}]},"id":"7d705d97-1eec-49b4-bda6-9eebdb487600","type":"Tabs"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"e66ff0e4-d114-4529-9a0c-97317efe2e91","type":"BoxAnnotation"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"gT1T0rcmkkBfZLyai4CeQPrpFfFJcqpAtJAQZsY2tkD936fnDJnCQEN9+GXL79BAP/LDy9Ijz0A7bbDIfRrUQJv5zSYbI9NA","dtype":"float64","shape":[9]}}},"id":"2922c8ad-35b5-4e79-9792-6becb9fe41b8","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"}},"id":"51b20535-8160-496c-986d-8baaecbb2697","type":"WheelZoomTool"},{"attributes":{"plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"}},"id":"3940e366-9f09-44b8-97f8-2bd1a03e885c","type":"PanTool"},{"attributes":{"label":{"value":"x.std(axis=0)"},"renderers":[{"id":"bc3d125d-ffb3-4a2c-aa72-ab9513b02a62","type":"GlyphRenderer"}]},"id":"58547ae1-621e-4d92-ae27-5c68081b16e1","type":"LegendItem"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"SA88gR1ocECqGEzZQ5R8QGxc6tAEo45AjGt/DoKRmEDGXTCinsSgQMrrGdYeO65A67hcfiEHuUA4aLWDa6XIQMM6i3W2GtBA","dtype":"float64","shape":[9]}}},"id":"5765ae37-6a30-4667-90e7-73a12b390a18","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"54df90b3-a53c-4d20-93ed-f281f7681062","type":"ColumnDataSource"},"glyph":{"id":"fcc04348-ebd5-47a9-b747-a8d384d24b91","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"ca723c3f-bcb5-410f-a5fe-59a9ac9a7008","type":"Line"},"selection_glyph":null},"id":"2bac3660-5ea5-4e97-a5d4-862c9ace444c","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"uUoxEbZlhUBIyqgVRxWTQHa8HsxSVKFAbE0WQbrQskAfV+6MsWjBQB8gXbcI8NBAaYcHrUvT1EBXicp+gH7TQA1jrj5WlupA","dtype":"float64","shape":[9]}}},"id":"0ab80c92-5372-4728-a0da-e513a7ae8e2b","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"}},"id":"285fd6ac-775c-4e1a-936a-68a5442242b7","type":"WheelZoomTool"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"fcc04348-ebd5-47a9-b747-a8d384d24b91","type":"Line"},{"attributes":{"plot":null,"text":"DataFrames: Time Series"},"id":"47048622-1378-44e2-99f1-de93b56bab91","type":"Title"},{"attributes":{"overlay":{"id":"e66ff0e4-d114-4529-9a0c-97317efe2e91","type":"BoxAnnotation"},"plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"}},"id":"8546812f-01ca-4877-98fd-c31364acbe3d","type":"BoxZoomTool"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"7a2b565a-76a5-47cc-b363-6c71c9e408be","type":"Circle"},{"attributes":{"plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"}},"id":"00dffc1d-3080-4d12-b51b-e86572d80407","type":"SaveTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"0/MveXGpk0CwnWLotLafQFzSKK/0oatAGQzzlhiFvEBuV2Og1WzIQFHk16Cvv8pAs1osroIq1EBv606nwBHYQN/8RMqJ9tlA","dtype":"float64","shape":[9]}}},"id":"ce4017e6-9e2d-42c6-90aa-b10b01a952d1","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"}},"id":"44cf5793-22b4-47bf-a7a1-da3521d2ceea","type":"ResetTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,322140.36834698654]}},"id":"8be1d71b-98a0-4083-9421-aeab40ecde25","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"6f728c8d-c3bd-4ac6-b3d5-e7049adc2931","type":"Line"},{"attributes":{"plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"}},"id":"1e78d025-bd71-4310-9185-a2857b169623","type":"HelpTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"2ed27db1-4511-40c7-9db0-12bd6aaf650b","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"uUoxEbZlhUBIyqgVRxWTQHa8HsxSVKFAbE0WQbrQskAfV+6MsWjBQB8gXbcI8NBAaYcHrUvT1EBXicp+gH7TQA1jrj5WlupA","dtype":"float64","shape":[9]}}},"id":"725dc24c-20c8-4bb8-a124-50832fa60c95","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"ca723c3f-bcb5-410f-a5fe-59a9ac9a7008","type":"Line"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"f240d2c0-ff6c-491a-ab4e-61eae5d526ed","type":"PanTool"},{"id":"e2ce7b1b-cf07-411c-b287-d1b33ecf17f9","type":"WheelZoomTool"},{"id":"d9cf7207-525f-49a5-9224-035cd6dfc2dc","type":"BoxZoomTool"},{"id":"e4a0baa0-5ecc-4689-a4f4-6ee954c27052","type":"SaveTool"},{"id":"58423d76-834c-42ce-9dc5-b8729ce97321","type":"ResetTool"},{"id":"9b541db3-5f39-403a-ac85-bd080ebaa38a","type":"HelpTool"}]},"id":"bcf7b40a-0310-4ba6-8071-f0219b20abff","type":"Toolbar"},{"attributes":{"child":{"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"a5b8f31d-2417-4153-b180-1655c30646ec","type":"Panel"},{"attributes":{},"id":"50315001-4f91-4b1a-b4e7-b4ef44c3ce43","type":"BasicTickFormatter"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"ec591052-6ee6-4799-aba5-cec91ccbd76c","type":"FixedTicker"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"9e1ea25f-8e06-4321-86cf-a7eb3ae41d67","type":"Line"},{"attributes":{"callback":null,"start":0},"id":"ed5a7b95-48a4-4fec-ac8f-6f16eaf0c5d8","type":"DataRange1d"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,297389.95539566135]}},"id":"54df90b3-a53c-4d20-93ed-f281f7681062","type":"ColumnDataSource"},{"attributes":{"items":[{"id":"1cb14e57-d9e9-437f-8a5d-e10f8e72cc8f","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"4a3d7c66-d194-4313-bfb7-3005c94dbc3c","subtype":"Figure","type":"Plot"}},"id":"981660b0-6865-4ab3-a1e0-7f28cb9baec2","type":"Legend"},{"attributes":{"plot":null,"text":"Arrays: Nearest Neighbor"},"id":"c165289a-4f05-43ad-a4ca-1a91390483bf","type":"Title"},{"attributes":{},"id":"83201b83-a0a4-4eec-a296-5f52f8bbd13c","type":"ToolEvents"},{"attributes":{},"id":"6b2e1f16-bda3-4246-a7a9-7bfb330fc60f","type":"ToolEvents"},{"attributes":{"below":[{"id":"9ec87ca6-9a84-4edf-84fa-bec88e938f62","type":"LinearAxis"}],"left":[{"id":"8b50a8f3-cb96-4f46-b0eb-421532888322","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"9ec87ca6-9a84-4edf-84fa-bec88e938f62","type":"LinearAxis"},{"id":"940bc7b4-5373-490f-881f-eef70bc28979","type":"Grid"},{"id":"8b50a8f3-cb96-4f46-b0eb-421532888322","type":"LinearAxis"},{"id":"badd4c30-b02a-4b7c-b266-8b9a6136e084","type":"Grid"},{"id":"6e2d097b-519f-4d25-9d8f-71339b740fee","type":"BoxAnnotation"},{"id":"12862a29-a060-4fff-b654-18b2c2b74aa7","type":"Legend"},{"id":"a881979e-2750-4ccf-b89d-e358d963f201","type":"GlyphRenderer"},{"id":"1220894e-d5c5-4272-bf99-4f2213703bda","type":"GlyphRenderer"},{"id":"81e42002-a8be-4345-b4e1-df093044c5f1","type":"GlyphRenderer"},{"id":"72786059-6377-45c0-9914-95820228350f","type":"GlyphRenderer"},{"id":"7a8d5d6f-8fb1-4d50-88a8-5a53336ee7fa","type":"GlyphRenderer"},{"id":"123e0dbf-a6dd-488a-88e8-eadf20a2fe99","type":"GlyphRenderer"}],"title":{"id":"c165289a-4f05-43ad-a4ca-1a91390483bf","type":"Title"},"tool_events":{"id":"6b2e1f16-bda3-4246-a7a9-7bfb330fc60f","type":"ToolEvents"},"toolbar":{"id":"d1d8a1b5-1532-4a74-9e7d-3554d73a6513","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"ae5f6fd6-f43f-466a-ba47-9ec627c63007","type":"DataRange1d"},"x_scale":{"id":"68486794-1408-4221-b928-fa766fa764ad","type":"LinearScale"},"y_range":{"id":"749e5bb6-c494-4e2e-9e01-e5861c6f02f1","type":"DataRange1d"},"y_scale":{"id":"d67d8d4b-835a-41e8-8bc5-d4a6faf5158f","type":"LinearScale"}},"id":"764739d9-0946-4e3c-92d5-e83dab730b60","subtype":"Figure","type":"Plot"},{"attributes":{"label":{"value":"random"},"renderers":[{"id":"be28dc51-16ef-4fd0-8f80-c604f3e6eaad","type":"GlyphRenderer"}]},"id":"1cb14e57-d9e9-437f-8a5d-e10f8e72cc8f","type":"LegendItem"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"9cdbfea0-78a1-4816-95b3-20711d60ba64","type":"PanTool"},{"id":"d917a161-3ebd-4ff0-9e66-b1890604b6c7","type":"WheelZoomTool"},{"id":"c2e5b325-c321-4c08-b3da-cdf89da70574","type":"BoxZoomTool"},{"id":"60a7d2f5-41bc-4215-ac31-864b2bf34829","type":"SaveTool"},{"id":"66346441-b239-489b-900f-c4d4660d7478","type":"ResetTool"},{"id":"9e9eec61-23ba-4987-af83-bc09e49775bd","type":"HelpTool"}]},"id":"d1d8a1b5-1532-4a74-9e7d-3554d73a6513","type":"Toolbar"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"84379b7b-549c-4cb0-ace2-a9135bc8555a","type":"Circle"},{"attributes":{"data_source":{"id":"52629581-796c-4d48-a9b9-0aaa7e448f8f","type":"ColumnDataSource"},"glyph":{"id":"5002a81e-5bc4-4477-ad34-84bc9ee553ec","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4ae58565-4539-49f2-8237-6af4d1b7690a","type":"Line"},"selection_glyph":null},"id":"d1ea2033-418b-42dc-affa-05ab97a548a6","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"}},"id":"61d07d7f-f947-4d2a-b341-c4bf85907198","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"85719b8d-547b-42d8-a67b-dea193b89ff1","type":"BoxAnnotation"},"plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"}},"id":"57656b7a-1720-478f-ac0a-95a597024f3f","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"}},"id":"15a60aeb-0901-43a5-a728-241b8af7fc12","type":"SaveTool"},{"attributes":{"plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"}},"id":"a1f08da9-1313-44bd-8f3b-3a3d3c43eb46","type":"ResetTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"zYZNznMFgkAJVc0dH1aIQF6HLbAX8KBAEDiFMgobsEBOSk1Dh6G8QIcwzAFNYsdAkYwvunD+0kD/VzpMtBLaQNxDJJJ7lt5A","dtype":"float64","shape":[9]}}},"id":"0799bb10-bfb8-4366-a4c5-8c73a10400cb","type":"ColumnDataSource"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"8ddef416-c675-4c4d-b5a5-1fc5ef76f4d9","type":"Circle"},{"attributes":{"data_source":{"id":"0799bb10-bfb8-4366-a4c5-8c73a10400cb","type":"ColumnDataSource"},"glyph":{"id":"8ddef416-c675-4c4d-b5a5-1fc5ef76f4d9","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"8fac1d07-a0e0-4f17-bfbc-528790c4164b","type":"Circle"},"selection_glyph":null},"id":"43f1cd74-dc1a-4aab-8f12-2d6e8620b2f3","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"8fac1d07-a0e0-4f17-bfbc-528790c4164b","type":"Circle"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"3e1ace13-0a5c-46b9-9e15-ef3348af7d36","type":"Line"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"ff7e9255-d098-4787-a969-19126cf71054","type":"Panel"},{"id":"53f31c0f-fad8-43d0-ab0c-d7fffe937e21","type":"Panel"}]},"id":"4d110cea-f4d8-49a1-bd97-89adb074f930","type":"Tabs"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"5002a81e-5bc4-4477-ad34-84bc9ee553ec","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"4ae58565-4539-49f2-8237-6af4d1b7690a","type":"Line"},{"attributes":{"label":{"value":"df[0].std()"},"renderers":[{"id":"ef803fd0-35ee-436c-b303-af5e06365f2e","type":"GlyphRenderer"}]},"id":"2f3b9045-758c-457b-82e4-33b756b648ca","type":"LegendItem"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"VDws0AG1nUDZ+18BvWCtQLxzwc5E/bpAaCwXiat5w0Bb8Sa8jEzHQLDjXzrvA8JAB24/B96Gw0AcKVqQRQLDQPc5BRJjuMJA","dtype":"float64","shape":[9]}}},"id":"28d7c288-74fa-4713-a4c4-b5132993efaa","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"47214d03-7988-4f6f-8fe2-b8516eddf652","type":"LogAxis"}],"left":[{"id":"37a11cef-799c-4edc-afd4-a9de54bf0603","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"47214d03-7988-4f6f-8fe2-b8516eddf652","type":"LogAxis"},{"id":"4474c789-1ca5-4c52-bd13-987e6a967ee2","type":"Grid"},{"id":"37a11cef-799c-4edc-afd4-a9de54bf0603","type":"LogAxis"},{"id":"6652ad33-92c0-4906-879d-ad91091a9bf1","type":"Grid"},{"id":"718a4478-4b1a-41f2-8226-379ae6e8f2bd","type":"BoxAnnotation"},{"id":"d299c857-0c66-423b-b2de-f913d01560fd","type":"Legend"},{"id":"a6793c13-f7d5-44e2-a22d-25ec492a5b20","type":"GlyphRenderer"},{"id":"fdfed4e2-9e87-4e34-b162-bd3ae7ae904c","type":"GlyphRenderer"},{"id":"21efc981-8921-4624-9d1b-0a0b59115c83","type":"GlyphRenderer"}],"title":{"id":"2134e970-89f1-4641-a947-005ad19e747d","type":"Title"},"tool_events":{"id":"55638ec9-8e5e-46b2-bf60-b73f95746859","type":"ToolEvents"},"toolbar":{"id":"558347a4-b08d-474f-ba3e-19985a988d80","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"861cd34d-128e-4bba-bdfb-68e9bf495dfb","type":"DataRange1d"},"x_scale":{"id":"16067309-af37-4e3e-b725-219f604c0294","type":"LogScale"},"y_range":{"id":"8801673f-bd19-4c63-b61b-7cb44aa99202","type":"DataRange1d"},"y_scale":{"id":"20d88806-06b2-4982-a565-582717e24c44","type":"LogScale"}},"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"VDws0AG1nUDZ+18BvWCtQLxzwc5E/bpAaCwXiat5w0Bb8Sa8jEzHQLDjXzrvA8JAB24/B96Gw0AcKVqQRQLDQPc5BRJjuMJA","dtype":"float64","shape":[9]}}},"id":"52629581-796c-4d48-a9b9-0aaa7e448f8f","type":"ColumnDataSource"},{"attributes":{"plot":null,"text":"DataFrames: Random Access"},"id":"8b58d2e1-940d-46bb-b62b-49993c97f583","type":"Title"},{"attributes":{"label":{"value":"arithmetic"},"renderers":[{"id":"d1ea2033-418b-42dc-affa-05ab97a548a6","type":"GlyphRenderer"}]},"id":"49216e78-0ce7-4ef2-8c38-04c33f920efb","type":"LegendItem"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"a8ef1855-8b30-4859-8c14-b570f5b7928a","type":"Line"},{"attributes":{"below":[{"id":"753f4ce9-d390-4b58-a059-c518a5e49ce1","type":"LinearAxis"}],"left":[{"id":"4d454c38-1899-4eed-9645-d410fe6182dc","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"753f4ce9-d390-4b58-a059-c518a5e49ce1","type":"LinearAxis"},{"id":"6006aa04-b603-4bf5-98ac-0f3e964532b4","type":"Grid"},{"id":"4d454c38-1899-4eed-9645-d410fe6182dc","type":"LinearAxis"},{"id":"c8db7769-7b21-4e5f-bc50-de9b79a58acb","type":"Grid"},{"id":"1fbe31f9-bc92-471f-a1c7-7c615e5a8ceb","type":"BoxAnnotation"},{"id":"36cef690-7379-487b-ab9a-3fcf6b698d56","type":"Legend"},{"id":"c98728aa-5b20-45cb-b0eb-e000c83d1e0b","type":"GlyphRenderer"},{"id":"1b7b8508-2bf1-4928-822f-ddf0e68a8e6d","type":"GlyphRenderer"},{"id":"09ee4a96-d17c-425a-963e-4577b347ca9a","type":"GlyphRenderer"}],"title":{"id":"8b58d2e1-940d-46bb-b62b-49993c97f583","type":"Title"},"tool_events":{"id":"5ba50c74-b6e8-4949-aa94-e04464dfcdf6","type":"ToolEvents"},"toolbar":{"id":"fb365b69-0937-4b12-aed7-3664926439af","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"31a37c7a-531a-4856-9c21-0374ecd89715","type":"DataRange1d"},"x_scale":{"id":"c26c51cc-fbf2-4dd2-b059-8d10d2e7d09d","type":"LinearScale"},"y_range":{"id":"20e62bf1-e0d7-446b-a801-250ba78d82d1","type":"DataRange1d"},"y_scale":{"id":"8513aafd-08a4-4bd5-a114-e57d57ae92e6","type":"LinearScale"}},"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"ff541f2a-7cc8-4ffc-ba5f-f7fa99a2277e","type":"Circle"},{"attributes":{"data_source":{"id":"f8412bd2-b8d7-45ae-bf83-be9f99c253c3","type":"ColumnDataSource"},"glyph":{"id":"a8ef1855-8b30-4859-8c14-b570f5b7928a","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"d966efd2-13a1-4d33-ad47-6ed8a16258a9","type":"Line"},"selection_glyph":null},"id":"1536de68-3f85-4ec4-9468-0e3fc8b2e64e","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2ba9c818-95cb-4c26-bb18-08574a27ac76","type":"Circle"},{"attributes":{"data_source":{"id":"28d7c288-74fa-4713-a4c4-b5132993efaa","type":"ColumnDataSource"},"glyph":{"id":"ff541f2a-7cc8-4ffc-ba5f-f7fa99a2277e","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2ba9c818-95cb-4c26-bb18-08574a27ac76","type":"Circle"},"selection_glyph":null},"id":"78d02e69-5824-47a6-92da-f24d594ffdac","type":"GlyphRenderer"},{"attributes":{},"id":"5ba50c74-b6e8-4949-aa94-e04464dfcdf6","type":"ToolEvents"},{"attributes":{"data_source":{"id":"0084dd1d-b5b6-4249-b7dd-4d81ae8d44d9","type":"ColumnDataSource"},"glyph":{"id":"e07a0b7a-e02f-4857-8704-45e71b5bc074","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2437b245-9f04-4e74-afb9-429ff4bc323e","type":"Line"},"selection_glyph":null},"id":"66a1bbc2-db12-4787-93f9-0f0b4ed2a298","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,147630.4757338077]}},"id":"f8412bd2-b8d7-45ae-bf83-be9f99c253c3","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"d966efd2-13a1-4d33-ad47-6ed8a16258a9","type":"Line"},{"attributes":{},"id":"16067309-af37-4e3e-b725-219f604c0294","type":"LogScale"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"6d26b10e-948b-4ae1-b8a0-c48032e939cc","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,123285.74943667026]}},"id":"8250fc8b-ed67-44ae-b653-795a1a058612","type":"ColumnDataSource"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"7537c165-ab7c-43e5-8751-187c14d86800","type":"FixedTicker"},{"attributes":{},"id":"55638ec9-8e5e-46b2-bf60-b73f95746859","type":"ToolEvents"},{"attributes":{"plot":null,"text":"DataFrames: Random Access"},"id":"2134e970-89f1-4641-a947-005ad19e747d","type":"Title"},{"attributes":{"callback":null,"start":0},"id":"861cd34d-128e-4bba-bdfb-68e9bf495dfb","type":"DataRange1d"},{"attributes":{"axis_label":"cores","formatter":{"id":"bfae64d2-e17a-4c51-b57c-6ac963197229","type":"LogTickFormatter"},"plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"},"ticker":{"id":"7537c165-ab7c-43e5-8751-187c14d86800","type":"FixedTicker"}},"id":"47214d03-7988-4f6f-8fe2-b8516eddf652","type":"LogAxis"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"de25869c-2180-4518-a20f-bdf692f81aa1","type":"PanTool"},{"id":"a4b243e0-e791-4a8d-aec9-365070929b02","type":"WheelZoomTool"},{"id":"b9e581e8-8947-4185-bb76-39863c3ef43d","type":"BoxZoomTool"},{"id":"bcecb8b5-28bd-4f4f-bdb3-a693d7ebae56","type":"SaveTool"},{"id":"3270958b-802a-4185-991e-b40fd50477a0","type":"ResetTool"},{"id":"ecdc3244-d890-4831-ae2f-4b9a127b2173","type":"HelpTool"}]},"id":"558347a4-b08d-474f-ba3e-19985a988d80","type":"Toolbar"},{"attributes":{"num_minor_ticks":10},"id":"d557960d-4ccd-4c90-a6c6-2d0dd129d409","type":"LogTicker"},{"attributes":{"num_minor_ticks":10},"id":"dd8262db-e0fb-4c10-b9ed-67bdec670c63","type":"LogTicker"},{"attributes":{"callback":null,"end":543.5412502227334,"start":0},"id":"8801673f-bd19-4c63-b61b-7cb44aa99202","type":"DataRange1d"},{"attributes":{"ticker":null},"id":"bfae64d2-e17a-4c51-b57c-6ac963197229","type":"LogTickFormatter"},{"attributes":{"plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"},"ticker":{"id":"d557960d-4ccd-4c90-a6c6-2d0dd129d409","type":"LogTicker"}},"id":"4474c789-1ca5-4c52-bd13-987e6a967ee2","type":"Grid"},{"attributes":{"plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"}},"id":"de25869c-2180-4518-a20f-bdf692f81aa1","type":"PanTool"},{"attributes":{"axis_label":"bytes/s","formatter":{"id":"ac0e7478-7984-42f8-af1c-1e95a6dff490","type":"LogTickFormatter"},"plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"},"ticker":{"id":"dd8262db-e0fb-4c10-b9ed-67bdec670c63","type":"LogTicker"}},"id":"37a11cef-799c-4edc-afd4-a9de54bf0603","type":"LogAxis"},{"attributes":{},"id":"20d88806-06b2-4982-a565-582717e24c44","type":"LogScale"},{"attributes":{"data_source":{"id":"f9e1f8dd-2451-4dee-8066-39e2c4b18c1d","type":"ColumnDataSource"},"glyph":{"id":"4309a4f6-e218-43e5-833f-968ad0aaeb9e","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3e1ace13-0a5c-46b9-9e15-ef3348af7d36","type":"Line"},"selection_glyph":null},"id":"a6793c13-f7d5-44e2-a22d-25ec492a5b20","type":"GlyphRenderer"},{"attributes":{"dimension":1,"plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"},"ticker":{"id":"dd8262db-e0fb-4c10-b9ed-67bdec670c63","type":"LogTicker"}},"id":"6652ad33-92c0-4906-879d-ad91091a9bf1","type":"Grid"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"4309a4f6-e218-43e5-833f-968ad0aaeb9e","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"U06x/VsZfkD5iFMkcqh/QEM6qdQn+H5AoYHbLshYfUBM9NAUrJp+QL4s/3pU/IBApWWsI7IYfkArSDatYKF1QLe4CmYnkXZA","dtype":"float64","shape":[9]}}},"id":"2e54a943-d381-4da1-b144-b9546371fec2","type":"ColumnDataSource"},{"attributes":{"child":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"},"title":"log"},"id":"ff7e9255-d098-4787-a969-19126cf71054","type":"Panel"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"718a4478-4b1a-41f2-8226-379ae6e8f2bd","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"}},"id":"a4b243e0-e791-4a8d-aec9-365070929b02","type":"WheelZoomTool"},{"attributes":{"plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"}},"id":"3270958b-802a-4185-991e-b40fd50477a0","type":"ResetTool"},{"attributes":{"overlay":{"id":"718a4478-4b1a-41f2-8226-379ae6e8f2bd","type":"BoxAnnotation"},"plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"}},"id":"b9e581e8-8947-4185-bb76-39863c3ef43d","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"}},"id":"bcecb8b5-28bd-4f4f-bdb3-a693d7ebae56","type":"SaveTool"},{"attributes":{"plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"}},"id":"ecdc3244-d890-4831-ae2f-4b9a127b2173","type":"HelpTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"U06x/VsZfkD5iFMkcqh/QEM6qdQn+H5AoYHbLshYfUBM9NAUrJp+QL4s/3pU/IBApWWsI7IYfkArSDatYKF1QLe4CmYnkXZA","dtype":"float64","shape":[9]}}},"id":"f9e1f8dd-2451-4dee-8066-39e2c4b18c1d","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"8250fc8b-ed67-44ae-b653-795a1a058612","type":"ColumnDataSource"},"glyph":{"id":"06c3006f-0774-43f6-aadf-bae7b2da8362","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"c092a6df-51a8-4ab0-9c1c-dd94fa07f46d","type":"Line"},"selection_glyph":null},"id":"21efc981-8921-4624-9d1b-0a0b59115c83","type":"GlyphRenderer"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"c092a6df-51a8-4ab0-9c1c-dd94fa07f46d","type":"Line"},{"attributes":{"ticker":null},"id":"ac0e7478-7984-42f8-af1c-1e95a6dff490","type":"LogTickFormatter"},{"attributes":{"items":[{"id":"0c7b3508-6eb3-4183-9aa0-0751a36a881f","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"bd53afa0-afcc-4aa5-a575-afdfd9223821","subtype":"Figure","type":"Plot"}},"id":"d299c857-0c66-423b-b2de-f913d01560fd","type":"Legend"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"06c3006f-0774-43f6-aadf-bae7b2da8362","type":"Line"},{"attributes":{"label":{"value":"df.loc[123456]"},"renderers":[{"id":"a6793c13-f7d5-44e2-a22d-25ec492a5b20","type":"GlyphRenderer"}]},"id":"0c7b3508-6eb3-4183-9aa0-0751a36a881f","type":"LegendItem"},{"attributes":{"callback":null,"end":543.5412502227334,"start":0},"id":"20e62bf1-e0d7-446b-a801-250ba78d82d1","type":"DataRange1d"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"ece331ec-6fb2-4089-8b37-3920e038c682","type":"PanTool"},{"id":"01965bf4-e8c4-4ab4-ba11-d812d609dfe5","type":"WheelZoomTool"},{"id":"5bae1a67-b093-424d-9098-79c5e411c1e5","type":"BoxZoomTool"},{"id":"20d93f6e-d1ac-41f7-9eb4-5bb797a77934","type":"SaveTool"},{"id":"17d27847-a15f-4d57-8436-dd60b85219ef","type":"ResetTool"},{"id":"2c4661b2-6594-4d44-941f-b9b29a09447a","type":"HelpTool"}]},"id":"fb365b69-0937-4b12-aed7-3664926439af","type":"Toolbar"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"18656b28-aadf-4f16-a578-beee40457510","type":"Circle"},{"attributes":{"data_source":{"id":"2e54a943-d381-4da1-b144-b9546371fec2","type":"ColumnDataSource"},"glyph":{"id":"18656b28-aadf-4f16-a578-beee40457510","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3b05f731-e4fa-442b-a87e-4a4bd72a215c","type":"Circle"},"selection_glyph":null},"id":"fdfed4e2-9e87-4e34-b162-bd3ae7ae904c","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"3b05f731-e4fa-442b-a87e-4a4bd72a215c","type":"Circle"},{"attributes":{"data_source":{"id":"c6b1dde5-997a-42d4-a3be-0099f9fafcca","type":"ColumnDataSource"},"glyph":{"id":"3ba055f8-c19e-4f01-80ac-432301ad1555","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"9dde85bf-6688-4bae-b751-cbf4ecd3c2bd","type":"Line"},"selection_glyph":null},"id":"09ee4a96-d17c-425a-963e-4577b347ca9a","type":"GlyphRenderer"},{"attributes":{"callback":null,"start":0},"id":"31a37c7a-531a-4856-9c21-0374ecd89715","type":"DataRange1d"},{"attributes":{"child":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"53f31c0f-fad8-43d0-ab0c-d7fffe937e21","type":"Panel"},{"attributes":{},"id":"c26c51cc-fbf2-4dd2-b059-8d10d2e7d09d","type":"LinearScale"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"18a4fa8f-8a4f-4a6d-93bf-f68a0417ac7e","type":"Line"},{"attributes":{},"id":"8513aafd-08a4-4bd5-a114-e57d57ae92e6","type":"LinearScale"},{"attributes":{"plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"},"ticker":{"id":"9a9dfa8c-8d3c-4808-b61c-ade03c69d709","type":"BasicTicker"}},"id":"6006aa04-b603-4bf5-98ac-0f3e964532b4","type":"Grid"},{"attributes":{"axis_label":"cores","formatter":{"id":"f6138c94-b325-4c78-9ddc-db2f542e7ad5","type":"BasicTickFormatter"},"plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"},"ticker":{"id":"dd63b41d-c89b-457f-ae85-56a166c15053","type":"FixedTicker"}},"id":"753f4ce9-d390-4b58-a059-c518a5e49ce1","type":"LinearAxis"},{"attributes":{},"id":"9a9dfa8c-8d3c-4808-b61c-ade03c69d709","type":"BasicTicker"},{"attributes":{"axis_label":"bytes/s","formatter":{"id":"da1c3229-7ed4-4b85-8dc8-f1a764009e6c","type":"BasicTickFormatter"},"plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"},"ticker":{"id":"5f0ecc27-22ea-4eb4-b717-caa026a4f56a","type":"BasicTicker"}},"id":"4d454c38-1899-4eed-9645-d410fe6182dc","type":"LinearAxis"},{"attributes":{},"id":"5f0ecc27-22ea-4eb4-b717-caa026a4f56a","type":"BasicTicker"},{"attributes":{"dimension":1,"plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"},"ticker":{"id":"5f0ecc27-22ea-4eb4-b717-caa026a4f56a","type":"BasicTicker"}},"id":"c8db7769-7b21-4e5f-bc50-de9b79a58acb","type":"Grid"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b7a5b62c-bd62-4775-bf00-995acba88608","type":"Line"},{"attributes":{},"id":"f6138c94-b325-4c78-9ddc-db2f542e7ad5","type":"BasicTickFormatter"},{"attributes":{"data_source":{"id":"13edcb3a-0db1-45d7-b214-0bc590030c00","type":"ColumnDataSource"},"glyph":{"id":"18a4fa8f-8a4f-4a6d-93bf-f68a0417ac7e","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"b7a5b62c-bd62-4775-bf00-995acba88608","type":"Line"},"selection_glyph":null},"id":"c98728aa-5b20-45cb-b0eb-e000c83d1e0b","type":"GlyphRenderer"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"1fbe31f9-bc92-471f-a1c7-7c615e5a8ceb","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"}},"id":"ece331ec-6fb2-4089-8b37-3920e038c682","type":"PanTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"U06x/VsZfkD5iFMkcqh/QEM6qdQn+H5AoYHbLshYfUBM9NAUrJp+QL4s/3pU/IBApWWsI7IYfkArSDatYKF1QLe4CmYnkXZA","dtype":"float64","shape":[9]}}},"id":"489c22a9-e13c-4c2f-bef1-fe3998541433","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"}},"id":"01965bf4-e8c4-4ab4-ba11-d812d609dfe5","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"1fbe31f9-bc92-471f-a1c7-7c615e5a8ceb","type":"BoxAnnotation"},"plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"}},"id":"5bae1a67-b093-424d-9098-79c5e411c1e5","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"}},"id":"20d93f6e-d1ac-41f7-9eb4-5bb797a77934","type":"SaveTool"},{"attributes":{"plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"}},"id":"17d27847-a15f-4d57-8436-dd60b85219ef","type":"ResetTool"},{"attributes":{"plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"}},"id":"2c4661b2-6594-4d44-941f-b9b29a09447a","type":"HelpTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"U06x/VsZfkD5iFMkcqh/QEM6qdQn+H5AoYHbLshYfUBM9NAUrJp+QL4s/3pU/IBApWWsI7IYfkArSDatYKF1QLe4CmYnkXZA","dtype":"float64","shape":[9]}}},"id":"13edcb3a-0db1-45d7-b214-0bc590030c00","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"1e849201-56ff-4961-9fad-ad3e390b0b84","type":"LogAxis"}],"left":[{"id":"5b086bdd-94d7-4ecc-a808-62305578339a","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"1e849201-56ff-4961-9fad-ad3e390b0b84","type":"LogAxis"},{"id":"9a8a88eb-dd52-483a-990f-7450b106004e","type":"Grid"},{"id":"5b086bdd-94d7-4ecc-a808-62305578339a","type":"LogAxis"},{"id":"27788952-6cd6-474e-a0e6-72adb1dd2b27","type":"Grid"},{"id":"ae9e26bd-f1c5-4428-9cf9-a219db087cd7","type":"BoxAnnotation"},{"id":"e94cfdab-a4c2-48a2-8df7-736db028f287","type":"Legend"},{"id":"000f6e25-f829-469e-b780-cb0242e3a7b2","type":"GlyphRenderer"},{"id":"9d9f4b53-3055-4c9d-be31-5b3f8e490207","type":"GlyphRenderer"},{"id":"ef803fd0-35ee-436c-b303-af5e06365f2e","type":"GlyphRenderer"},{"id":"fab646e5-5445-44e6-a6b2-7ea6e79e8bf3","type":"GlyphRenderer"},{"id":"05ced829-496d-462f-ae2d-1f5499a1f090","type":"GlyphRenderer"},{"id":"d7a8e78a-acbf-40cf-8053-6ee0e66f2b88","type":"GlyphRenderer"},{"id":"acfdfd9a-88eb-4304-8a3e-84611f33f47b","type":"GlyphRenderer"},{"id":"671e7a2f-b80f-4a4d-9aef-365c72389908","type":"GlyphRenderer"},{"id":"0ff3ae63-4217-4531-910b-ebe12ee6c8bd","type":"GlyphRenderer"}],"title":{"id":"34326b5a-8a5b-4055-97e5-94ac3ada266b","type":"Title"},"tool_events":{"id":"2d56e258-7c42-4604-967f-0be7f343e299","type":"ToolEvents"},"toolbar":{"id":"5334e99f-7403-4675-8861-86e795329fc0","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"d4cd0f2c-4386-41df-80d9-5fda13c9c483","type":"DataRange1d"},"x_scale":{"id":"4637c9d2-5603-4d27-b014-17d8825b54b6","type":"LogScale"},"y_range":{"id":"6d8b57f3-de64-4dd0-9cf5-0f8ee6bef4e3","type":"DataRange1d"},"y_scale":{"id":"357859f4-cd8a-4d9f-b1ce-545c236f3a28","type":"LogScale"}},"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"da1c3229-7ed4-4b85-8dc8-f1a764009e6c","type":"BasicTickFormatter"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"3636d692-9f9c-4c45-96c1-6e32c1ba4925","type":"Line"},{"attributes":{"items":[{"id":"f8f20edb-dbe9-4122-aac8-b804b5d834fe","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"a86def8f-0374-4c0f-85c5-de548a1dbba5","subtype":"Figure","type":"Plot"}},"id":"36cef690-7379-487b-ab9a-3fcf6b698d56","type":"Legend"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"d2cd1935-5500-4033-8dbb-e3d6802d8d0c","type":"Panel"},{"id":"26ff1b0e-0ff1-4a7e-be62-eb15afe2b542","type":"Panel"}]},"id":"682f90be-e284-4f12-a195-8e4927a7b6dc","type":"Tabs"},{"attributes":{"label":{"value":"df.loc[123456]"},"renderers":[{"id":"c98728aa-5b20-45cb-b0eb-e000c83d1e0b","type":"GlyphRenderer"}]},"id":"f8f20edb-dbe9-4122-aac8-b804b5d834fe","type":"LegendItem"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"8e2cac76-fee4-459e-9829-7f4e2e92a49d","type":"Circle"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b00c573b-e447-44b5-8c30-f2a626f5510d","type":"Circle"},{"attributes":{"data_source":{"id":"489c22a9-e13c-4c2f-bef1-fe3998541433","type":"ColumnDataSource"},"glyph":{"id":"b00c573b-e447-44b5-8c30-f2a626f5510d","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"183ee589-72bb-4070-9023-f9eb3b5d18ea","type":"Circle"},"selection_glyph":null},"id":"1b7b8508-2bf1-4928-822f-ddf0e68a8e6d","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"183ee589-72bb-4070-9023-f9eb3b5d18ea","type":"Circle"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"dd63b41d-c89b-457f-ae85-56a166c15053","type":"FixedTicker"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"2a30a863-9480-470a-870b-5008114c481b","type":"Line"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"1f93e094-cb4f-4585-882c-274eeac06db7","type":"Circle"},{"attributes":{"data_source":{"id":"552924f5-e214-4bbf-aeb6-bf3cd02145da","type":"ColumnDataSource"},"glyph":{"id":"1f93e094-cb4f-4585-882c-274eeac06db7","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"8e2cac76-fee4-459e-9829-7f4e2e92a49d","type":"Circle"},"selection_glyph":null},"id":"fab646e5-5445-44e6-a6b2-7ea6e79e8bf3","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"8y0AKWPAZkCdUmbwFEF2QI6UudUfxYVAYqt1iZwWkUDDRzQLwfGbQB6idyjfk55A/UKAURi0l0CkSi02kcaaQNjl7PoIv5pA","dtype":"float64","shape":[9]}}},"id":"552924f5-e214-4bbf-aeb6-bf3cd02145da","type":"ColumnDataSource"},{"attributes":{"plot":null,"text":"DataFrames: Reductions"},"id":"34326b5a-8a5b-4055-97e5-94ac3ada266b","type":"Title"},{"attributes":{"callback":null,"start":0},"id":"d4cd0f2c-4386-41df-80d9-5fda13c9c483","type":"DataRange1d"},{"attributes":{},"id":"2d56e258-7c42-4604-967f-0be7f343e299","type":"ToolEvents"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"81841aa7-676d-402a-8666-6664cf5519ae","type":"PanTool"},{"id":"06fbd4d5-fe13-42d0-9421-8d0877b78efa","type":"WheelZoomTool"},{"id":"77426e4c-cc31-4908-940c-e24d10e80abb","type":"BoxZoomTool"},{"id":"da292bcf-3c4c-4796-abd6-94dc90c9c8bb","type":"SaveTool"},{"id":"262cfe98-756b-4aed-b2e9-fcd9a7fcb524","type":"ResetTool"},{"id":"48e2c614-a86a-4802-b12a-53e7d558caa8","type":"HelpTool"}]},"id":"5334e99f-7403-4675-8861-86e795329fc0","type":"Toolbar"},{"attributes":{"num_minor_ticks":10},"id":"a9bfe4d8-3b3a-4162-aaf4-35869eba98a4","type":"LogTicker"},{"attributes":{"num_minor_ticks":10},"id":"7f323a76-701b-4ca0-93cc-d0792f265917","type":"LogTicker"},{"attributes":{"callback":null,"end":31167.568472113522,"start":0},"id":"6d8b57f3-de64-4dd0-9cf5-0f8ee6bef4e3","type":"DataRange1d"},{"attributes":{"ticker":null},"id":"83ba2660-26bc-4459-ac79-33ce297747bd","type":"LogTickFormatter"},{"attributes":{"plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"},"ticker":{"id":"a9bfe4d8-3b3a-4162-aaf4-35869eba98a4","type":"LogTicker"}},"id":"9a8a88eb-dd52-483a-990f-7450b106004e","type":"Grid"},{"attributes":{},"id":"4637c9d2-5603-4d27-b014-17d8825b54b6","type":"LogScale"},{"attributes":{"axis_label":"cores","formatter":{"id":"83ba2660-26bc-4459-ac79-33ce297747bd","type":"LogTickFormatter"},"plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"},"ticker":{"id":"51bde773-d544-40ca-95ac-f509ded2ce8f","type":"FixedTicker"}},"id":"1e849201-56ff-4961-9fad-ad3e390b0b84","type":"LogAxis"},{"attributes":{},"id":"357859f4-cd8a-4d9f-b1ce-545c236f3a28","type":"LogScale"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"f200cb3d-4d8b-4a61-8b15-ef98d3ee5c47","type":"LogTickFormatter"},"plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"},"ticker":{"id":"7f323a76-701b-4ca0-93cc-d0792f265917","type":"LogTicker"}},"id":"5b086bdd-94d7-4ecc-a808-62305578339a","type":"LogAxis"},{"attributes":{"dimension":1,"plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"},"ticker":{"id":"7f323a76-701b-4ca0-93cc-d0792f265917","type":"LogTicker"}},"id":"27788952-6cd6-474e-a0e6-72adb1dd2b27","type":"Grid"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"ab0cdf84-d38b-4e8f-961c-ae46e8d5792e","type":"Line"},{"attributes":{"data_source":{"id":"cde0055d-6f08-4d55-bc20-b657c5ceefab","type":"ColumnDataSource"},"glyph":{"id":"ab0cdf84-d38b-4e8f-961c-ae46e8d5792e","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3636d692-9f9c-4c45-96c1-6e32c1ba4925","type":"Line"},"selection_glyph":null},"id":"000f6e25-f829-469e-b780-cb0242e3a7b2","type":"GlyphRenderer"},{"attributes":{"child":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"},"title":"log"},"id":"d2cd1935-5500-4033-8dbb-e3d6802d8d0c","type":"Panel"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"ae9e26bd-f1c5-4428-9cf9-a219db087cd7","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"}},"id":"81841aa7-676d-402a-8666-6664cf5519ae","type":"PanTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"CPDOA7wEdkDPvmrzVKmGQPPjMBfneZZAL4RSELzboUAewsNdADiwQGQLuqvxDLlAiDO3aHUuwUBjrjECPpnGQMOz+hDDrsRA","dtype":"float64","shape":[9]}}},"id":"dbe7a236-6338-49bd-81dd-e948ede2c4e4","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"}},"id":"06fbd4d5-fe13-42d0-9421-8d0877b78efa","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"ae9e26bd-f1c5-4428-9cf9-a219db087cd7","type":"BoxAnnotation"},"plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"}},"id":"77426e4c-cc31-4908-940c-e24d10e80abb","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"}},"id":"da292bcf-3c4c-4796-abd6-94dc90c9c8bb","type":"SaveTool"},{"attributes":{"plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"}},"id":"262cfe98-756b-4aed-b2e9-fcd9a7fcb524","type":"ResetTool"},{"attributes":{"plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"}},"id":"48e2c614-a86a-4802-b12a-53e7d558caa8","type":"HelpTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"CPDOA7wEdkDPvmrzVKmGQPPjMBfneZZAL4RSELzboUAewsNdADiwQGQLuqvxDLlAiDO3aHUuwUBjrjECPpnGQMOz+hDDrsRA","dtype":"float64","shape":[9]}}},"id":"cde0055d-6f08-4d55-bc20-b657c5ceefab","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,46595.0987549684]}},"id":"93d1534e-16d4-4453-84aa-356802b328a8","type":"ColumnDataSource"},{"attributes":{"ticker":null},"id":"f200cb3d-4d8b-4a61-8b15-ef98d3ee5c47","type":"LogTickFormatter"},{"attributes":{"data_source":{"id":"7b276bde-624a-404d-a0c9-3b5647fbe4c5","type":"ColumnDataSource"},"glyph":{"id":"cc5db39a-16cb-4e1b-86d6-8f12c85cc5af","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1593145e-d449-43ce-8a39-249cfa0ecae8","type":"Line"},"selection_glyph":null},"id":"ef803fd0-35ee-436c-b303-af5e06365f2e","type":"GlyphRenderer"},{"attributes":{"items":[{"id":"674c14ce-8b11-47bc-8e6f-e722b96f9cc0","type":"LegendItem"},{"id":"2f3b9045-758c-457b-82e4-33b756b648ca","type":"LegendItem"},{"id":"0dee6c19-e80f-4b2a-8572-c5cd37b26727","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"39d25c5a-3587-4f53-81c7-7a8e11174dcc","subtype":"Figure","type":"Plot"}},"id":"e94cfdab-a4c2-48a2-8df7-736db028f287","type":"Legend"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"1593145e-d449-43ce-8a39-249cfa0ecae8","type":"Line"},{"attributes":{"label":{"value":"df.std()"},"renderers":[{"id":"000f6e25-f829-469e-b780-cb0242e3a7b2","type":"GlyphRenderer"}]},"id":"674c14ce-8b11-47bc-8e6f-e722b96f9cc0","type":"LegendItem"},{"attributes":{"data_source":{"id":"93d1534e-16d4-4453-84aa-356802b328a8","type":"ColumnDataSource"},"glyph":{"id":"2a30a863-9480-470a-870b-5008114c481b","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"cd58c1ae-ad48-4da0-9d98-64682209015a","type":"Line"},"selection_glyph":null},"id":"671e7a2f-b80f-4a4d-9aef-365c72389908","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"0e35e0e3-5612-4276-af4f-cb0f1f879608","type":"Circle"},{"attributes":{"data_source":{"id":"dbe7a236-6338-49bd-81dd-e948ede2c4e4","type":"ColumnDataSource"},"glyph":{"id":"0e35e0e3-5612-4276-af4f-cb0f1f879608","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"cb5efd96-7569-49c6-8114-bb34a68c2c37","type":"Circle"},"selection_glyph":null},"id":"9d9f4b53-3055-4c9d-be31-5b3f8e490207","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"cb5efd96-7569-49c6-8114-bb34a68c2c37","type":"Circle"},{"attributes":{"data_source":{"id":"7a8cb52b-1e55-4941-9272-38c7c42a078e","type":"ColumnDataSource"},"glyph":{"id":"89bcb074-f1d6-4c3a-b59e-9fe2c2eee9c3","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"fa5c78d3-8730-46d6-a131-640dea12d81a","type":"Line"},"selection_glyph":null},"id":"a668550a-b6bd-420e-94a0-5fcd299635fa","type":"GlyphRenderer"},{"attributes":{"below":[{"id":"d8b4966f-761f-4a13-b995-c378cf55e5f6","type":"LogAxis"}],"left":[{"id":"9063c47a-11f6-49e9-b286-6bc1acdaadc0","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"d8b4966f-761f-4a13-b995-c378cf55e5f6","type":"LogAxis"},{"id":"e9eccd09-1dff-4c05-b140-f16299e24d69","type":"Grid"},{"id":"9063c47a-11f6-49e9-b286-6bc1acdaadc0","type":"LogAxis"},{"id":"9f2da7a3-eee1-43b8-a823-2f05894d53d8","type":"Grid"},{"id":"f6baaf11-ce1c-486c-b8d5-0c1632ec6adb","type":"BoxAnnotation"},{"id":"bbc252c1-f586-46a1-b558-90d283b221dc","type":"Legend"},{"id":"5c85f6ef-b891-4ea1-9db3-e6ac8bdb4f0b","type":"GlyphRenderer"},{"id":"a8e83bb1-625e-4332-8c28-68b807e4ac87","type":"GlyphRenderer"},{"id":"ec695afc-00cb-4dd8-b886-1ec3953fb9f2","type":"GlyphRenderer"}],"title":{"id":"c733c949-e562-42bd-a803-a765568c71ba","type":"Title"},"tool_events":{"id":"957c312c-ee88-4507-8e73-02c85ab9c662","type":"ToolEvents"},"toolbar":{"id":"f9b3b0dc-97d0-4d34-aa6b-85ea48314f4b","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"f81c0f54-5258-4806-90a9-f4c31ed03309","type":"DataRange1d"},"x_scale":{"id":"2309e548-4929-4624-83fb-040c36c8aeef","type":"LogScale"},"y_range":{"id":"5878d1b4-cf07-46a6-b641-549870ec2d2e","type":"DataRange1d"},"y_scale":{"id":"006ec2d2-dc9c-403c-8195-2f79429db69e","type":"LogScale"}},"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"bce31b7e-e4f5-4769-aefc-2486ec2cf37c","type":"Line"},{"attributes":{"label":{"value":"random"},"renderers":[{"id":"5c85f6ef-b891-4ea1-9db3-e6ac8bdb4f0b","type":"GlyphRenderer"}]},"id":"870dc000-14dd-48c8-8cdb-ab8ba9ff5849","type":"LegendItem"},{"attributes":{"data_source":{"id":"1e2b523e-fc0c-4a27-821f-49d321415b62","type":"ColumnDataSource"},"glyph":{"id":"7f499213-0134-4c5c-9235-126158ca7eed","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"bce31b7e-e4f5-4769-aefc-2486ec2cf37c","type":"Line"},"selection_glyph":null},"id":"9f288aaa-82ff-46f4-8bf4-3cf335875256","type":"GlyphRenderer"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"2b82eb62-e193-41f6-836a-f70e97ad6b5a","type":"PanTool"},{"id":"c13542c5-c8f2-4b1d-a5ce-55f0dde4c758","type":"WheelZoomTool"},{"id":"d7b8a053-c9f1-4fb7-bed4-a3df788f3ed2","type":"BoxZoomTool"},{"id":"13000b57-843e-4b11-98c2-6f02983aa18e","type":"SaveTool"},{"id":"e1966624-3bba-4c3a-86cf-1106a6800dc3","type":"ResetTool"},{"id":"08f094cf-dc4b-463e-9621-abdff60d0163","type":"HelpTool"}]},"id":"f9b3b0dc-97d0-4d34-aa6b-85ea48314f4b","type":"Toolbar"},{"attributes":{"plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"},"ticker":{"id":"0519fcce-0843-4297-81d2-3938461dc021","type":"BasicTicker"}},"id":"eb20f2d2-177b-4983-8352-8bfbceddd49c","type":"Grid"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"89bcb074-f1d6-4c3a-b59e-9fe2c2eee9c3","type":"Line"},{"attributes":{"callback":null,"start":0},"id":"f81c0f54-5258-4806-90a9-f4c31ed03309","type":"DataRange1d"},{"attributes":{},"id":"1bb1ad9c-effe-4731-9798-9d4a4aa13fa5","type":"LinearScale"},{"attributes":{"child":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"},"title":"log"},"id":"a6bff001-54c7-4f7e-bdea-e243ae2bff4c","type":"Panel"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"fa5c78d3-8730-46d6-a131-640dea12d81a","type":"Line"},{"attributes":{},"id":"957c312c-ee88-4507-8e73-02c85ab9c662","type":"ToolEvents"},{"attributes":{},"id":"1e10a22c-12aa-4a41-915c-f85a8ed32090","type":"LinearScale"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"a6bff001-54c7-4f7e-bdea-e243ae2bff4c","type":"Panel"},{"id":"60def97a-ac42-4a56-a9d1-0607993c2e62","type":"Panel"}]},"id":"bddfdd21-3692-4f09-a839-053ec2e8b96e","type":"Tabs"},{"attributes":{"callback":null,"end":6021.609676148496,"start":0},"id":"e4513607-4e88-4611-b52e-319f23abdd30","type":"DataRange1d"},{"attributes":{"items":[{"id":"870dc000-14dd-48c8-8cdb-ab8ba9ff5849","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"}},"id":"bbc252c1-f586-46a1-b558-90d283b221dc","type":"Legend"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,269795.901835003]}},"id":"7a8cb52b-1e55-4941-9272-38c7c42a078e","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"iDmAdOYzhED3jGZaeR+UQMzGF5CAyKNAqQZ49/jWsUDabo5ZahbBQPB5MuwHU9BAhZDfGJtW10Al2QgzKAzZQOndxaYoYuhA","dtype":"float64","shape":[9]}}},"id":"1b801c3f-37c6-4605-b059-12d57dbdb1c3","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"5e029128-a514-44ed-b3e0-5887022236ac","type":"Line"},{"attributes":{"axis_label":"cores","formatter":{"id":"11c0ae3b-3f61-48c8-8fd3-8f948edeb699","type":"LogTickFormatter"},"plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"},"ticker":{"id":"55c37866-4dd7-43c4-a37f-ddd611adba37","type":"FixedTicker"}},"id":"d8b4966f-761f-4a13-b995-c378cf55e5f6","type":"LogAxis"},{"attributes":{"axis_label":"cores","formatter":{"id":"8859a918-4868-4c59-aace-0b98dacfb605","type":"BasicTickFormatter"},"plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"},"ticker":{"id":"af5ddceb-be3b-4264-b6d6-570331edf696","type":"FixedTicker"}},"id":"5782e52f-d045-4066-8e67-4ff6b658a5b9","type":"LinearAxis"},{"attributes":{"callback":null,"end":49937.270358022135,"start":0},"id":"5878d1b4-cf07-46a6-b641-549870ec2d2e","type":"DataRange1d"},{"attributes":{},"id":"0519fcce-0843-4297-81d2-3938461dc021","type":"BasicTicker"},{"attributes":{"items":[{"id":"d94ad771-b4da-4cb2-8f9c-bac51b23c3c7","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"}},"id":"a21531e6-2df4-4a46-b1a3-fb0c270ed7fd","type":"Legend"},{"attributes":{"axis_label":"tasks/s","formatter":{"id":"079e65d5-53f5-4710-b4c5-17223bfa988e","type":"BasicTickFormatter"},"plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"},"ticker":{"id":"1aded654-e20e-4b2f-b7c2-7486dc59dafd","type":"BasicTicker"}},"id":"b6d97613-9b92-4c51-93c9-494f3435f0be","type":"LinearAxis"},{"attributes":{"plot":null,"text":"DataFrames: Create"},"id":"c733c949-e562-42bd-a803-a765568c71ba","type":"Title"},{"attributes":{},"id":"1aded654-e20e-4b2f-b7c2-7486dc59dafd","type":"BasicTicker"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"e07a0b7a-e02f-4857-8704-45e71b5bc074","type":"Line"},{"attributes":{"dimension":1,"plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"},"ticker":{"id":"1aded654-e20e-4b2f-b7c2-7486dc59dafd","type":"BasicTicker"}},"id":"46f80ab7-5004-455a-a548-55ec92fffb80","type":"Grid"},{"attributes":{"ticker":null},"id":"36fbc0eb-dd8a-4425-8fe3-39a618e7adaf","type":"LogTickFormatter"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"864c156a-c259-4dd5-b34f-4cebcafb8c38","type":"Line"},{"attributes":{"axis_label":"cores","formatter":{"id":"31ef9d8d-cddd-41f2-bddf-f04cfd9ccc47","type":"BasicTickFormatter"},"plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"},"ticker":{"id":"73babae4-8e06-44f1-9d83-c6eb0618f4ae","type":"FixedTicker"}},"id":"1085eb81-6287-44f6-b8f0-7321717d7103","type":"LinearAxis"},{"attributes":{},"id":"8859a918-4868-4c59-aace-0b98dacfb605","type":"BasicTickFormatter"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"SA88gR1ocECqGEzZQ5R8QGxc6tAEo45AjGt/DoKRmEDGXTCinsSgQMrrGdYeO65A67hcfiEHuUA4aLWDa6XIQMM6i3W2GtBA","dtype":"float64","shape":[9]}}},"id":"264e02f4-93f6-4f11-91ee-752faff7d2b7","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"1867f265-98e5-4f56-bedc-c5196d3a4107","type":"ColumnDataSource"},"glyph":{"id":"5e029128-a514-44ed-b3e0-5887022236ac","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"864c156a-c259-4dd5-b34f-4cebcafb8c38","type":"Line"},"selection_glyph":null},"id":"4bf1be6f-0524-4691-a469-c271ed97e0b9","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"74e4b1eb-e4e1-491a-9967-4fdbded4795d","type":"Line"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"656cf7cc-3748-4c60-ad17-48948d4f1067","type":"BoxAnnotation"},{"attributes":{"num_minor_ticks":10},"id":"594148f5-678e-4aec-922f-b845f19d9257","type":"LogTicker"},{"attributes":{"plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"}},"id":"ef963147-69dd-4316-824e-c39236f8374e","type":"PanTool"},{"attributes":{"plot":null,"text":"DataFrames: Time Series"},"id":"56f1830a-a13a-468a-a108-d6d2b2595e01","type":"Title"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"UGdETRRGSEAF/cD9b45XQEf6VqPzsGlAWonEk7n0ekB6ZUoa/4eOQF78OcpRNp1AikTHrPdfqkBkyoxeIYGzQPFuvBOchbdA","dtype":"float64","shape":[9]}}},"id":"41eeabab-8df7-4d43-ad9c-8df4f7dcc533","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"}},"id":"f4d6378e-99e2-41ca-9077-4e1fa1c98975","type":"HelpTool"},{"attributes":{"plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"}},"id":"dd1840f2-3a3f-4ee8-96d7-274b0b58a153","type":"WheelZoomTool"},{"attributes":{"data_source":{"id":"264e02f4-93f6-4f11-91ee-752faff7d2b7","type":"ColumnDataSource"},"glyph":{"id":"cb0b67ef-d70b-4bff-80a5-abbdbb66fa92","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"52f412a0-ec50-4aa8-a4fd-37ece7bd1c2c","type":"Circle"},"selection_glyph":null},"id":"a1906a82-2729-4639-8244-d507183595be","type":"GlyphRenderer"},{"attributes":{"overlay":{"id":"656cf7cc-3748-4c60-ad17-48948d4f1067","type":"BoxAnnotation"},"plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"}},"id":"cc2ba96b-474a-45b8-a0f7-c979a271d7f6","type":"BoxZoomTool"},{"attributes":{"child":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"a41999c2-103e-46f4-b55e-3c9610dd09da","type":"Panel"},{"attributes":{"plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"}},"id":"89c7e6f2-37c0-4e30-8273-cc364867a06e","type":"SaveTool"},{"attributes":{"dimension":1,"plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"},"ticker":{"id":"38a20dfd-2b36-4a35-9899-ead569342ca0","type":"BasicTicker"}},"id":"b7a84748-2be1-4462-bad2-06f8041e2835","type":"Grid"},{"attributes":{"plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"}},"id":"5f24c536-7893-4741-b8a6-f4e717ad6684","type":"ResetTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"542fccb4-83c9-48a8-b58c-5e1c23974b3e","type":"Line"},{"attributes":{"plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"}},"id":"7ec0ca47-849b-4454-a2f0-7708648ed7be","type":"HelpTool"},{"attributes":{},"id":"c058f40c-6a7e-46d6-9050-e144151e8f23","type":"BasicTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"UGdETRRGSEAF/cD9b45XQEf6VqPzsGlAWonEk7n0ekB6ZUoa/4eOQF78OcpRNp1AikTHrPdfqkBkyoxeIYGzQPFuvBOchbdA","dtype":"float64","shape":[9]}}},"id":"1867f265-98e5-4f56-bedc-c5196d3a4107","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"d938cf74-add6-42d9-89fc-63789c1fb62b","type":"ColumnDataSource"},"glyph":{"id":"56b144fb-bcd8-4bbe-9987-2d7c7c23e596","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"542fccb4-83c9-48a8-b58c-5e1c23974b3e","type":"Line"},"selection_glyph":null},"id":"d2516bde-0777-46dc-9686-074f0d0dbcc2","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"bd6c9fed-c0f1-4374-be42-8e2c6dfad3be","type":"Circle"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"56b144fb-bcd8-4bbe-9987-2d7c7c23e596","type":"Line"},{"attributes":{},"id":"079e65d5-53f5-4710-b4c5-17223bfa988e","type":"BasicTickFormatter"},{"attributes":{"label":{"value":"df.rolling(...).mean()"},"renderers":[{"id":"4a30e69a-5fc9-49a9-b6d8-ba88f9921bb4","type":"GlyphRenderer"}]},"id":"7685730b-8ebb-488e-81d8-5139a089687a","type":"LegendItem"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"8128e3b4-a11a-4820-936b-e495d291a190","type":"Line"},{"attributes":{"data_source":{"id":"dacc35f2-c0bb-4520-9de0-84e27b734f0f","type":"ColumnDataSource"},"glyph":{"id":"74e4b1eb-e4e1-491a-9967-4fdbded4795d","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4aa9bd5c-fd76-4924-9e89-faf68732453a","type":"Line"},"selection_glyph":null},"id":"a02779c4-dd2e-4ea8-84d2-22f9a7077d78","type":"GlyphRenderer"},{"attributes":{"items":[{"id":"eb28207e-8b56-4776-814f-6f5d3cf2df7c","type":"LegendItem"},{"id":"a1e70810-baa2-45a7-a129-f90dcec0b28c","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"}},"id":"e428b65c-bedd-4afe-b852-3e0e275615e3","type":"Legend"},{"attributes":{},"id":"38a20dfd-2b36-4a35-9899-ead569342ca0","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"0b677418-2978-4d3d-8c5f-de569cba996c","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"SA88gR1ocECqGEzZQ5R8QGxc6tAEo45AjGt/DoKRmEDGXTCinsSgQMrrGdYeO65A67hcfiEHuUA4aLWDa6XIQMM6i3W2GtBA","dtype":"float64","shape":[9]}}},"id":"6bf174bd-5b20-431b-80a7-891992f72f3d","type":"ColumnDataSource"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"4bf1be6f-0524-4691-a469-c271ed97e0b9","type":"GlyphRenderer"}]},"id":"eb28207e-8b56-4776-814f-6f5d3cf2df7c","type":"LegendItem"},{"attributes":{"callback":null,"end":16490.85092430819,"start":0},"id":"59b4720e-8629-484b-8df1-f7a9c014d689","type":"DataRange1d"},{"attributes":{"data_source":{"id":"c1baa2d8-4f45-4192-a8a8-50e8b998b0e4","type":"ColumnDataSource"},"glyph":{"id":"18ddde02-fbb5-40ef-bed2-1096bcfbc37b","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f09ae9dd-a80b-4e17-a95c-028c5bde6c81","type":"Line"},"selection_glyph":null},"id":"c100652d-4b2f-441d-a19b-1d5d96238306","type":"GlyphRenderer"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"80cd19c6-3bfd-4480-85a6-850a04dec7ab","type":"BasicTickFormatter"},"plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"},"ticker":{"id":"38a20dfd-2b36-4a35-9899-ead569342ca0","type":"BasicTicker"}},"id":"ccdf9d3b-fa7d-4446-9621-e51f5683f88a","type":"LinearAxis"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"65b26a3f-5cd7-4899-9f01-e91ff91e36fe","type":"Circle"},{"attributes":{},"id":"93c84cb3-e191-43b3-a8f9-ca0ad1d2b0c2","type":"LinearScale"},{"attributes":{"data_source":{"id":"41eeabab-8df7-4d43-ad9c-8df4f7dcc533","type":"ColumnDataSource"},"glyph":{"id":"65b26a3f-5cd7-4899-9f01-e91ff91e36fe","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"d1eaea75-1a55-4319-bc70-b94cff1e37e4","type":"Circle"},"selection_glyph":null},"id":"fad64154-6abb-410f-a32f-9691b20da3f9","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"},"ticker":{"id":"c058f40c-6a7e-46d6-9050-e144151e8f23","type":"BasicTicker"}},"id":"c25d5f02-8e42-42c4-8580-4ec796e24b4b","type":"Grid"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"d1eaea75-1a55-4319-bc70-b94cff1e37e4","type":"Circle"},{"attributes":{"plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"},"ticker":{"id":"43f23bff-cadb-4d03-bbc9-af672ade5478","type":"LogTicker"}},"id":"fa229f3e-b9eb-4a4d-b7aa-9a158b6e3663","type":"Grid"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2459dc7b-dc2a-422d-930c-6d5a873a89ba","type":"Circle"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"cb0b67ef-d70b-4bff-80a5-abbdbb66fa92","type":"Circle"},{"attributes":{"data_source":{"id":"188daee3-63a9-4d9c-af21-e5233113b8f3","type":"ColumnDataSource"},"glyph":{"id":"8128e3b4-a11a-4820-936b-e495d291a190","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"9b667962-f88d-4d40-83a9-a392a6bfdf49","type":"Line"},"selection_glyph":null},"id":"610e6598-84c3-4377-bce3-4258e91e8129","type":"GlyphRenderer"},{"attributes":{},"id":"c85cad71-9c17-451c-945a-363c1d6a860e","type":"LogScale"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"18ddde02-fbb5-40ef-bed2-1096bcfbc37b","type":"Line"},{"attributes":{"below":[{"id":"1085eb81-6287-44f6-b8f0-7321717d7103","type":"LinearAxis"}],"left":[{"id":"ccdf9d3b-fa7d-4446-9621-e51f5683f88a","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"1085eb81-6287-44f6-b8f0-7321717d7103","type":"LinearAxis"},{"id":"c25d5f02-8e42-42c4-8580-4ec796e24b4b","type":"Grid"},{"id":"ccdf9d3b-fa7d-4446-9621-e51f5683f88a","type":"LinearAxis"},{"id":"b7a84748-2be1-4462-bad2-06f8041e2835","type":"Grid"},{"id":"3fce8c9b-c4c4-48ec-8b2b-6f449be0a6bf","type":"BoxAnnotation"},{"id":"f39c1e83-6b71-463b-805a-cc114061c218","type":"Legend"},{"id":"d2516bde-0777-46dc-9686-074f0d0dbcc2","type":"GlyphRenderer"},{"id":"8ce713be-1279-437b-9080-e9b23af20017","type":"GlyphRenderer"},{"id":"57089827-d1b4-45cd-9546-ec865f69abc4","type":"GlyphRenderer"}],"title":{"id":"56f1830a-a13a-468a-a108-d6d2b2595e01","type":"Title"},"tool_events":{"id":"3a7714bc-f25c-4d6b-811c-9ba122d76979","type":"ToolEvents"},"toolbar":{"id":"bf8efa5f-cbc2-4485-9c3f-b7d8a0ca4b8c","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"b5f33caf-5956-43d0-bc8c-1a9ea8fdf0b3","type":"DataRange1d"},"x_scale":{"id":"bf8e56ab-72a0-4514-a426-e3a8ae1f25e8","type":"LinearScale"},"y_range":{"id":"59b4720e-8629-484b-8df1-f7a9c014d689","type":"DataRange1d"},"y_scale":{"id":"93c84cb3-e191-43b3-a8f9-ca0ad1d2b0c2","type":"LinearScale"}},"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f09ae9dd-a80b-4e17-a95c-028c5bde6c81","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"4aa9bd5c-fd76-4924-9e89-faf68732453a","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"kaJ6m493kEDnCG6oG3iZQDH65WfdO51AN9IVWq5NnEATlZAk2WCfQArn1nJmT6JAEu2KAqxsokCrK/Acec2hQLjq14Ix6JZA","dtype":"float64","shape":[9]}}},"id":"7be7c900-1988-407b-904f-421d124c4462","type":"ColumnDataSource"},{"attributes":{"children":[{"id":"5c8cf25d-0f4c-46d7-a10b-af71e65fd1f4","type":"WidgetBox"},{"id":"53cea20e-2f14-4b85-8239-4e58ae53738b","type":"WidgetBox"}],"sizing_mode":"scale_width"},"id":"832b3d76-7254-415f-99bd-28ab20af0ab2","type":"Row"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"460ef359-dfb1-403c-837f-2f484f0985b2","type":"FixedTicker"},{"attributes":{"child":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"41db98d3-1eb6-401a-a3e8-97326b42d74d","type":"Panel"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"kaJ6m493kEDnCG6oG3iZQDH65WfdO51AN9IVWq5NnEATlZAk2WCfQArn1nJmT6JAEu2KAqxsokCrK/Acec2hQLjq14Ix6JZA","dtype":"float64","shape":[9]}}},"id":"c1baa2d8-4f45-4192-a8a8-50e8b998b0e4","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,67201.84405141801]}},"id":"dacc35f2-c0bb-4520-9de0-84e27b734f0f","type":"ColumnDataSource"},{"attributes":{"label":{"value":"1us"},"renderers":[{"id":"c100652d-4b2f-441d-a19b-1d5d96238306","type":"GlyphRenderer"}]},"id":"a1e70810-baa2-45a7-a129-f90dcec0b28c","type":"LegendItem"},{"attributes":{},"id":"3a7714bc-f25c-4d6b-811c-9ba122d76979","type":"ToolEvents"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,12428.158608007856]}},"id":"188daee3-63a9-4d9c-af21-e5233113b8f3","type":"ColumnDataSource"},{"attributes":{},"id":"31ef9d8d-cddd-41f2-bddf-f04cfd9ccc47","type":"BasicTickFormatter"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"1cde6262-d06e-4f36-97cc-40d1a028fec4","type":"Circle"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"04a7a51b-fbbb-425a-8cfe-6dd02962e744","type":"PanTool"},{"id":"54250a06-b278-4bf6-b85a-f689f5021979","type":"WheelZoomTool"},{"id":"1a20d206-c661-4312-9339-cee7e4878f9b","type":"BoxZoomTool"},{"id":"29feaaed-05a7-4359-9eed-5e7cb8487502","type":"SaveTool"},{"id":"93e59c29-b745-43c4-a2ec-157e1523e2dc","type":"ResetTool"},{"id":"f4d6378e-99e2-41ca-9077-4e1fa1c98975","type":"HelpTool"}]},"id":"bf8efa5f-cbc2-4485-9c3f-b7d8a0ca4b8c","type":"Toolbar"},{"attributes":{"data_source":{"id":"25ad1df3-af70-4961-90ad-b55b1a1b4ca6","type":"ColumnDataSource"},"glyph":{"id":"1cde6262-d06e-4f36-97cc-40d1a028fec4","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"0b677418-2978-4d3d-8c5f-de569cba996c","type":"Circle"},"selection_glyph":null},"id":"7968e288-abf3-4d02-8ac6-054b992cfb1c","type":"GlyphRenderer"},{"attributes":{},"id":"bf8e56ab-72a0-4514-a426-e3a8ae1f25e8","type":"LinearScale"},{"attributes":{"data_source":{"id":"7be7c900-1988-407b-904f-421d124c4462","type":"ColumnDataSource"},"glyph":{"id":"2459dc7b-dc2a-422d-930c-6d5a873a89ba","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"bd6c9fed-c0f1-4374-be42-8e2c6dfad3be","type":"Circle"},"selection_glyph":null},"id":"6216cd53-1ee7-4d64-bed7-99aa32b36d65","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"52f412a0-ec50-4aa8-a4fd-37ece7bd1c2c","type":"Circle"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"9b667962-f88d-4d40-83a9-a392a6bfdf49","type":"Line"},{"attributes":{"plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"}},"id":"29feaaed-05a7-4359-9eed-5e7cb8487502","type":"SaveTool"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"c542b8bb-269b-41dd-9e33-ba4f3c2babae","type":"Line"},{"attributes":{"plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"}},"id":"93e59c29-b745-43c4-a2ec-157e1523e2dc","type":"ResetTool"},{"attributes":{"data_source":{"id":"8a768c37-9fbd-4188-add4-f4d940f2080a","type":"ColumnDataSource"},"glyph":{"id":"c542b8bb-269b-41dd-9e33-ba4f3c2babae","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"75410fff-4401-4f8a-b39f-b6116d253c21","type":"Line"},"selection_glyph":null},"id":"eae59b8c-4aae-42b2-af00-907169e4c2d0","type":"GlyphRenderer"},{"attributes":{"dimension":1,"plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"},"ticker":{"id":"594148f5-678e-4aec-922f-b845f19d9257","type":"LogTicker"}},"id":"3f12a60a-b6bf-495c-8aab-879125782ebb","type":"Grid"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"75410fff-4401-4f8a-b39f-b6116d253c21","type":"Line"},{"attributes":{"overlay":{"id":"3fce8c9b-c4c4-48ec-8b2b-6f449be0a6bf","type":"BoxAnnotation"},"plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"}},"id":"1a20d206-c661-4312-9339-cee7e4878f9b","type":"BoxZoomTool"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"3e2d4b46-09ac-405a-9276-b907e8df69bb","type":"Panel"},{"id":"b23801a4-be5a-492c-ab93-ece3370c2047","type":"Panel"}]},"id":"b175b9d7-0992-4013-a3da-e7da9e7115e2","type":"Tabs"},{"attributes":{"items":[{"id":"f049aeab-54bf-42b7-82be-ac76f7c60d9e","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"}},"id":"f39c1e83-6b71-463b-805a-cc114061c218","type":"Legend"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"af5ddceb-be3b-4264-b6d6-570331edf696","type":"FixedTicker"},{"attributes":{"plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"}},"id":"54250a06-b278-4bf6-b85a-f689f5021979","type":"WheelZoomTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,269795.901835003]}},"id":"8a768c37-9fbd-4188-add4-f4d940f2080a","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"e5236ef3-0528-4dea-8c9b-304d9481bb44","type":"Line"},{"attributes":{"child":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"},"title":"log"},"id":"3e2d4b46-09ac-405a-9276-b907e8df69bb","type":"Panel"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,67201.84405141801]}},"id":"9825c8e5-f8fc-4439-bb82-8b65ae769606","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"bed1583f-c1c4-4b10-b258-4317f7933bee","type":"LogAxis"}],"left":[{"id":"7e0cec7c-15ef-4709-acbb-933eb9238e70","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"bed1583f-c1c4-4b10-b258-4317f7933bee","type":"LogAxis"},{"id":"22a51e72-b540-4b2c-8c88-9ade9d03d005","type":"Grid"},{"id":"7e0cec7c-15ef-4709-acbb-933eb9238e70","type":"LogAxis"},{"id":"389f6e50-4229-4968-b92d-2704548be1fd","type":"Grid"},{"id":"3dc67210-eb0f-4c45-8bf3-9ac6b35a51c3","type":"BoxAnnotation"},{"id":"88daa403-982e-4d7e-a63e-e5f4401d6e08","type":"Legend"},{"id":"b11cf862-e14d-410d-a091-23cafd5f1930","type":"GlyphRenderer"},{"id":"7968e288-abf3-4d02-8ac6-054b992cfb1c","type":"GlyphRenderer"},{"id":"69bd697e-0832-457a-8127-aaea5640b266","type":"GlyphRenderer"}],"title":{"id":"e505d900-f832-47d6-938f-205f40ea5122","type":"Title"},"tool_events":{"id":"99a796cb-62aa-439c-9884-e0ebc38f5e70","type":"ToolEvents"},"toolbar":{"id":"7eba6133-b827-4508-9767-d20d180afb83","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"395f10f4-541f-48cb-9c4c-812c50bc3614","type":"DataRange1d"},"x_scale":{"id":"69573f14-e33e-461f-8ec4-bce6061bf3f6","type":"LogScale"},"y_range":{"id":"47dd3cd0-96e7-4c0a-ae88-992bcd68a53a","type":"DataRange1d"},"y_scale":{"id":"9504112c-f960-4fb5-bd9c-0723c7c7fa72","type":"LogScale"}},"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"},{"attributes":{"data_source":{"id":"9825c8e5-f8fc-4439-bb82-8b65ae769606","type":"ColumnDataSource"},"glyph":{"id":"ead5269f-b61f-4110-aa9d-1f8609ccb12b","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"e5236ef3-0528-4dea-8c9b-304d9481bb44","type":"Line"},"selection_glyph":null},"id":"57089827-d1b4-45cd-9546-ec865f69abc4","type":"GlyphRenderer"},{"attributes":{"label":{"value":"fast"},"renderers":[{"id":"b11cf862-e14d-410d-a091-23cafd5f1930","type":"GlyphRenderer"}]},"id":"8750c30b-8f3b-4482-917f-12aade87bf36","type":"LegendItem"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"75a7f12d-788a-43ab-abc3-aeb0b17ab640","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"sAHL3O3PZEALehwq1T1lQCHeSBOVVGVARLJVKdkUZUBZ9cB/YLBjQCWoVrQJiGBA4ishF0sKXUCMae/xfoRaQC1Vmopl8FJA","dtype":"float64","shape":[9]}}},"id":"25ad1df3-af70-4961-90ad-b55b1a1b4ca6","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"6bf174bd-5b20-431b-80a7-891992f72f3d","type":"ColumnDataSource"},"glyph":{"id":"a5244703-1e09-4eac-a525-6ef65a22a342","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"75a7f12d-788a-43ab-abc3-aeb0b17ab640","type":"Circle"},"selection_glyph":null},"id":"8ce713be-1279-437b-9080-e9b23af20017","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"sAHL3O3PZEALehwq1T1lQCHeSBOVVGVARLJVKdkUZUBZ9cB/YLBjQCWoVrQJiGBA4ishF0sKXUCMae/xfoRaQC1Vmopl8FJA","dtype":"float64","shape":[9]}}},"id":"85c2b4e9-0196-44c3-8ef9-407e77eae0fe","type":"ColumnDataSource"},{"attributes":{},"id":"80cd19c6-3bfd-4480-85a6-850a04dec7ab","type":"BasicTickFormatter"},{"attributes":{"plot":null,"text":"Tasks: Sequential"},"id":"e505d900-f832-47d6-938f-205f40ea5122","type":"Title"},{"attributes":{"plot":{"id":"5ef06628-9afd-4f0f-a198-ba83837bf919","subtype":"Figure","type":"Plot"}},"id":"04a7a51b-fbbb-425a-8cfe-6dd02962e744","type":"PanTool"},{"attributes":{"callback":null,"start":0},"id":"395f10f4-541f-48cb-9c4c-812c50bc3614","type":"DataRange1d"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a5244703-1e09-4eac-a525-6ef65a22a342","type":"Circle"},{"attributes":{},"id":"99a796cb-62aa-439c-9884-e0ebc38f5e70","type":"ToolEvents"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"3fce8c9b-c4c4-48ec-8b2b-6f449be0a6bf","type":"BoxAnnotation"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"5e757e75-742d-4e2b-a209-c24a8e6f6f09","type":"PanTool"},{"id":"9d0d89f3-9fda-4c43-a80f-f4e61bcf7ae2","type":"WheelZoomTool"},{"id":"96a77bc3-3076-4302-83ae-ca23b110ad65","type":"BoxZoomTool"},{"id":"52d138cc-73e1-4c54-9808-4c7479025432","type":"SaveTool"},{"id":"542aceac-c73e-4206-9e7d-a2e326d4112f","type":"ResetTool"},{"id":"aecac00b-e41f-415c-86ad-223f8986f0f5","type":"HelpTool"}]},"id":"7eba6133-b827-4508-9767-d20d180afb83","type":"Toolbar"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"ead5269f-b61f-4110-aa9d-1f8609ccb12b","type":"Line"},{"attributes":{"axis_label":"cores","formatter":{"id":"31b24d74-6828-4e72-a0b1-b9ff3ea2812d","type":"LogTickFormatter"},"plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"},"ticker":{"id":"497eb2a8-9f4f-4a33-8db7-0bf2b0729624","type":"FixedTicker"}},"id":"bed1583f-c1c4-4b10-b258-4317f7933bee","type":"LogAxis"},{"attributes":{"label":{"value":"df.rolling(...).mean()"},"renderers":[{"id":"d2516bde-0777-46dc-9686-074f0d0dbcc2","type":"GlyphRenderer"}]},"id":"f049aeab-54bf-42b7-82be-ac76f7c60d9e","type":"LegendItem"},{"attributes":{"num_minor_ticks":10},"id":"1f17c79c-958a-4b8d-b13a-5a1b3fe37259","type":"LogTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"SA88gR1ocECqGEzZQ5R8QGxc6tAEo45AjGt/DoKRmEDGXTCinsSgQMrrGdYeO65A67hcfiEHuUA4aLWDa6XIQMM6i3W2GtBA","dtype":"float64","shape":[9]}}},"id":"d938cf74-add6-42d9-89fc-63789c1fb62b","type":"ColumnDataSource"},{"attributes":{"callback":null,"end":170.64319767219516,"start":0},"id":"47dd3cd0-96e7-4c0a-ae88-992bcd68a53a","type":"DataRange1d"},{"attributes":{"children":[{"id":"51125763-50b1-42e3-a52f-a429803a4aa3","type":"WidgetBox"},{"id":"48036047-1f68-42ed-9c8e-881e34e44386","type":"WidgetBox"}],"sizing_mode":"scale_width"},"id":"dd1c4ad1-e50c-417c-a615-b3d7acdf96c8","type":"Row"},{"attributes":{"items":[{"id":"7685730b-8ebb-488e-81d8-5139a089687a","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"}},"id":"7e75b446-a5a1-42a6-a69a-c20836f1fc09","type":"Legend"},{"attributes":{"axis_label":"tasks/s","formatter":{"id":"50eadc2e-195e-4477-a4bd-aa0597ac1245","type":"LogTickFormatter"},"plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"},"ticker":{"id":"3e1785c2-5406-42b7-b954-df12211fa100","type":"LogTicker"}},"id":"7e0cec7c-15ef-4709-acbb-933eb9238e70","type":"LogAxis"},{"attributes":{"callback":null,"start":0},"id":"b5f33caf-5956-43d0-bc8c-1a9ea8fdf0b3","type":"DataRange1d"},{"attributes":{},"id":"69573f14-e33e-461f-8ec4-bce6061bf3f6","type":"LogScale"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"8aa7f9a3-e0e5-419b-a8a4-5ad8e36fe88f","type":"BoxAnnotation"},{"attributes":{"overlay":{"id":"8aa7f9a3-e0e5-419b-a8a4-5ad8e36fe88f","type":"BoxAnnotation"},"plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"}},"id":"e97e20d3-03e2-428d-aa0f-d00fd9bde72e","type":"BoxZoomTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"LbJ3pRAWX0BbUHF3/95iQIiYAtArN3BAAzvcglmDd0A7RNmNS3J/QPRV3VjCgItAGs1hBVAyk0A6pgUWMmqYQM/xIEy8hpZA","dtype":"float64","shape":[9]}}},"id":"eb1ddd02-cb71-479e-bc49-7b1b8c0b5761","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"eb1ddd02-cb71-479e-bc49-7b1b8c0b5761","type":"ColumnDataSource"},"glyph":{"id":"aae9a1bc-6c14-43a2-bb8a-4ee12d60e597","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2148100e-a957-4c41-9858-ac0916291cc9","type":"Circle"},"selection_glyph":null},"id":"399be48b-b05d-48ac-ad82-8bb5171ea982","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"aae9a1bc-6c14-43a2-bb8a-4ee12d60e597","type":"Circle"},{"attributes":{"label":{"value":"df.set_index(...)"},"renderers":[{"id":"a209df9a-abf2-4be6-83bc-504ea82e6cdc","type":"GlyphRenderer"}]},"id":"4f9b7b11-905b-4212-8a29-e4342a009bef","type":"LegendItem"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2148100e-a957-4c41-9858-ac0916291cc9","type":"Circle"},{"attributes":{"plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"}},"id":"08f094cf-dc4b-463e-9621-abdff60d0163","type":"HelpTool"},{"attributes":{"plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"}},"id":"13000b57-843e-4b11-98c2-6f02983aa18e","type":"SaveTool"},{"attributes":{"data_source":{"id":"9dce6d6a-a1f8-4fe1-a323-dee8ffeb69ab","type":"ColumnDataSource"},"glyph":{"id":"f9899b33-cee8-4e92-8bde-98976f515e97","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"ceafc98c-ebe1-4bd1-be3c-67d14086a66f","type":"Circle"},"selection_glyph":null},"id":"48a027b0-fa86-43fd-86fc-e465a24274e1","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f9899b33-cee8-4e92-8bde-98976f515e97","type":"Circle"},{"attributes":{"data_source":{"id":"8b8c8a62-e1b0-4930-847e-e46e8c9c1a64","type":"ColumnDataSource"},"glyph":{"id":"ba01f278-86ed-4144-8e23-212b673f5235","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"ffb32e57-b8a9-45fd-b011-ef75303ec8ad","type":"Circle"},"selection_glyph":null},"id":"53e417c9-c14d-4f62-b71e-b64f00b18b47","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"ceafc98c-ebe1-4bd1-be3c-67d14086a66f","type":"Circle"},{"attributes":{},"id":"cc86455c-5d1e-4abc-86d1-b890845eeceb","type":"BasicTickFormatter"},{"attributes":{"data_source":{"id":"c756c34c-f5c3-4a6b-ba9a-e7bc550d24a1","type":"ColumnDataSource"},"glyph":{"id":"5ef2b5ec-e447-4e9e-817e-4be835aa6437","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"12b11cde-0643-4d2b-972c-a05b6da33c2e","type":"Line"},"selection_glyph":null},"id":"c97583c4-51e9-4cff-9769-b4b540deaac8","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"8y0AKWPAZkCdUmbwFEF2QI6UudUfxYVAYqt1iZwWkUDDRzQLwfGbQB6idyjfk55A/UKAURi0l0CkSi02kcaaQNjl7PoIv5pA","dtype":"float64","shape":[9]}}},"id":"ac3232fd-36ce-4a71-b1ec-d2c11df0dab8","type":"ColumnDataSource"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"0cc6521b-a666-4a7b-a5d3-503c5254fe2c","type":"BoxAnnotation"},{"attributes":{"data_source":{"id":"ac3232fd-36ce-4a71-b1ec-d2c11df0dab8","type":"ColumnDataSource"},"glyph":{"id":"96ada5fa-cc77-4370-8f95-57ba750e765d","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2d2f0701-ffed-4624-9292-adcf6eb13b76","type":"Line"},"selection_glyph":null},"id":"a48aa2d3-5a7c-4537-b210-38f11a1832f4","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"}},"id":"d7e00d52-b6a0-43d3-b2ce-aba245b42337","type":"PanTool"},{"attributes":{"line_color":{"value":"#2ca02c"},"x":{"field":"x"},"y":{"field":"y"}},"id":"851688a4-7809-4398-a203-451c229ef21e","type":"Line"},{"attributes":{"ticker":null},"id":"ebe40921-ac2f-4cb2-a5bb-e6bd77e82fa3","type":"LogTickFormatter"},{"attributes":{"items":[{"id":"2fd34b86-5d5a-4e52-92bd-7a34844e7868","type":"LegendItem"},{"id":"5ab2bac9-cdf6-4edd-a327-9ec68c7b545f","type":"LegendItem"},{"id":"4ba13fdc-0b78-45bc-ba23-18a594c16715","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"}},"id":"ce4c2571-807d-49e2-86ee-7b9ef2271d9c","type":"Legend"},{"attributes":{"plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"}},"id":"b288bf15-ef2e-4945-9eb4-ccaf8cd6c334","type":"WheelZoomTool"},{"attributes":{"data_source":{"id":"ec1816cc-3f9f-4512-8e57-4a83cf83db87","type":"ColumnDataSource"},"glyph":{"id":"b88406b9-d608-401e-afa2-3ee7f2a586df","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"a2581d1d-0772-415b-9db6-5e8ea1cd3e40","type":"Circle"},"selection_glyph":null},"id":"297420ff-5aff-4487-b0f0-78eba07a1421","type":"GlyphRenderer"},{"attributes":{"overlay":{"id":"0cc6521b-a666-4a7b-a5d3-503c5254fe2c","type":"BoxAnnotation"},"plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"}},"id":"6007b073-348b-41bc-a701-31198057ecfe","type":"BoxZoomTool"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"7df733ee-85ac-443a-a6f5-d4cf488ea15c","type":"Circle"},{"attributes":{"plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"}},"id":"2a2d4a72-6109-438e-aa25-4a5692f74faf","type":"SaveTool"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"009c1ead-6a21-4251-baaa-32ce7645bc5a","type":"Panel"},{"id":"41db98d3-1eb6-401a-a3e8-97326b42d74d","type":"Panel"}]},"id":"bc2a925a-2e83-48cf-a2c4-b3b85a7804f9","type":"Tabs"},{"attributes":{"plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"}},"id":"d377ce77-c83a-4022-83a8-021b1f1aa6b0","type":"ResetTool"},{"attributes":{"axis_label":"cores","formatter":{"id":"e5dad457-ce21-46f9-a4bf-b881885257b3","type":"LogTickFormatter"},"plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"},"ticker":{"id":"07998121-7f06-437a-b1cb-c2c6736f6931","type":"FixedTicker"}},"id":"4d4fb43e-1d9c-4092-b88e-0d051451169a","type":"LogAxis"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"11d6ffa4-ab28-4bc2-b71f-bdb2f16a1e20","type":"Line"},{"attributes":{"plot":{"id":"32468298-7c8b-4961-a1e3-2247d13004a8","subtype":"Figure","type":"Plot"}},"id":"16a5b5ca-891a-4048-9e4c-749d27fa4e99","type":"HelpTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"028955e6-2170-4e3c-b1c5-91d2e6c7cea2","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"12b11cde-0643-4d2b-972c-a05b6da33c2e","type":"Line"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"617cd638-9d5f-4765-89eb-7472275a2a0e","type":"Line"},{"attributes":{"items":[{"id":"466c273c-d0ae-4b38-b913-71c48c943226","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"}},"id":"7cc450a8-4515-40be-bfe1-4ef1aebb9bb2","type":"Legend"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"426bd2ab-0882-4386-b2c7-83a24a666182","type":"FixedTicker"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"5ef2b5ec-e447-4e9e-817e-4be835aa6437","type":"Line"},{"attributes":{"below":[{"id":"4d4fb43e-1d9c-4092-b88e-0d051451169a","type":"LogAxis"}],"left":[{"id":"8bf2acd7-c0e3-4b9f-9ec7-6bbfbf02bc94","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"4d4fb43e-1d9c-4092-b88e-0d051451169a","type":"LogAxis"},{"id":"e6575946-5eda-4943-89de-ed775cb0e659","type":"Grid"},{"id":"8bf2acd7-c0e3-4b9f-9ec7-6bbfbf02bc94","type":"LogAxis"},{"id":"c27ae204-4506-4af7-a62e-eb46a04d85b5","type":"Grid"},{"id":"efc5e5bd-a54b-4f82-91ac-81f1452b4983","type":"BoxAnnotation"},{"id":"65412682-021f-4cbc-8a36-490fb1d821b7","type":"Legend"},{"id":"ac6c1b73-a582-457c-9f3d-112602cdb911","type":"GlyphRenderer"},{"id":"cf7e8366-7581-4e12-93ef-b6b229126bc9","type":"GlyphRenderer"},{"id":"fb4f1318-40bf-4b51-8d8c-b441c1eed3c0","type":"GlyphRenderer"},{"id":"f3e364a8-c1f0-40ba-aed0-daf9ceae878e","type":"GlyphRenderer"},{"id":"d3f0205b-45dc-444f-9485-3a821bd6f1e5","type":"GlyphRenderer"},{"id":"b614a223-bbd2-40b1-9145-a3094667aad7","type":"GlyphRenderer"}],"title":{"id":"113a0520-9b86-41e7-bf29-b849f4de495e","type":"Title"},"tool_events":{"id":"4004fca6-fd9e-45e1-943d-648c8e1c4be6","type":"ToolEvents"},"toolbar":{"id":"71b65dcc-e835-421d-9a7b-a6e75eaa29aa","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"494e2192-f731-4da3-a551-f5a32aaa3e68","type":"DataRange1d"},"x_scale":{"id":"81e0367e-101e-4005-93ba-f836e0b92727","type":"LogScale"},"y_range":{"id":"757ebc94-e691-40a6-90a0-32ac7eca4bea","type":"DataRange1d"},"y_scale":{"id":"cbb9bc6c-1f65-4274-bf49-6c454c02a800","type":"LogScale"}},"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"},{"attributes":{"plot":null,"text":"Arrays: Random Access"},"id":"eb1ce7e7-012f-4e9b-b610-4abaf35beff5","type":"Title"},{"attributes":{"plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"},"ticker":{"id":"1670de7c-cc5d-48c3-9569-992918297fa5","type":"LogTicker"}},"id":"e6575946-5eda-4943-89de-ed775cb0e659","type":"Grid"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"481c2585-6dc3-4cc1-bd72-f61b21d604e8","type":"FixedTicker"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"0a12f286-72b9-40f7-9747-cce4fca208b7","type":"PanTool"},{"id":"6c2a2f99-b315-4295-938e-4182eefbf3a8","type":"WheelZoomTool"},{"id":"2d6b0dc4-acfe-49bb-9dda-551a36dcf187","type":"BoxZoomTool"},{"id":"aaeac710-c162-4542-bc3a-0a5dabae8022","type":"SaveTool"},{"id":"541700d3-9318-4921-895f-bc6a03b02ecb","type":"ResetTool"},{"id":"21b20b53-1ceb-423e-a2ec-b801c3464c1e","type":"HelpTool"}]},"id":"71b65dcc-e835-421d-9a7b-a6e75eaa29aa","type":"Toolbar"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,178949.5144368985]}},"id":"c756c34c-f5c3-4a6b-ba9a-e7bc550d24a1","type":"ColumnDataSource"},{"attributes":{"callback":null,"start":0},"id":"494e2192-f731-4da3-a551-f5a32aaa3e68","type":"DataRange1d"},{"attributes":{"below":[{"id":"dc3bbb53-429d-4260-9aa6-45e98a2be775","type":"LinearAxis"}],"left":[{"id":"e9bd950f-62b2-4765-a98e-db6b1c8eeeec","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"dc3bbb53-429d-4260-9aa6-45e98a2be775","type":"LinearAxis"},{"id":"57036595-e514-4b1b-8b10-d384620b1d78","type":"Grid"},{"id":"e9bd950f-62b2-4765-a98e-db6b1c8eeeec","type":"LinearAxis"},{"id":"877a93e9-1cca-4b09-9d05-278c94dfd138","type":"Grid"},{"id":"3d408590-153d-4681-85ae-4708f22cd483","type":"BoxAnnotation"},{"id":"7cc450a8-4515-40be-bfe1-4ef1aebb9bb2","type":"Legend"},{"id":"dee22ce0-66ba-4649-9c74-f6b14deb8d62","type":"GlyphRenderer"},{"id":"1dfa1dab-2828-4f9f-bce9-5673cb6dd956","type":"GlyphRenderer"},{"id":"bb8ed46b-3283-4bcb-8123-2e7d95d77ab9","type":"GlyphRenderer"}],"title":{"id":"eb1ce7e7-012f-4e9b-b610-4abaf35beff5","type":"Title"},"tool_events":{"id":"9fd483d9-9788-43e2-8845-79eb10d0ff13","type":"ToolEvents"},"toolbar":{"id":"5669ca56-cc7e-40f3-9b2f-54d16ea24417","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"3135a211-0b5d-4d2e-bb6f-a1c96094b605","type":"DataRange1d"},"x_scale":{"id":"74a9a570-f7ef-495f-97a1-9203d57007e1","type":"LinearScale"},"y_range":{"id":"42206c4b-3441-4ae3-b10d-fba4fc6c6863","type":"DataRange1d"},"y_scale":{"id":"4de585f3-cef4-4f3e-a987-72340dbd60a6","type":"LinearScale"}},"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"},{"attributes":{"num_minor_ticks":10},"id":"1670de7c-cc5d-48c3-9569-992918297fa5","type":"LogTicker"},{"attributes":{},"id":"9fd483d9-9788-43e2-8845-79eb10d0ff13","type":"ToolEvents"},{"attributes":{"callback":null,"end":1846.5368297047141,"start":0},"id":"757ebc94-e691-40a6-90a0-32ac7eca4bea","type":"DataRange1d"},{"attributes":{},"id":"d517dc70-e6bf-4630-b959-be0ec2898fbc","type":"BasicTickFormatter"},{"attributes":{},"id":"4004fca6-fd9e-45e1-943d-648c8e1c4be6","type":"ToolEvents"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"6c0f4cd7-3b7f-450a-8ec5-5ad54dee9602","type":"PanTool"},{"id":"268bb071-8229-41d7-81ce-b1a2b2b810d9","type":"WheelZoomTool"},{"id":"8af95738-37f1-4d91-bff1-a0ad5a3357a7","type":"BoxZoomTool"},{"id":"45ddb6b8-b536-4147-a7e6-f7302b12e46a","type":"SaveTool"},{"id":"19085b66-4288-4213-ba84-7d22eb1a99ac","type":"ResetTool"},{"id":"8c843b78-9689-42c8-a19b-383f83ed3cae","type":"HelpTool"}]},"id":"5669ca56-cc7e-40f3-9b2f-54d16ea24417","type":"Toolbar"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"dc048a49-a86c-421d-85b3-866e9aaaa8a9","type":"Line"},{"attributes":{"callback":null,"start":0},"id":"3135a211-0b5d-4d2e-bb6f-a1c96094b605","type":"DataRange1d"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,231102.94226687078]}},"id":"fc5c219c-e1a7-41be-b63c-2f2ba81ef1b9","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"5649e48b-92ca-4927-a7df-20ef2fd756e0","type":"ColumnDataSource"},"glyph":{"id":"a2174dc6-19a1-44b0-811a-4d939b79bdec","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"a9237ee5-e9fc-42ae-9f49-5545ef0a7673","type":"Line"},"selection_glyph":null},"id":"dee22ce0-66ba-4649-9c74-f6b14deb8d62","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a2581d1d-0772-415b-9db6-5e8ea1cd3e40","type":"Circle"},{"attributes":{},"id":"74a9a570-f7ef-495f-97a1-9203d57007e1","type":"LinearScale"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"afbb3500-3074-4c50-9738-84e98d948aa5","type":"Line"},{"attributes":{"callback":null,"end":860.5686440460619,"start":0},"id":"42206c4b-3441-4ae3-b10d-fba4fc6c6863","type":"DataRange1d"},{"attributes":{"data_source":{"id":"15c59cd6-40c0-409b-b871-6db811ffa5b0","type":"ColumnDataSource"},"glyph":{"id":"4ee4b42b-979d-4f58-9941-87e79c4e041c","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"91d84762-ad3e-4142-b0e5-a8a0e376824b","type":"Circle"},"selection_glyph":null},"id":"d385e74e-efcb-4bd7-b948-857f407fe29f","type":"GlyphRenderer"},{"attributes":{},"id":"4de585f3-cef4-4f3e-a987-72340dbd60a6","type":"LinearScale"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"62bf1e99-6372-4c2a-9a19-f71bae085fa1","type":"Line"},{"attributes":{"plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"},"ticker":{"id":"cb44216f-bb64-4ff1-aa03-65192d7c0b92","type":"BasicTicker"}},"id":"57036595-e514-4b1b-8b10-d384620b1d78","type":"Grid"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"LbJ3pRAWX0BbUHF3/95iQIiYAtArN3BAAzvcglmDd0A7RNmNS3J/QPRV3VjCgItAGs1hBVAyk0A6pgUWMmqYQM/xIEy8hpZA","dtype":"float64","shape":[9]}}},"id":"6f91da52-632c-4841-85ce-3bd6defdeda0","type":"ColumnDataSource"},{"attributes":{"axis_label":"cores","formatter":{"id":"21d94c0f-121b-4b1a-9153-81a71b1a31ab","type":"BasicTickFormatter"},"plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"},"ticker":{"id":"42f1c34b-c7c5-4121-b751-aa05a3239087","type":"FixedTicker"}},"id":"dc3bbb53-429d-4260-9aa6-45e98a2be775","type":"LinearAxis"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,90187.75092977297]}},"id":"d7e0d6b8-fb4a-4e54-b015-7407a31794f1","type":"ColumnDataSource"},{"attributes":{},"id":"cb44216f-bb64-4ff1-aa03-65192d7c0b92","type":"BasicTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"kTbDifc1jEA5B/1PBoKaQOuHU50ntahAZ9QJI5VLtkAx9mM3CDnEQLuRZacBKdBAqmH6cOlv00AR3Nhh5G/eQEoAPNDmhd1A","dtype":"float64","shape":[9]}}},"id":"ec1816cc-3f9f-4512-8e57-4a83cf83db87","type":"ColumnDataSource"},{"attributes":{"axis_label":"bytes/s","formatter":{"id":"d517dc70-e6bf-4630-b959-be0ec2898fbc","type":"BasicTickFormatter"},"plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"},"ticker":{"id":"c1a8f09c-a6ff-405b-be06-782c4558eba6","type":"BasicTicker"}},"id":"e9bd950f-62b2-4765-a98e-db6b1c8eeeec","type":"LinearAxis"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"kTbDifc1jEA5B/1PBoKaQOuHU50ntahAZ9QJI5VLtkAx9mM3CDnEQLuRZacBKdBAqmH6cOlv00AR3Nhh5G/eQEoAPNDmhd1A","dtype":"float64","shape":[9]}}},"id":"ee803efa-eb3b-4bc8-a874-e4f2424a1e2b","type":"ColumnDataSource"},{"attributes":{},"id":"c1a8f09c-a6ff-405b-be06-782c4558eba6","type":"BasicTicker"},{"attributes":{"child":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"},"title":"log"},"id":"009c1ead-6a21-4251-baaa-32ce7645bc5a","type":"Panel"},{"attributes":{"dimension":1,"plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"},"ticker":{"id":"c1a8f09c-a6ff-405b-be06-782c4558eba6","type":"BasicTicker"}},"id":"877a93e9-1cca-4b09-9d05-278c94dfd138","type":"Grid"},{"attributes":{"label":{"value":"df.groupby(0)[1].mean()"},"renderers":[{"id":"212c18d2-a6f0-4ad8-9c48-a97150375720","type":"GlyphRenderer"}]},"id":"4ba13fdc-0b78-45bc-ba23-18a594c16715","type":"LegendItem"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a9237ee5-e9fc-42ae-9f49-5545ef0a7673","type":"Line"},{"attributes":{"data_source":{"id":"d7e0d6b8-fb4a-4e54-b015-7407a31794f1","type":"ColumnDataSource"},"glyph":{"id":"617cd638-9d5f-4765-89eb-7472275a2a0e","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"028955e6-2170-4e3c-b1c5-91d2e6c7cea2","type":"Line"},"selection_glyph":null},"id":"cc17ce54-c27b-4773-ace9-fd26405a4b4d","type":"GlyphRenderer"},{"attributes":{"ticker":null},"id":"d8d73696-8fda-409c-8671-bfbd8fe8cbbb","type":"LogTickFormatter"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b88406b9-d608-401e-afa2-3ee7f2a586df","type":"Circle"},{"attributes":{"child":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"51a14984-ff50-4ffd-9f85-404e8b4bfba6","type":"Panel"},{"attributes":{"dimension":1,"plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"},"ticker":{"id":"fbdb2ec2-a20a-4ec8-9f05-3eafb3435ded","type":"BasicTicker"}},"id":"af6933eb-7eb8-4827-8ca1-0222eae27f31","type":"Grid"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"3d408590-153d-4681-85ae-4708f22cd483","type":"BoxAnnotation"},{"attributes":{"data_source":{"id":"fc5c219c-e1a7-41be-b63c-2f2ba81ef1b9","type":"ColumnDataSource"},"glyph":{"id":"0d2c79e4-0457-4d22-9d58-eeb7ea9740bc","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"dc048a49-a86c-421d-85b3-866e9aaaa8a9","type":"Line"},"selection_glyph":null},"id":"4f423387-fdc4-4b44-b254-02e16e1ed7d5","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"}},"id":"6c0f4cd7-3b7f-450a-8ec5-5ad54dee9602","type":"PanTool"},{"attributes":{"plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"},"ticker":{"id":"2271dbe4-edd0-41c8-b581-78f6706f05cc","type":"BasicTicker"}},"id":"7d32d4ca-4bcb-4b99-80f8-4754c9adb392","type":"Grid"},{"attributes":{},"id":"21d94c0f-121b-4b1a-9153-81a71b1a31ab","type":"BasicTickFormatter"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"0d2c79e4-0457-4d22-9d58-eeb7ea9740bc","type":"Line"},{"attributes":{"plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"}},"id":"268bb071-8229-41d7-81ce-b1a2b2b810d9","type":"WheelZoomTool"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"ffb32e57-b8a9-45fd-b011-ef75303ec8ad","type":"Circle"},{"attributes":{"overlay":{"id":"3d408590-153d-4681-85ae-4708f22cd483","type":"BoxAnnotation"},"plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"}},"id":"8af95738-37f1-4d91-bff1-a0ad5a3357a7","type":"BoxZoomTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,46595.0987549684]}},"id":"a3b7e089-5ad8-4ebf-9a64-c1d09598606a","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"}},"id":"45ddb6b8-b536-4147-a7e6-f7302b12e46a","type":"SaveTool"},{"attributes":{"items":[{"id":"b8084d43-5b05-43f2-845a-d9bcf1c4ada1","type":"LegendItem"},{"id":"4f9b7b11-905b-4212-8a29-e4342a009bef","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"d83086bf-c820-4079-b0fb-49267a76c0bb","subtype":"Figure","type":"Plot"}},"id":"115c68a3-af39-4a59-8199-23ad4a0f78ba","type":"Legend"},{"attributes":{"plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"}},"id":"19085b66-4288-4213-ba84-7d22eb1a99ac","type":"ResetTool"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"15228f53-57af-4a54-b48e-e18360e7c5bd","type":"Circle"},{"attributes":{"plot":{"id":"e7f5d259-31f1-49a6-bf6b-7e56a0ac86b4","subtype":"Figure","type":"Plot"}},"id":"8c843b78-9689-42c8-a19b-383f83ed3cae","type":"HelpTool"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"d81ade6e-a134-4569-88f9-6710ed145dad","type":"Line"},{"attributes":{"data_source":{"id":"ea9596b4-c596-4b0d-b364-3758052a9220","type":"ColumnDataSource"},"glyph":{"id":"1bbb3080-7d77-4404-8457-8378ba7d0a21","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"c72b98cc-c4dc-4b7b-ac2a-bf554d0aefd9","type":"Line"},"selection_glyph":null},"id":"bb8ed46b-3283-4bcb-8123-2e7d95d77ab9","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"a3b7e089-5ad8-4ebf-9a64-c1d09598606a","type":"ColumnDataSource"},"glyph":{"id":"d81ade6e-a134-4569-88f9-6710ed145dad","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"afbb3500-3074-4c50-9738-84e98d948aa5","type":"Line"},"selection_glyph":null},"id":"0e99105b-1eec-4047-8453-f246267675b9","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"txeRHSzYhUCjQkyym/ODQDXnP5WM5IpAL2chJm3jhEB0ZkdqW+WBQI2SGi6KzoBAUViGGKc/hEDneAuUg4eCQAnnNrBvOH1A","dtype":"float64","shape":[9]}}},"id":"3e90ab5c-cb11-44b4-ae01-440fab2130a0","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"ee803efa-eb3b-4bc8-a874-e4f2424a1e2b","type":"ColumnDataSource"},"glyph":{"id":"851688a4-7809-4398-a203-451c229ef21e","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"62bf1e99-6372-4c2a-9a19-f71bae085fa1","type":"Line"},"selection_glyph":null},"id":"212c18d2-a6f0-4ad8-9c48-a97150375720","type":"GlyphRenderer"},{"attributes":{"label":{"value":"x[12345, 23456]"},"renderers":[{"id":"dee22ce0-66ba-4649-9c74-f6b14deb8d62","type":"GlyphRenderer"}]},"id":"466c273c-d0ae-4b38-b913-71c48c943226","type":"LegendItem"},{"attributes":{},"id":"fbdb2ec2-a20a-4ec8-9f05-3eafb3435ded","type":"BasicTicker"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"bc1d6ca4-2165-4fa9-8827-0e0ae50663c7","type":"Circle"},{"attributes":{"label":{"value":"df[0].std()"},"renderers":[{"id":"a48aa2d3-5a7c-4537-b210-38f11a1832f4","type":"GlyphRenderer"}]},"id":"5ab2bac9-cdf6-4edd-a327-9ec68c7b545f","type":"LegendItem"},{"attributes":{"data_source":{"id":"3e90ab5c-cb11-44b4-ae01-440fab2130a0","type":"ColumnDataSource"},"glyph":{"id":"bc1d6ca4-2165-4fa9-8827-0e0ae50663c7","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"8e298fbf-32ee-4dd1-abff-c26acdedacc5","type":"Circle"},"selection_glyph":null},"id":"1dfa1dab-2828-4f9f-bce9-5673cb6dd956","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"ba01f278-86ed-4144-8e23-212b673f5235","type":"Circle"},{"attributes":{},"id":"13eb8f2b-7872-4adc-a796-69ac87b9efe0","type":"LogScale"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"8e298fbf-32ee-4dd1-abff-c26acdedacc5","type":"Circle"},{"attributes":{"child":{"id":"354d44e6-7d5b-46b5-add8-5e0812ed0ef4","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"6fc4847b-fea2-49c6-944c-3c087f03b08a","type":"Panel"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"8y0AKWPAZkCdUmbwFEF2QI6UudUfxYVAYqt1iZwWkUDDRzQLwfGbQB6idyjfk55A/UKAURi0l0CkSi02kcaaQNjl7PoIv5pA","dtype":"float64","shape":[9]}}},"id":"8b8c8a62-e1b0-4930-847e-e46e8c9c1a64","type":"ColumnDataSource"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"744c6c49-c239-4b07-9a35-b96a1c0c4fd3","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2d2f0701-ffed-4624-9292-adcf6eb13b76","type":"Line"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"1bbb3080-7d77-4404-8457-8378ba7d0a21","type":"Line"},{"attributes":{"label":{"value":"df.set_index(...)"},"renderers":[{"id":"fb4f1318-40bf-4b51-8d8c-b441c1eed3c0","type":"GlyphRenderer"}]},"id":"b0557011-7268-4e67-bce4-b6b09d62330d","type":"LegendItem"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"c72b98cc-c4dc-4b7b-ac2a-bf554d0aefd9","type":"Line"},{"attributes":{},"id":"81e0367e-101e-4005-93ba-f836e0b92727","type":"LogScale"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"5mBoSrF9l0Bna2xc6/uUQD2eEyk3/Z1A41+WwWA8rkCg3qY5Aga3QAVA74snN8NAncj380uyxEDOuHXJpNfQQN8hVioyK9NA","dtype":"float64","shape":[9]}}},"id":"1b752d80-be80-4b1d-a56a-695e21cd9d48","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"96ada5fa-cc77-4370-8f95-57ba750e765d","type":"Line"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"42f1c34b-c7c5-4121-b751-aa05a3239087","type":"FixedTicker"},{"attributes":{"plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"}},"id":"ff50f331-ff6c-4fc5-9f0d-272907ba7131","type":"ResetTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,178949.5144368985]}},"id":"ea9596b4-c596-4b0d-b364-3758052a9220","type":"ColumnDataSource"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"b5b3cacd-17da-4b7a-8255-21f22b67b039","type":"LogTickFormatter"},"plot":{"id":"2e73804a-3798-4c2c-8afb-a230f37ff380","subtype":"Figure","type":"Plot"},"ticker":{"id":"bf227976-4636-4ae8-b651-79ca2bb13121","type":"LogTicker"}},"id":"8bf2acd7-c0e3-4b9f-9ec7-6bbfbf02bc94","type":"LogAxis"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"70ff432f-e2c0-4f3d-8740-3a64d1b9851b","type":"BoxAnnotation"},{"attributes":{"label":{"value":"df.std()"},"renderers":[{"id":"3543525d-36fc-463f-b01a-5ace3e3a5e70","type":"GlyphRenderer"}]},"id":"2fd34b86-5d5a-4e52-92bd-7a34844e7868","type":"LegendItem"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"5f82e741-c2af-4053-a06d-82cf9834966a","type":"Panel"},{"id":"6fc4847b-fea2-49c6-944c-3c087f03b08a","type":"Panel"}]},"id":"d5eef40f-39b6-49cb-9230-302039c21841","type":"Tabs"},{"attributes":{"plot":null,"text":"DataFrames: Full Shuffle"},"id":"113a0520-9b86-41e7-bf29-b849f4de495e","type":"Title"},{"attributes":{"child":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"},"title":"log"},"id":"5f82e741-c2af-4053-a06d-82cf9834966a","type":"Panel"},{"attributes":{"plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"}},"id":"0a9d28ae-0c46-4fa8-93b9-7586884f78b2","type":"HelpTool"},{"attributes":{"below":[{"id":"6b275538-7dee-47c4-ae09-9c61a84016b8","type":"LogAxis"}],"left":[{"id":"f2d4171a-9750-4a70-9801-267c206f0394","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"6b275538-7dee-47c4-ae09-9c61a84016b8","type":"LogAxis"},{"id":"faf2ba21-d806-4401-b08c-f410365985c0","type":"Grid"},{"id":"f2d4171a-9750-4a70-9801-267c206f0394","type":"LogAxis"},{"id":"8960a848-f444-45e4-b72b-b24fd0383d3e","type":"Grid"},{"id":"70ff432f-e2c0-4f3d-8740-3a64d1b9851b","type":"BoxAnnotation"},{"id":"9d47119f-4b80-4765-8852-50252e2f4aca","type":"Legend"},{"id":"d5fcae1d-47da-48ad-b0be-3810b2422c05","type":"GlyphRenderer"},{"id":"52752298-39d9-4847-892a-1eba3a73b48b","type":"GlyphRenderer"},{"id":"0845f557-d6e7-420f-9522-e6c54163a1cf","type":"GlyphRenderer"}],"title":{"id":"83c4bfa4-84cf-402d-bd2b-bd1eebde8506","type":"Title"},"tool_events":{"id":"7d1619c2-3b48-40cc-91a8-fc88f0c9c24f","type":"ToolEvents"},"toolbar":{"id":"c88d472f-bcc7-4929-a31d-b99ef69ef771","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"1110dafa-5b80-4374-9250-da23305c877f","type":"DataRange1d"},"x_scale":{"id":"40d865ab-754f-4202-8819-1d8775b4cfcb","type":"LogScale"},"y_range":{"id":"487dbaf5-62a1-4041-8d2c-2624bdbd0abc","type":"DataRange1d"},"y_scale":{"id":"ac0e2ba7-9ee1-4bea-91e9-941fa39bd039","type":"LogScale"}},"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"CPDOA7wEdkDPvmrzVKmGQPPjMBfneZZAL4RSELzboUAewsNdADiwQGQLuqvxDLlAiDO3aHUuwUBjrjECPpnGQMOz+hDDrsRA","dtype":"float64","shape":[9]}}},"id":"e453ea94-6c1c-456c-ab14-dbe4a81678b2","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"5mBoSrF9l0Bna2xc6/uUQD2eEyk3/Z1A41+WwWA8rkCg3qY5Aga3QAVA74snN8NAncj380uyxEDOuHXJpNfQQN8hVioyK9NA","dtype":"float64","shape":[9]}}},"id":"b005e721-b1fb-450b-a107-a2ca30c9db54","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"}},"id":"9d53358f-a4b9-4b60-ac35-5f0e5f26d9fe","type":"PanTool"},{"attributes":{"data_source":{"id":"b005e721-b1fb-450b-a107-a2ca30c9db54","type":"ColumnDataSource"},"glyph":{"id":"d072ced0-ff65-4d88-b5e2-57c72529e674","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"744c6c49-c239-4b07-9a35-b96a1c0c4fd3","type":"Line"},"selection_glyph":null},"id":"d5fcae1d-47da-48ad-b0be-3810b2422c05","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"91d84762-ad3e-4142-b0e5-a8a0e376824b","type":"Circle"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"d072ced0-ff65-4d88-b5e2-57c72529e674","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f73db528-2c8c-4e66-af7b-7091dc77227d","type":"Line"},{"attributes":{"plot":null,"text":"Arrays: Bulk Communication"},"id":"83c4bfa4-84cf-402d-bd2b-bd1eebde8506","type":"Title"},{"attributes":{"overlay":{"id":"31e613bb-109b-4dd8-a7b8-dedb6ac90927","type":"BoxAnnotation"},"plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"}},"id":"09ada8fa-169d-49df-abc7-0703b7616c81","type":"BoxZoomTool"},{"attributes":{"callback":null,"start":0},"id":"1110dafa-5b80-4374-9250-da23305c877f","type":"DataRange1d"},{"attributes":{"plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"}},"id":"168f662e-50de-4018-b25f-82741503df6e","type":"SaveTool"},{"attributes":{},"id":"7d1619c2-3b48-40cc-91a8-fc88f0c9c24f","type":"ToolEvents"},{"attributes":{"plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"}},"id":"71b8f90f-69b5-4a11-b22e-9c8037bd5bef","type":"WheelZoomTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"8361b22b-3ff7-4956-88ad-047a13352874","type":"PanTool"},{"id":"775682b6-14e9-4776-8728-d6245765d7d7","type":"WheelZoomTool"},{"id":"ed4b4a35-3f55-4984-b0c8-a056878f6a04","type":"BoxZoomTool"},{"id":"470cd535-e7e1-4478-b54d-b49a97059204","type":"SaveTool"},{"id":"3ce9e121-6fd7-401f-a547-da593e4dc77b","type":"ResetTool"},{"id":"16d88d36-65a2-4f3e-b237-11a79023b49a","type":"HelpTool"}]},"id":"c88d472f-bcc7-4929-a31d-b99ef69ef771","type":"Toolbar"},{"attributes":{"data_source":{"id":"e453ea94-6c1c-456c-ab14-dbe4a81678b2","type":"ColumnDataSource"},"glyph":{"id":"d2fb3748-d2e6-4025-8afe-e77a383f3c50","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f73db528-2c8c-4e66-af7b-7091dc77227d","type":"Line"},"selection_glyph":null},"id":"3543525d-36fc-463f-b01a-5ace3e3a5e70","type":"GlyphRenderer"},{"attributes":{},"id":"40d865ab-754f-4202-8819-1d8775b4cfcb","type":"LogScale"},{"attributes":{},"id":"f7bbd14e-534b-45b2-aa72-80a33d3d048e","type":"BasicTickFormatter"},{"attributes":{"axis_label":"cores","formatter":{"id":"ebe40921-ac2f-4cb2-a5bb-e6bd77e82fa3","type":"LogTickFormatter"},"plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"},"ticker":{"id":"baf0ecde-67cc-4c97-afc6-2208995fddb4","type":"FixedTicker"}},"id":"6b275538-7dee-47c4-ae09-9c61a84016b8","type":"LogAxis"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"d2fb3748-d2e6-4025-8afe-e77a383f3c50","type":"Line"},{"attributes":{"callback":null,"end":19628.783834012105,"start":0},"id":"487dbaf5-62a1-4041-8d2c-2624bdbd0abc","type":"DataRange1d"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"31e613bb-109b-4dd8-a7b8-dedb6ac90927","type":"BoxAnnotation"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"d8d73696-8fda-409c-8671-bfbd8fe8cbbb","type":"LogTickFormatter"},"plot":{"id":"bf138360-c752-43f5-8fb6-8e184f623a29","subtype":"Figure","type":"Plot"},"ticker":{"id":"417d361c-4a40-4733-9159-5f1811af26b7","type":"LogTicker"}},"id":"f2d4171a-9750-4a70-9801-267c206f0394","type":"LogAxis"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"cc86455c-5d1e-4abc-86d1-b890845eeceb","type":"BasicTickFormatter"},"plot":{"id":"dbde8c5e-a16f-4c03-9c99-8f0f50a1bbd4","subtype":"Figure","type":"Plot"},"ticker":{"id":"fbdb2ec2-a20a-4ec8-9f05-3eafb3435ded","type":"BasicTicker"}},"id":"7f7381b1-b3c1-442b-9895-0807a0393276","type":"LinearAxis"},{"attributes":{"items":[{"id":"6eb5feba-11a0-471c-b3e9-b6c749e1f6de","type":"LegendItem"},{"id":"ae1c749a-1e1d-4508-bc62-96b7e7b8b472","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"d596527a-b70a-42bb-897a-44a65ed6ae5d","subtype":"Figure","type":"Plot"}},"id":"8b367327-372a-448e-99a6-fd80f7367292","type":"Legend"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"3e3a4880-9622-4757-8216-1579e675e963","type":"GlyphRenderer"}]},"id":"3dc9f913-a083-4fee-9bdb-73613184eac0","type":"LegendItem"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"deecb97b-ec64-461a-bed8-a7fec272a973","type":"FixedTicker"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"9720958c-b388-4629-b5bf-1f10a75bb572","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"YiGd3kr1M0C4DswHLGBDQAJlPBqPJVNAF1KOo6LJYkAH1cQ/wblxQALKM0XtrH9ADDdmn9fbi0DY4pMc/3KVQBZyRig+NJpA","dtype":"float64","shape":[9]}}},"id":"24450ec2-23b0-43b9-a45e-645b0d14b4e0","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"da0293e6-8787-4a4b-acc4-54f1b66b0e15","type":"LogAxis"}],"left":[{"id":"99c0ff9d-5883-4247-8181-85ebbc60dbdb","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"da0293e6-8787-4a4b-acc4-54f1b66b0e15","type":"LogAxis"},{"id":"92f0df92-fb07-4101-b4c1-bd10f1501839","type":"Grid"},{"id":"99c0ff9d-5883-4247-8181-85ebbc60dbdb","type":"LogAxis"},{"id":"983d1f9d-e177-4bcc-a1a8-d9e40e414ce6","type":"Grid"},{"id":"48fde0e7-a80a-4e9e-bd2f-436c8a884fd1","type":"BoxAnnotation"},{"id":"7a0525cc-55d6-48fa-9055-850bc3b16a13","type":"Legend"},{"id":"cd853902-f97c-4992-8384-5ed93deffbc5","type":"GlyphRenderer"},{"id":"611ba4cf-ffd4-4546-88e1-08aeb3b14a35","type":"GlyphRenderer"},{"id":"76953deb-9860-4763-8a94-ac5bb647cab4","type":"GlyphRenderer"},{"id":"cf6d03a5-0a25-421f-8c94-20b344fc52cb","type":"GlyphRenderer"},{"id":"eca0ff91-84df-49e0-bed0-a5d1a0fbe0d6","type":"GlyphRenderer"},{"id":"4f0b25ee-dbc0-47f9-83c7-ed0e3b632ddd","type":"GlyphRenderer"}],"title":{"id":"7720a27e-333d-4dd8-af6f-a50c85953607","type":"Title"},"tool_events":{"id":"190f18d3-cf9a-4768-8341-9e6b68050861","type":"ToolEvents"},"toolbar":{"id":"a071c649-6e58-40d2-b509-d7b4aab2938b","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"34043d67-f8a7-44b4-a686-034d27f0c1af","type":"DataRange1d"},"x_scale":{"id":"b046beaf-bece-4af0-bda4-f549e8d43b24","type":"LogScale"},"y_range":{"id":"d9a2eb86-4659-4ef4-bdbd-78a8fbeb77c3","type":"DataRange1d"},"y_scale":{"id":"9d3f8f44-3c13-4901-944a-cd5ab8f7128e","type":"LogScale"}},"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"da37c611-bedc-4bf4-b960-9f180884f70d","type":"ToolEvents"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"PhAgSQGEM0BmSs6U6HdDQAwo6ea6PVNAoNqNGAnLYkDbj4LPiEVyQN1kKI9W54BAZTy4mhPIjED7LEuHcqKWQMQ4SLgPgZ5A","dtype":"float64","shape":[9]}}},"id":"226b848b-78d0-47a7-8136-381095ca2605","type":"ColumnDataSource"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"0e811120-b5fb-4b6a-acaf-28b0e4a6c1d1","type":"GlyphRenderer"}]},"id":"6eb5feba-11a0-471c-b3e9-b6c749e1f6de","type":"LegendItem"},{"attributes":{"plot":null,"text":"DataFrames: Elementwise"},"id":"7720a27e-333d-4dd8-af6f-a50c85953607","type":"Title"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"73babae4-8e06-44f1-9d83-c6eb0618f4ae","type":"FixedTicker"},{"attributes":{"data_source":{"id":"2ac7d06b-3cf9-49d7-9bc5-b0cdd1c04e06","type":"ColumnDataSource"},"glyph":{"id":"97216997-39de-4b2a-9536-0b0f61e8156d","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"8ef089b6-3e17-4882-8fb0-80ff34ab8b69","type":"Line"},"selection_glyph":null},"id":"34a85c78-f3f8-4f21-91e8-1fe0f4fae357","type":"GlyphRenderer"},{"attributes":{"children":[{"id":"bddfdd21-3692-4f09-a839-053ec2e8b96e","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"51125763-50b1-42e3-a52f-a429803a4aa3","type":"WidgetBox"},{"attributes":{"callback":null,"start":0},"id":"34043d67-f8a7-44b4-a686-034d27f0c1af","type":"DataRange1d"},{"attributes":{"line_color":{"value":"#2ca02c"},"x":{"field":"x"},"y":{"field":"y"}},"id":"5ba8039d-868c-4c4e-93d9-acde699026b7","type":"Line"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"97216997-39de-4b2a-9536-0b0f61e8156d","type":"Line"},{"attributes":{},"id":"190f18d3-cf9a-4768-8341-9e6b68050861","type":"ToolEvents"},{"attributes":{"callback":null,"start":0},"id":"8ec9bb53-f780-4baa-8ef5-a50a56dc6be3","type":"DataRange1d"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"ef963147-69dd-4316-824e-c39236f8374e","type":"PanTool"},{"id":"dd1840f2-3a3f-4ee8-96d7-274b0b58a153","type":"WheelZoomTool"},{"id":"cc2ba96b-474a-45b8-a0f7-c979a271d7f6","type":"BoxZoomTool"},{"id":"89c7e6f2-37c0-4e30-8273-cc364867a06e","type":"SaveTool"},{"id":"5f24c536-7893-4741-b8a6-f4e717ad6684","type":"ResetTool"},{"id":"7ec0ca47-849b-4454-a2f0-7708648ed7be","type":"HelpTool"}]},"id":"344426e7-d635-4e04-a5de-4ffd275f71c6","type":"Toolbar"},{"attributes":{"children":[{"id":"4d110cea-f4d8-49a1-bd97-89adb074f930","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"5c8cf25d-0f4c-46d7-a10b-af71e65fd1f4","type":"WidgetBox"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"c869dddf-026b-4298-848c-9488ecfbb0d0","type":"PanTool"},{"id":"06f0f153-fe4f-4f04-bd9b-59cd409d355c","type":"WheelZoomTool"},{"id":"923715ca-d193-4f9d-944c-58b88c7822e4","type":"BoxZoomTool"},{"id":"71367c3f-65b3-44c2-bc8b-9fc765bc5439","type":"SaveTool"},{"id":"6e79b2a1-f12d-421b-97e1-436f5f3e9ab2","type":"ResetTool"},{"id":"06f3f5fc-0cde-4733-a283-d09e63fb8e80","type":"HelpTool"}]},"id":"a071c649-6e58-40d2-b509-d7b4aab2938b","type":"Toolbar"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"ee3537e5-86e7-4a9d-b711-c2af4eba781f","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"98d27QUzmkDK8eq3P0GeQDr+4mLrCqlAVTMqiTA6rEBCN3IZNmOuQOX8onhe0a1A7S7Drxhtq0DDEdAa+eaqQHPoMPdNM6lA","dtype":"float64","shape":[9]}}},"id":"216e410a-eab9-4916-8e8e-cdb763349136","type":"ColumnDataSource"},{"attributes":{"num_minor_ticks":10},"id":"2b14d7dd-d2f6-4a27-847e-77b0bf60361e","type":"LogTicker"},{"attributes":{"plot":null,"text":"Tasks: Tree Reduction"},"id":"6ceb9969-20b5-49b8-af74-e7e4340a10dc","type":"Title"},{"attributes":{"data_source":{"id":"d29b555c-87cc-486b-b2ff-f337f857ec70","type":"ColumnDataSource"},"glyph":{"id":"5ba8039d-868c-4c4e-93d9-acde699026b7","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"b2fed8be-3137-416d-b963-f115b6352fcb","type":"Line"},"selection_glyph":null},"id":"d1ebdf62-fdde-4a98-b4cb-020bb3f8a1a8","type":"GlyphRenderer"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"8ef089b6-3e17-4882-8fb0-80ff34ab8b69","type":"Line"},{"attributes":{"children":[{"id":"bc2a925a-2e83-48cf-a2c4-b3b85a7804f9","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"b2d598c9-d4df-4a68-8f1d-68cffc6f1164","type":"WidgetBox"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"08a42295-f619-42c9-b9b2-ebe2f84a8490","type":"Circle"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"f674b4e6-f1c4-4679-8225-4004f87731fd","type":"FixedTicker"},{"attributes":{"num_minor_ticks":10},"id":"e81dc0e0-36f0-41d3-9456-ad2840ba21f8","type":"LogTicker"},{"attributes":{"callback":null,"end":31321.93079477908,"start":0},"id":"d9a2eb86-4659-4ef4-bdbd-78a8fbeb77c3","type":"DataRange1d"},{"attributes":{"data_source":{"id":"226b848b-78d0-47a7-8136-381095ca2605","type":"ColumnDataSource"},"glyph":{"id":"ee3537e5-86e7-4a9d-b711-c2af4eba781f","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"08a42295-f619-42c9-b9b2-ebe2f84a8490","type":"Circle"},"selection_glyph":null},"id":"6cdd9453-036b-46a1-8702-56743bbbbb70","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"98d27QUzmkDK8eq3P0GeQDr+4mLrCqlAVTMqiTA6rEBCN3IZNmOuQOX8onhe0a1A7S7Drxhtq0DDEdAa+eaqQHPoMPdNM6lA","dtype":"float64","shape":[9]}}},"id":"2ac7d06b-3cf9-49d7-9bc5-b0cdd1c04e06","type":"ColumnDataSource"},{"attributes":{"ticker":null},"id":"adfc28a7-c9ef-4dba-b554-717dbda721ec","type":"LogTickFormatter"},{"attributes":{"label":{"value":"1us"},"renderers":[{"id":"34a85c78-f3f8-4f21-91e8-1fe0f4fae357","type":"GlyphRenderer"}]},"id":"ae1c749a-1e1d-4508-bc62-96b7e7b8b472","type":"LegendItem"},{"attributes":{"plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"},"ticker":{"id":"2b14d7dd-d2f6-4a27-847e-77b0bf60361e","type":"LogTicker"}},"id":"92f0df92-fb07-4101-b4c1-bd10f1501839","type":"Grid"},{"attributes":{"callback":null,"tabs":[{"id":"53351d4a-2cee-4165-8f1c-c86f897bd418","type":"Panel"},{"id":"890493da-ef86-4d46-938a-2dd5a182a384","type":"Panel"}]},"id":"515cf591-ccc9-4d46-8771-c0b31a55cb97","type":"Tabs"},{"attributes":{"callback":null,"start":0},"id":"4e708514-46ec-4b98-946d-1599deda79a7","type":"DataRange1d"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"1Kb//XpDnED+4P/fNNapQHf4V3ait6lAprCFQjc6r0DGsrWLmNarQOaB18HP4q1ArjxETcD/rEC2aNo+EvGrQGxqBt5Qg6tA","dtype":"float64","shape":[9]}}},"id":"bc931ae2-6111-4082-9ad6-fc2397b13e0d","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"d0cc3968-e9bd-45dc-a1c6-7082cb75b4ea","type":"Line"},{"attributes":{"children":[{"id":"067958e4-18bc-4159-852e-fc2a375a27cb","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"48036047-1f68-42ed-9c8e-881e34e44386","type":"WidgetBox"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"1Kb//XpDnED+4P/fNNapQHf4V3ait6lAprCFQjc6r0DGsrWLmNarQOaB18HP4q1ArjxETcD/rEC2aNo+EvGrQGxqBt5Qg6tA","dtype":"float64","shape":[9]}}},"id":"d29b555c-87cc-486b-b2ff-f337f857ec70","type":"ColumnDataSource"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b18f555f-df99-4a18-97da-08065ef87eac","type":"Circle"},{"attributes":{},"id":"b046beaf-bece-4af0-bda4-f549e8d43b24","type":"LogScale"},{"attributes":{"children":[{"id":"682f90be-e284-4f12-a195-8e4927a7b6dc","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"53cea20e-2f14-4b85-8239-4e58ae53738b","type":"WidgetBox"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b2fed8be-3137-416d-b963-f115b6352fcb","type":"Line"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"d0bd021d-6c9f-4b97-82d6-e9dfdb6f3fc7","type":"Circle"},{"attributes":{"axis_label":"cores","formatter":{"id":"adfc28a7-c9ef-4dba-b554-717dbda721ec","type":"LogTickFormatter"},"plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"},"ticker":{"id":"8ba39ea0-6825-4ab7-8b3f-7c1ea62a5c1f","type":"FixedTicker"}},"id":"da0293e6-8787-4a4b-acc4-54f1b66b0e15","type":"LogAxis"},{"attributes":{"data_source":{"id":"47bc40dc-b545-48af-bd85-d901454eb062","type":"ColumnDataSource"},"glyph":{"id":"d0cc3968-e9bd-45dc-a1c6-7082cb75b4ea","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"196b337e-cf37-461b-a2f5-a405e2edcb0b","type":"Line"},"selection_glyph":null},"id":"8fca08fa-ae6e-4a96-b377-c51a5fac6c86","type":"GlyphRenderer"},{"attributes":{},"id":"9d3f8f44-3c13-4901-944a-cd5ab8f7128e","type":"LogScale"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"1f4d4bb4-e030-45fe-9404-a338c9ff5df1","type":"LogTickFormatter"},"plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"},"ticker":{"id":"e81dc0e0-36f0-41d3-9456-ad2840ba21f8","type":"LogTicker"}},"id":"99c0ff9d-5883-4247-8181-85ebbc60dbdb","type":"LogAxis"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"3cac42c0-6194-4169-9716-4dec8c4aa05a","type":"Line"},{"attributes":{"label":{"value":"1us"},"renderers":[{"id":"d1ebdf62-fdde-4a98-b4cb-020bb3f8a1a8","type":"GlyphRenderer"}]},"id":"a8dc3374-6ebe-49de-b7b0-c9600eb77fb9","type":"LegendItem"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a291aa4a-9f10-4223-8b97-4859c884adc0","type":"Circle"},{"attributes":{"children":[{"id":"b2d598c9-d4df-4a68-8f1d-68cffc6f1164","type":"WidgetBox"},{"id":"c042a9dd-3b37-48f3-be88-5992ed5c87a3","type":"WidgetBox"}],"sizing_mode":"scale_width"},"id":"609029c0-8bfc-4ee4-accf-af70114ed2af","type":"Row"},{"attributes":{"data_source":{"id":"58d2c711-9c56-4160-b4fc-688acfb61595","type":"ColumnDataSource"},"glyph":{"id":"1f486cb7-4d22-4c1f-a311-6b93b01ec372","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"74a558cd-fb53-4650-a6d9-bd590e706dc8","type":"Line"},"selection_glyph":null},"id":"709df9d8-d49b-4549-8089-964dc4ed02d1","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"216e410a-eab9-4916-8e8e-cdb763349136","type":"ColumnDataSource"},"glyph":{"id":"d0bd021d-6c9f-4b97-82d6-e9dfdb6f3fc7","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"a291aa4a-9f10-4223-8b97-4859c884adc0","type":"Circle"},"selection_glyph":null},"id":"c3588a2b-2bad-4eac-a8e9-cdba1cb268e2","type":"GlyphRenderer"},{"attributes":{"dimension":1,"plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"},"ticker":{"id":"e81dc0e0-36f0-41d3-9456-ad2840ba21f8","type":"LogTicker"}},"id":"983d1f9d-e177-4bcc-a1a8-d9e40e414ce6","type":"Grid"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"309755c0-e6ae-4ef6-92ac-88ecfed33a2c","type":"Line"},{"attributes":{"data_source":{"id":"ae076018-ffa2-41fa-aa1e-d4f975b654a4","type":"ColumnDataSource"},"glyph":{"id":"e369f3b7-fe55-4643-a276-feddb15f54a5","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"b18f555f-df99-4a18-97da-08065ef87eac","type":"Circle"},"selection_glyph":null},"id":"cbe97b25-e92c-4fa4-95f7-c625d8f6e111","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"0f0a75f0-9615-4598-ad77-dcac0abfc7f6","type":"Circle"},{"attributes":{"sizing_mode":"scale_width","toolbar_location":"above","tools":[{"id":"2b82eb62-e193-41f6-836a-f70e97ad6b5a","type":"PanTool"},{"id":"c13542c5-c8f2-4b1d-a5ce-55f0dde4c758","type":"WheelZoomTool"},{"id":"d7b8a053-c9f1-4fb7-bed4-a3df788f3ed2","type":"BoxZoomTool"},{"id":"13000b57-843e-4b11-98c2-6f02983aa18e","type":"SaveTool"},{"id":"e1966624-3bba-4c3a-86cf-1106a6800dc3","type":"ResetTool"},{"id":"08f094cf-dc4b-463e-9621-abdff60d0163","type":"HelpTool"},{"id":"76cf33d1-1336-4737-8cad-79fdcc322c10","type":"PanTool"},{"id":"f8834acc-9897-441d-9102-1f616408a50e","type":"WheelZoomTool"},{"id":"e7ac849f-5c88-4646-ae8c-6a4bc419f016","type":"BoxZoomTool"},{"id":"2c1a56f5-2c0d-4758-a7cc-eb45971629aa","type":"SaveTool"},{"id":"43e9c244-f5b8-4240-a21d-ba93dd66d881","type":"ResetTool"},{"id":"a0a42aa4-41ea-4099-a082-ff6b3e0b4400","type":"HelpTool"},{"id":"c869dddf-026b-4298-848c-9488ecfbb0d0","type":"PanTool"},{"id":"06f0f153-fe4f-4f04-bd9b-59cd409d355c","type":"WheelZoomTool"},{"id":"923715ca-d193-4f9d-944c-58b88c7822e4","type":"BoxZoomTool"},{"id":"71367c3f-65b3-44c2-bc8b-9fc765bc5439","type":"SaveTool"},{"id":"6e79b2a1-f12d-421b-97e1-436f5f3e9ab2","type":"ResetTool"},{"id":"06f3f5fc-0cde-4733-a283-d09e63fb8e80","type":"HelpTool"},{"id":"0b91a400-e7e6-479c-ab8d-dd80448d3b0e","type":"PanTool"},{"id":"61d07d7f-f947-4d2a-b341-c4bf85907198","type":"WheelZoomTool"},{"id":"57656b7a-1720-478f-ac0a-95a597024f3f","type":"BoxZoomTool"},{"id":"15a60aeb-0901-43a5-a728-241b8af7fc12","type":"SaveTool"},{"id":"a1f08da9-1313-44bd-8f3b-3a3d3c43eb46","type":"ResetTool"},{"id":"38f21f50-12f8-49d4-88f0-a7d648ec7347","type":"HelpTool"},{"id":"de25869c-2180-4518-a20f-bdf692f81aa1","type":"PanTool"},{"id":"a4b243e0-e791-4a8d-aec9-365070929b02","type":"WheelZoomTool"},{"id":"b9e581e8-8947-4185-bb76-39863c3ef43d","type":"BoxZoomTool"},{"id":"bcecb8b5-28bd-4f4f-bdb3-a693d7ebae56","type":"SaveTool"},{"id":"3270958b-802a-4185-991e-b40fd50477a0","type":"ResetTool"},{"id":"ecdc3244-d890-4831-ae2f-4b9a127b2173","type":"HelpTool"},{"id":"ece331ec-6fb2-4089-8b37-3920e038c682","type":"PanTool"},{"id":"01965bf4-e8c4-4ab4-ba11-d812d609dfe5","type":"WheelZoomTool"},{"id":"5bae1a67-b093-424d-9098-79c5e411c1e5","type":"BoxZoomTool"},{"id":"20d93f6e-d1ac-41f7-9eb4-5bb797a77934","type":"SaveTool"},{"id":"17d27847-a15f-4d57-8436-dd60b85219ef","type":"ResetTool"},{"id":"2c4661b2-6594-4d44-941f-b9b29a09447a","type":"HelpTool"},{"id":"9d53358f-a4b9-4b60-ac35-5f0e5f26d9fe","type":"PanTool"},{"id":"71b8f90f-69b5-4a11-b22e-9c8037bd5bef","type":"WheelZoomTool"},{"id":"09ada8fa-169d-49df-abc7-0703b7616c81","type":"BoxZoomTool"},{"id":"168f662e-50de-4018-b25f-82741503df6e","type":"SaveTool"},{"id":"ff50f331-ff6c-4fc5-9f0d-272907ba7131","type":"ResetTool"},{"id":"0a9d28ae-0c46-4fa8-93b9-7586884f78b2","type":"HelpTool"},{"id":"81841aa7-676d-402a-8666-6664cf5519ae","type":"PanTool"},{"id":"06fbd4d5-fe13-42d0-9421-8d0877b78efa","type":"WheelZoomTool"},{"id":"77426e4c-cc31-4908-940c-e24d10e80abb","type":"BoxZoomTool"},{"id":"da292bcf-3c4c-4796-abd6-94dc90c9c8bb","type":"SaveTool"},{"id":"262cfe98-756b-4aed-b2e9-fcd9a7fcb524","type":"ResetTool"},{"id":"48e2c614-a86a-4802-b12a-53e7d558caa8","type":"HelpTool"},{"id":"9bfe2281-8649-489d-b24b-7d071f5e0448","type":"PanTool"},{"id":"04994c9c-5fd6-43a7-8350-ba05388e5dda","type":"WheelZoomTool"},{"id":"cd115f44-a4b3-4792-b271-ff55420fa101","type":"BoxZoomTool"},{"id":"1867925c-2af4-4db7-8e7f-f5ebe7c04b2c","type":"SaveTool"},{"id":"139b60e4-50a4-4e7d-859b-078ddbdbdcc7","type":"ResetTool"},{"id":"c6324a86-b7a0-4476-8559-7e4c969cbc1d","type":"HelpTool"},{"id":"0a12f286-72b9-40f7-9747-cce4fca208b7","type":"PanTool"},{"id":"6c2a2f99-b315-4295-938e-4182eefbf3a8","type":"WheelZoomTool"},{"id":"2d6b0dc4-acfe-49bb-9dda-551a36dcf187","type":"BoxZoomTool"},{"id":"aaeac710-c162-4542-bc3a-0a5dabae8022","type":"SaveTool"},{"id":"541700d3-9318-4921-895f-bc6a03b02ecb","type":"ResetTool"},{"id":"21b20b53-1ceb-423e-a2ec-b801c3464c1e","type":"HelpTool"},{"id":"04a7a51b-fbbb-425a-8cfe-6dd02962e744","type":"PanTool"},{"id":"54250a06-b278-4bf6-b85a-f689f5021979","type":"WheelZoomTool"},{"id":"1a20d206-c661-4312-9339-cee7e4878f9b","type":"BoxZoomTool"},{"id":"29feaaed-05a7-4359-9eed-5e7cb8487502","type":"SaveTool"},{"id":"93e59c29-b745-43c4-a2ec-157e1523e2dc","type":"ResetTool"},{"id":"f4d6378e-99e2-41ca-9077-4e1fa1c98975","type":"HelpTool"},{"id":"b9db48f5-2638-4c94-a364-8e39eba47393","type":"PanTool"},{"id":"51b20535-8160-496c-986d-8baaecbb2697","type":"WheelZoomTool"},{"id":"e97e20d3-03e2-428d-aa0f-d00fd9bde72e","type":"BoxZoomTool"},{"id":"86256809-cc92-4e15-ae4a-6278598dfde4","type":"SaveTool"},{"id":"ee40caee-98db-40f4-b0db-7656427ffd03","type":"ResetTool"},{"id":"de4229e6-b7b3-4b99-a9cf-99e8e2addfe1","type":"HelpTool"}]},"id":"28b76cb2-6ef1-4876-bb6b-4ad74fe7ff10","type":"ToolbarBox"},{"attributes":{"data_source":{"id":"bc931ae2-6111-4082-9ad6-fc2397b13e0d","type":"ColumnDataSource"},"glyph":{"id":"0f0a75f0-9615-4598-ad77-dcac0abfc7f6","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"02400165-226a-443f-bd23-9a95c5960140","type":"Circle"},"selection_glyph":null},"id":"456a4a3c-1e23-4e6a-bedd-81c07d21ef13","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"e369f3b7-fe55-4643-a276-feddb15f54a5","type":"Circle"},{"attributes":{"data_source":{"id":"f2fa5cbc-9ff1-43ae-8dd7-30ea0c8a8ecb","type":"ColumnDataSource"},"glyph":{"id":"309755c0-e6ae-4ef6-92ac-88ecfed33a2c","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"9720958c-b388-4629-b5bf-1f10a75bb572","type":"Line"},"selection_glyph":null},"id":"cd853902-f97c-4992-8384-5ed93deffbc5","type":"GlyphRenderer"},{"attributes":{"child":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"},"title":"log"},"id":"d02370bb-d02f-4e1b-ba87-d899301df6bf","type":"Panel"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"02400165-226a-443f-bd23-9a95c5960140","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,5109.292459316874]}},"id":"47bc40dc-b545-48af-bd85-d901454eb062","type":"ColumnDataSource"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"48fde0e7-a80a-4e9e-bd2f-436c8a884fd1","type":"BoxAnnotation"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"196b337e-cf37-461b-a2f5-a405e2edcb0b","type":"Line"},{"attributes":{"children":[{"id":"7d705d97-1eec-49b4-bda6-9eebdb487600","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"c042a9dd-3b37-48f3-be88-5992ed5c87a3","type":"WidgetBox"},{"attributes":{"children":[{"id":"28b76cb2-6ef1-4876-bb6b-4ad74fe7ff10","type":"ToolbarBox"},{"id":"3f03d566-49e4-49c5-a975-a6991af0707f","type":"Column"}],"sizing_mode":"scale_width"},"id":"8cef5b34-d5d8-47bf-9055-bdcedac89484","type":"Column"},{"attributes":{"plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"}},"id":"c869dddf-026b-4298-848c-9488ecfbb0d0","type":"PanTool"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"b1eaf9f9-78f0-4828-ac0e-59daee40d548","type":"Line"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"80bc6a21-9b42-485f-9c21-6fe45a77ce81","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,9558.858417964195]}},"id":"2f0e9839-fadf-4d77-8731-a9c5631134a1","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"b2ac3fe0-a9e8-4336-a6eb-a9c99bb77f6b","type":"ColumnDataSource"},"glyph":{"id":"b1eaf9f9-78f0-4828-ac0e-59daee40d548","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"fa6225cd-58ee-4a38-b0d6-ad3ea9bd0c62","type":"Line"},"selection_glyph":null},"id":"68b04869-9d0b-402b-8294-fb51737caed5","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"1f486cb7-4d22-4c1f-a311-6b93b01ec372","type":"Line"},{"attributes":{"plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"}},"id":"06f0f153-fe4f-4f04-bd9b-59cd409d355c","type":"WheelZoomTool"},{"attributes":{"below":[{"id":"b50fcfc7-852e-4175-a484-f0c7929d0be6","type":"LogAxis"}],"left":[{"id":"3c6f921a-e1e0-4d53-bf09-070318c1480b","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"b50fcfc7-852e-4175-a484-f0c7929d0be6","type":"LogAxis"},{"id":"a91e731e-5176-484f-bdeb-cba448ed06ed","type":"Grid"},{"id":"3c6f921a-e1e0-4d53-bf09-070318c1480b","type":"LogAxis"},{"id":"7556ee27-b6ed-4f28-b58c-9f8233cee83f","type":"Grid"},{"id":"d74aa3a3-c638-44f8-bc84-1e0d355ed4fb","type":"BoxAnnotation"},{"id":"f5c62aec-87be-4702-b5af-4dea433eeeda","type":"Legend"},{"id":"45795d30-20cf-421a-90d5-552a1df6c804","type":"GlyphRenderer"},{"id":"f2343a90-0f7a-4366-8d1f-79df80822bfe","type":"GlyphRenderer"},{"id":"4a334960-fb43-4949-8e13-5cc44f095565","type":"GlyphRenderer"},{"id":"644a8b13-3361-41d5-b179-460630e1a06d","type":"GlyphRenderer"},{"id":"d580f476-985c-4210-a9c9-b6ebbdbe8ef8","type":"GlyphRenderer"},{"id":"39e06dbc-9a1e-441a-b66e-387a27314ce3","type":"GlyphRenderer"}],"title":{"id":"6ceb9969-20b5-49b8-af74-e7e4340a10dc","type":"Title"},"tool_events":{"id":"da37c611-bedc-4bf4-b960-9f180884f70d","type":"ToolEvents"},"toolbar":{"id":"32c5998f-e289-477a-a7f0-ec9c1b401522","type":"Toolbar"},"x_range":{"id":"8ec9bb53-f780-4baa-8ef5-a50a56dc6be3","type":"DataRange1d"},"x_scale":{"id":"ea6823ec-e386-4d86-9551-8b80fd1c0929","type":"LogScale"},"y_range":{"id":"2a2bf995-7f81-4c01-bdf4-737b49bb5434","type":"DataRange1d"},"y_scale":{"id":"693b8e3a-6242-45c9-813e-6c352e54feed","type":"LogScale"}},"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"74a558cd-fb53-4650-a6d9-bd590e706dc8","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"fa6225cd-58ee-4a38-b0d6-ad3ea9bd0c62","type":"Line"},{"attributes":{"overlay":{"id":"48fde0e7-a80a-4e9e-bd2f-436c8a884fd1","type":"BoxAnnotation"},"plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"}},"id":"923715ca-d193-4f9d-944c-58b88c7822e4","type":"BoxZoomTool"},{"attributes":{"data_source":{"id":"14a6dd3a-ba9e-4451-92da-0b1a6f12b321","type":"ColumnDataSource"},"glyph":{"id":"549b8eda-aa71-44d5-9e0b-9b0ea1f30836","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"0e661795-1e40-42fd-bfb2-49c0e5851826","type":"Line"},"selection_glyph":null},"id":"7d8cbf49-f0bf-4739-979a-7f055e17f277","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"}},"id":"71367c3f-65b3-44c2-bc8b-9fc765bc5439","type":"SaveTool"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"60deee68-cb1a-48f9-b86a-aa720e9fdc6f","type":"Circle"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"7b38614f-09f7-4738-8ebe-089febc14dd8","type":"Line"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"acdabbcf-d0bc-4bc7-a81d-cbfd88cbe15e","type":"Line"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"0e46acf9-09da-417d-a968-159dea7e0873","type":"FixedTicker"},{"attributes":{"plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"}},"id":"6e79b2a1-f12d-421b-97e1-436f5f3e9ab2","type":"ResetTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,506.8406659004797]}},"id":"58d2c711-9c56-4160-b4fc-688acfb61595","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,429249.4818984265]}},"id":"b2ac3fe0-a9e8-4336-a6eb-a9c99bb77f6b","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"}},"id":"06f3f5fc-0cde-4733-a283-d09e63fb8e80","type":"HelpTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"BSBNWCE2dEC9BpWUVImFQDzSCcCUkJBAVLgx0fyxnkCFGyLiy4+jQE7fanACZ6xAEeby5mMgsEDryZN7k+GwQFqGlput7rBA","dtype":"float64","shape":[9]}}},"id":"8ad7615f-51ad-41c7-b1e0-337bd8c82673","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"30917702-470e-4685-9830-7bc92131827d","type":"ColumnDataSource"},"glyph":{"id":"acdabbcf-d0bc-4bc7-a81d-cbfd88cbe15e","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2401d944-e5a3-419a-870f-549c6f410968","type":"Line"},"selection_glyph":null},"id":"0d73ec87-f247-42dd-aa8e-6a30c4849c0e","type":"GlyphRenderer"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"f9a639d4-0a82-4749-88a4-bf025f7348ff","type":"GlyphRenderer"}]},"id":"e1eb6940-c616-4216-9f29-0b7b8d30694e","type":"LegendItem"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"zYZNznMFgkAJVc0dH1aIQF6HLbAX8KBAEDiFMgobsEBOSk1Dh6G8QIcwzAFNYsdAkYwvunD+0kD/VzpMtBLaQNxDJJJ7lt5A","dtype":"float64","shape":[9]}}},"id":"f2fa5cbc-9ff1-43ae-8dd7-30ea0c8a8ecb","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"7b38a3fe-f342-4f09-8633-895cd6f78c16","type":"LogAxis"}],"left":[{"id":"09dc88c0-411b-4925-a5e3-21de90889400","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"7b38a3fe-f342-4f09-8633-895cd6f78c16","type":"LogAxis"},{"id":"f4fdfa42-c255-4537-8c5f-3fe3314db93c","type":"Grid"},{"id":"09dc88c0-411b-4925-a5e3-21de90889400","type":"LogAxis"},{"id":"98503142-2dad-473a-92da-a2b1090cbfd6","type":"Grid"},{"id":"bf7a1ecf-5767-45a0-bf2e-6acf9643a458","type":"BoxAnnotation"},{"id":"7af3ef08-9d2f-44e8-a096-ffed0ce42b15","type":"Legend"},{"id":"f9a639d4-0a82-4749-88a4-bf025f7348ff","type":"GlyphRenderer"},{"id":"cbe97b25-e92c-4fa4-95f7-c625d8f6e111","type":"GlyphRenderer"},{"id":"7d8cbf49-f0bf-4739-979a-7f055e17f277","type":"GlyphRenderer"},{"id":"80a40327-c430-40e1-8f2c-dac700777eb2","type":"GlyphRenderer"},{"id":"9f288aaa-82ff-46f4-8bf4-3cf335875256","type":"GlyphRenderer"},{"id":"a668550a-b6bd-420e-94a0-5fcd299635fa","type":"GlyphRenderer"}],"title":{"id":"b08c83bf-a84f-4c5c-895a-b473fdead52f","type":"Title"},"tool_events":{"id":"0d081c86-7571-47f1-bfc6-de24820edfb7","type":"ToolEvents"},"toolbar":{"id":"cf9a0a0c-6d28-4149-ba79-9a58f04c5061","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"ec1d775c-dfa5-4d0e-a787-98c358e3480e","type":"DataRange1d"},"x_scale":{"id":"c03284a4-5733-407b-ab0f-d4d81f920a2d","type":"LogScale"},"y_range":{"id":"9656f774-8191-411a-b3f6-3c3e54127af3","type":"DataRange1d"},"y_scale":{"id":"34f5a12d-d155-4614-b981-4c177fe227d2","type":"LogScale"}},"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"},{"attributes":{"child":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"},"title":"log"},"id":"80c3be4c-8081-480d-9da3-addc890ff49c","type":"Panel"},{"attributes":{"data_source":{"id":"538a97ac-2e34-4abf-a5e2-7570e274d3f5","type":"ColumnDataSource"},"glyph":{"id":"80bc6a21-9b42-485f-9c21-6fe45a77ce81","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f199459f-7714-4eb0-a4e0-3b0712109a57","type":"Line"},"selection_glyph":null},"id":"76953deb-9860-4763-8a94-ac5bb647cab4","type":"GlyphRenderer"},{"attributes":{"items":[{"id":"9ec899a7-17d1-4036-b04b-f8571d6c4301","type":"LegendItem"},{"id":"51b3fff7-3940-4500-9667-260f70667185","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"}},"id":"e17a2f1c-37b7-4731-9b71-3c5f5de1b30e","type":"Legend"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"80c3be4c-8081-480d-9da3-addc890ff49c","type":"Panel"},{"id":"08641f92-85d2-4c9d-a11c-21a93031ddde","type":"Panel"}]},"id":"aeaa4543-6cc0-4ed6-bf28-929d3bf8399f","type":"Tabs"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,4996.005022052732]}},"id":"30917702-470e-4685-9830-7bc92131827d","type":"ColumnDataSource"},{"attributes":{"ticker":null},"id":"1f4d4bb4-e030-45fe-9404-a338c9ff5df1","type":"LogTickFormatter"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"2401d944-e5a3-419a-870f-549c6f410968","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"43c66efd-7698-49b9-b680-0d10546b250f","type":"Line"},{"attributes":{},"id":"548c551b-c483-4441-98cd-2ceea8cd15a2","type":"BasicTickFormatter"},{"attributes":{"overlay":{"id":"ab10fe90-cae8-447a-af95-b3c5e014c4af","type":"BoxAnnotation"},"plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"}},"id":"dd8d9f16-c2ba-4ca6-91e3-6cc6c3606729","type":"BoxZoomTool"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"d2907638-c321-4c0f-9ca4-92f292a0e95d","type":"Line"},{"attributes":{"children":[{"id":"dd1c4ad1-e50c-417c-a615-b3d7acdf96c8","type":"Row"},{"id":"832b3d76-7254-415f-99bd-28ab20af0ab2","type":"Row"},{"id":"609029c0-8bfc-4ee4-accf-af70114ed2af","type":"Row"}],"sizing_mode":"scale_width"},"id":"3f03d566-49e4-49c5-a975-a6991af0707f","type":"Column"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f199459f-7714-4eb0-a4e0-3b0712109a57","type":"Line"},{"attributes":{"data_source":{"id":"e0a1ea65-7844-4521-8824-7ef2b3b51172","type":"ColumnDataSource"},"glyph":{"id":"d2907638-c321-4c0f-9ca4-92f292a0e95d","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"226d8845-d933-459e-bfd1-4c5edd23fc80","type":"Line"},"selection_glyph":null},"id":"36248ec8-5457-4eb1-adb0-908e0f6b885e","type":"GlyphRenderer"},{"attributes":{"items":[{"id":"e1eb6940-c616-4216-9f29-0b7b8d30694e","type":"LegendItem"},{"id":"016140c0-733a-42e7-a6fd-9596879785b7","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"}},"id":"7af3ef08-9d2f-44e8-a096-ffed0ce42b15","type":"Legend"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"zYZNznMFgkAJVc0dH1aIQF6HLbAX8KBAEDiFMgobsEBOSk1Dh6G8QIcwzAFNYsdAkYwvunD+0kD/VzpMtBLaQNxDJJJ7lt5A","dtype":"float64","shape":[9]}}},"id":"dd527476-61b0-4a8a-b9d2-567373d3b727","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"}},"id":"ddb6422a-3fc9-47a5-885a-6a6dd8f99f1a","type":"ResetTool"},{"attributes":{"overlay":{"id":"add7c6e9-6c2c-44db-a848-5316f1f5604e","type":"BoxAnnotation"},"plot":{"id":"235a3d83-e4c1-4855-b3f3-96247ff0b146","subtype":"Figure","type":"Plot"}},"id":"f50914d8-200a-4f31-abfd-26c17a885c0c","type":"BoxZoomTool"},{"attributes":{},"id":"19779bf4-dc96-4d5f-a96c-650727df217c","type":"ToolEvents"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"VDws0AG1nUDZ+18BvWCtQLxzwc5E/bpAaCwXiat5w0Bb8Sa8jEzHQLDjXzrvA8JAB24/B96Gw0AcKVqQRQLDQPc5BRJjuMJA","dtype":"float64","shape":[9]}}},"id":"3013aa6d-021d-4bc4-a8db-8a82ff575182","type":"ColumnDataSource"},{"attributes":{"plot":null,"text":"Tasks: Dynamic Reduction"},"id":"b08c83bf-a84f-4c5c-895a-b473fdead52f","type":"Title"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,463070.74804554624]}},"id":"e0a1ea65-7844-4521-8824-7ef2b3b51172","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"VDws0AG1nUDZ+18BvWCtQLxzwc5E/bpAaCwXiat5w0Bb8Sa8jEzHQLDjXzrvA8JAB24/B96Gw0AcKVqQRQLDQPc5BRJjuMJA","dtype":"float64","shape":[9]}}},"id":"538a97ac-2e34-4abf-a5e2-7570e274d3f5","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"8ad7615f-51ad-41c7-b1e0-337bd8c82673","type":"ColumnDataSource"},"glyph":{"id":"d3712cc3-12bb-434e-9368-dcb219e339ed","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"65eaf9ce-00b9-49b4-97fb-bab4f40f5201","type":"Circle"},"selection_glyph":null},"id":"24b55eb1-0e53-4069-b743-6ac9c23fb075","type":"GlyphRenderer"},{"attributes":{"callback":null,"start":0},"id":"ec1d775c-dfa5-4d0e-a787-98c358e3480e","type":"DataRange1d"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"226d8845-d933-459e-bfd1-4c5edd23fc80","type":"Line"},{"attributes":{"label":{"value":"arithmetic"},"renderers":[{"id":"76953deb-9860-4763-8a94-ac5bb647cab4","type":"GlyphRenderer"}]},"id":"9707ea10-1988-4219-a460-b3ef4112a1be","type":"LegendItem"},{"attributes":{},"id":"0d081c86-7571-47f1-bfc6-de24820edfb7","type":"ToolEvents"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"528c4458-e43f-4ee6-909e-58cbbbeab9a0","type":"Line"},{"attributes":{"num_minor_ticks":10},"id":"ff96c4b6-a677-4cb7-a9c6-0efb1eb71431","type":"LogTicker"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"d5103372-bb6a-4b74-87c3-e3cc397eddc7","type":"PanTool"},{"id":"d17ca258-ae85-49ed-873d-53dfb55bdf92","type":"WheelZoomTool"},{"id":"50075953-0cab-4112-abce-afe021f330ea","type":"BoxZoomTool"},{"id":"216cc837-f8a2-4718-a2b9-ab6aae1188f5","type":"SaveTool"},{"id":"497251b6-85e2-450e-a3df-dc513d4623d8","type":"ResetTool"},{"id":"da51f522-93e8-4265-a989-c54b2d742198","type":"HelpTool"}]},"id":"ec2981f8-3c0a-461f-890b-8c6afd32553a","type":"Toolbar"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"06d1c4f3-2e25-4e2c-87d9-5dcdfdef1c9f","type":"PanTool"},{"id":"711ed14b-0adc-44af-9a23-d8e69826940d","type":"WheelZoomTool"},{"id":"92b4441f-a58a-4aa2-b658-2032f50692c7","type":"BoxZoomTool"},{"id":"82e9c665-d127-48d2-8b1d-81259c5c59c1","type":"SaveTool"},{"id":"4a8c0673-09a5-4a8b-9ec7-2c6b9e9a1e2f","type":"ResetTool"},{"id":"c58059d9-7ec6-40de-a9a1-e030da7a5db5","type":"HelpTool"}]},"id":"cf9a0a0c-6d28-4149-ba79-9a58f04c5061","type":"Toolbar"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"20d3ccb9-5f8a-499b-baf5-3dcdf25ae187","type":"FixedTicker"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"2437b245-9f04-4e74-afb9-429ff4bc323e","type":"Line"},{"attributes":{"num_minor_ticks":10},"id":"0901eb15-3d3b-4a56-a833-432c0e388578","type":"LogTicker"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"ba129916-b144-45bf-839b-308cc2fe0cca","type":"Circle"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"d3e6561e-37f2-4687-a2f0-956cf8e99078","type":"PanTool"},{"id":"3829dd1c-6699-4426-aa8e-c268d6ae79ea","type":"WheelZoomTool"},{"id":"a6655d1f-e619-4386-b6be-6edc76a7f639","type":"BoxZoomTool"},{"id":"fac5489e-3ff1-49ab-a77c-b72534911361","type":"SaveTool"},{"id":"d9c2feef-fc71-4e4c-acb8-81fe30e4f4ab","type":"ResetTool"},{"id":"8b0fce7e-8494-4b5e-ac5a-6d669d058969","type":"HelpTool"}]},"id":"32c5998f-e289-477a-a7f0-ec9c1b401522","type":"Toolbar"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"46f9230c-1513-48e6-85cc-89e281677acd","type":"Line"},{"attributes":{"num_minor_ticks":10},"id":"5989b85d-d7f3-4a9f-962f-058427056f5e","type":"LogTicker"},{"attributes":{"data_source":{"id":"7fff3c49-e098-4ed2-ab2c-6d988fa57cd3","type":"ColumnDataSource"},"glyph":{"id":"528c4458-e43f-4ee6-909e-58cbbbeab9a0","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4cb0f6b1-b7e8-4d2f-92a1-ba4357a5e784","type":"Line"},"selection_glyph":null},"id":"eca0ff91-84df-49e0-bed0-a5d1a0fbe0d6","type":"GlyphRenderer"},{"attributes":{"num_minor_ticks":10},"id":"6b009896-2f97-4cc5-a515-1fc7534e4b1a","type":"LogTicker"},{"attributes":{"callback":null,"end":6021.609676148496,"start":0},"id":"9656f774-8191-411a-b3f6-3c3e54127af3","type":"DataRange1d"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"4814193b-7f49-47ad-a889-ad29dffb1e6f","type":"Circle"},{"attributes":{"callback":null,"end":3596.14811695509,"start":0},"id":"2a2bf995-7f81-4c01-bdf4-737b49bb5434","type":"DataRange1d"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Gmr7TkyPlEBRf7wkoNCfQH9VJgZniqdALjvyvyi0rECvSL87J26wQO0MDDGQELJANhKvi9UxskBz0zc+QhSyQD61nBkBcrFA","dtype":"float64","shape":[9]}}},"id":"db943d83-03cd-4fea-b185-6dd6ef1b2660","type":"ColumnDataSource"},{"attributes":{"ticker":null},"id":"486c670a-fb22-4ffd-98c1-16474d37d388","type":"LogTickFormatter"},{"attributes":{"data_source":{"id":"3013aa6d-021d-4bc4-a8db-8a82ff575182","type":"ColumnDataSource"},"glyph":{"id":"ba129916-b144-45bf-839b-308cc2fe0cca","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4814193b-7f49-47ad-a889-ad29dffb1e6f","type":"Circle"},"selection_glyph":null},"id":"cf6d03a5-0a25-421f-8c94-20b344fc52cb","type":"GlyphRenderer"},{"attributes":{"ticker":null},"id":"44bf66b5-b040-43f3-b613-7d8c1f271042","type":"LogTickFormatter"},{"attributes":{"plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"},"ticker":{"id":"0901eb15-3d3b-4a56-a833-432c0e388578","type":"LogTicker"}},"id":"f4fdfa42-c255-4537-8c5f-3fe3314db93c","type":"Grid"},{"attributes":{"items":[{"id":"8ae41a66-88b0-4423-b9a9-153148095b06","type":"LegendItem"},{"id":"49216e78-0ce7-4ef2-8c38-04c33f920efb","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"}},"id":"202e406d-1c86-442e-a9a2-7eb69070d709","type":"Legend"},{"attributes":{"plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"},"ticker":{"id":"ff96c4b6-a677-4cb7-a9c6-0efb1eb71431","type":"LogTicker"}},"id":"a91e731e-5176-484f-bdeb-cba448ed06ed","type":"Grid"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Gmr7TkyPlEBRf7wkoNCfQH9VJgZniqdALjvyvyi0rECvSL87J26wQO0MDDGQELJANhKvi9UxskBz0zc+QhSyQD61nBkBcrFA","dtype":"float64","shape":[9]}}},"id":"7b03661a-da30-48ae-baf6-c203e36ab1c9","type":"ColumnDataSource"},{"attributes":{},"id":"c03284a4-5733-407b-ab0f-d4d81f920a2d","type":"LogScale"},{"attributes":{"plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"}},"id":"38f21f50-12f8-49d4-88f0-a7d648ec7347","type":"HelpTool"},{"attributes":{},"id":"ea6823ec-e386-4d86-9551-8b80fd1c0929","type":"LogScale"},{"attributes":{"axis_label":"cores","formatter":{"id":"486c670a-fb22-4ffd-98c1-16474d37d388","type":"LogTickFormatter"},"plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"},"ticker":{"id":"f674b4e6-f1c4-4679-8225-4004f87731fd","type":"FixedTicker"}},"id":"7b38a3fe-f342-4f09-8633-895cd6f78c16","type":"LogAxis"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,147630.4757338077]}},"id":"7fff3c49-e098-4ed2-ab2c-6d988fa57cd3","type":"ColumnDataSource"},{"attributes":{"axis_label":"cores","formatter":{"id":"44bf66b5-b040-43f3-b613-7d8c1f271042","type":"LogTickFormatter"},"plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"},"ticker":{"id":"78e8d05c-b35c-4703-ae94-e6433b0aa44e","type":"FixedTicker"}},"id":"b50fcfc7-852e-4175-a484-f0c7929d0be6","type":"LogAxis"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"f891b164-8ac4-4312-9ada-fe4e94977263","type":"Line"},{"attributes":{},"id":"34f5a12d-d155-4614-b981-4c177fe227d2","type":"LogScale"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"4cb0f6b1-b7e8-4d2f-92a1-ba4357a5e784","type":"Line"},{"attributes":{},"id":"693b8e3a-6242-45c9-813e-6c352e54feed","type":"LogScale"},{"attributes":{"axis_label":"tasks/s","formatter":{"id":"0ec83177-9fe3-476b-aef4-91a0528ef45d","type":"LogTickFormatter"},"plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"},"ticker":{"id":"5989b85d-d7f3-4a9f-962f-058427056f5e","type":"LogTicker"}},"id":"09dc88c0-411b-4925-a5e3-21de90889400","type":"LogAxis"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"0f2ed422-3629-4fce-b8e3-edef0474934a","type":"Line"},{"attributes":{"axis_label":"tasks/s","formatter":{"id":"33fbffc0-4674-4d29-95d1-a416b0a33583","type":"LogTickFormatter"},"plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"},"ticker":{"id":"6b009896-2f97-4cc5-a515-1fc7534e4b1a","type":"LogTicker"}},"id":"3c6f921a-e1e0-4d53-bf09-070318c1480b","type":"LogAxis"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a585a097-5244-44ed-bb7d-624ca56c71b8","type":"Circle"},{"attributes":{"dimension":1,"plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"},"ticker":{"id":"5989b85d-d7f3-4a9f-962f-058427056f5e","type":"LogTicker"}},"id":"98503142-2dad-473a-92da-a2b1090cbfd6","type":"Grid"},{"attributes":{"data_source":{"id":"864676dc-13f4-4b00-ad79-d0fb6cc50da1","type":"ColumnDataSource"},"glyph":{"id":"0f2ed422-3629-4fce-b8e3-edef0474934a","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"31a91e25-186a-4e36-b5ca-2c1eb51fa949","type":"Line"},"selection_glyph":null},"id":"4f0b25ee-dbc0-47f9-83c7-ed0e3b632ddd","type":"GlyphRenderer"},{"attributes":{"dimension":1,"plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"},"ticker":{"id":"6b009896-2f97-4cc5-a515-1fc7534e4b1a","type":"LogTicker"}},"id":"7556ee27-b6ed-4f28-b58c-9f8233cee83f","type":"Grid"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"0e6b8974-995b-41bd-87b3-95b0e260a731","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"31a91e25-186a-4e36-b5ca-2c1eb51fa949","type":"Line"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"db5ad287-33f6-4378-bec4-28e10514e436","type":"Line"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b67e2512-2857-4f42-98a2-f65fdcc2066c","type":"Circle"},{"attributes":{"data_source":{"id":"c7abd770-347f-4b48-b018-4423b55e33bc","type":"ColumnDataSource"},"glyph":{"id":"0e6b8974-995b-41bd-87b3-95b0e260a731","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"43c66efd-7698-49b9-b680-0d10546b250f","type":"Line"},"selection_glyph":null},"id":"f9a639d4-0a82-4749-88a4-bf025f7348ff","type":"GlyphRenderer"},{"attributes":{"callback":null,"start":0},"id":"b19a05ed-da08-4c4e-bd1e-3d79b9604fc2","type":"DataRange1d"},{"attributes":{"data_source":{"id":"374a9186-f058-4688-a098-11394db69d3b","type":"ColumnDataSource"},"glyph":{"id":"db5ad287-33f6-4378-bec4-28e10514e436","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"3cac42c0-6194-4169-9716-4dec8c4aa05a","type":"Line"},"selection_glyph":null},"id":"45795d30-20cf-421a-90d5-552a1df6c804","type":"GlyphRenderer"},{"attributes":{"child":{"id":"bd7a4267-cf17-4206-a88f-6685cd6fdc61","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"08641f92-85d2-4c9d-a11c-21a93031ddde","type":"Panel"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"8ba39ea0-6825-4ab7-8b3f-7c1ea62a5c1f","type":"FixedTicker"},{"attributes":{"child":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"},"title":"log"},"id":"53351d4a-2cee-4165-8f1c-c86f897bd418","type":"Panel"},{"attributes":{"callback":null,"start":0},"id":"a0a586bf-9420-4eae-b3fe-b9400c461017","type":"DataRange1d"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"bf7a1ecf-5767-45a0-bf2e-6acf9643a458","type":"BoxAnnotation"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,486720.45329374564]}},"id":"864676dc-13f4-4b00-ad79-d0fb6cc50da1","type":"ColumnDataSource"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"d74aa3a3-c638-44f8-bc84-1e0d355ed4fb","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"}},"id":"06d1c4f3-2e25-4e2c-87d9-5dcdfdef1c9f","type":"PanTool"},{"attributes":{"plot":null,"text":"DataFrames: Elementwise"},"id":"36d0c6cb-6834-4209-9c6a-f394c6cf7730","type":"Title"},{"attributes":{"plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"}},"id":"d3e6561e-37f2-4687-a2f0-956cf8e99078","type":"PanTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,82786.0840579272]}},"id":"368ebbd7-bae3-4d68-8617-71a85eab8635","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"kaJ6m493kEDnCG6oG3iZQDH65WfdO51AN9IVWq5NnEATlZAk2WCfQArn1nJmT6JAEu2KAqxsokCrK/Acec2hQLjq14Ix6JZA","dtype":"float64","shape":[9]}}},"id":"21c6a951-806f-4a05-862c-8b9c54656803","type":"ColumnDataSource"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"0b91a400-e7e6-479c-ab8d-dd80448d3b0e","type":"PanTool"},{"id":"61d07d7f-f947-4d2a-b341-c4bf85907198","type":"WheelZoomTool"},{"id":"57656b7a-1720-478f-ac0a-95a597024f3f","type":"BoxZoomTool"},{"id":"15a60aeb-0901-43a5-a728-241b8af7fc12","type":"SaveTool"},{"id":"a1f08da9-1313-44bd-8f3b-3a3d3c43eb46","type":"ResetTool"},{"id":"38f21f50-12f8-49d4-88f0-a7d648ec7347","type":"HelpTool"}]},"id":"90856cc7-bb7d-439a-981c-07dc22c423ec","type":"Toolbar"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Qs2j4G2rQkAGPm5LixNSQAEIVOXlumFAHhOcgak6cUC7DoHNWWyAQGIjzN8v5o5Auzk4xMOJnECcfp9Q3SOlQDBM/NVLGKxA","dtype":"float64","shape":[9]}}},"id":"0ed2e546-c35d-4985-b91e-c9ce4a99aed8","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"}},"id":"711ed14b-0adc-44af-9a23-d8e69826940d","type":"WheelZoomTool"},{"attributes":{},"id":"65bdd6d6-a9a1-4b37-ad15-96e017bfd116","type":"ToolEvents"},{"attributes":{"plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"}},"id":"3829dd1c-6699-4426-aa8e-c268d6ae79ea","type":"WheelZoomTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"e14090af-ea5a-42b8-8321-42ea86824188","type":"Line"},{"attributes":{"overlay":{"id":"bf7a1ecf-5767-45a0-bf2e-6acf9643a458","type":"BoxAnnotation"},"plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"}},"id":"92b4441f-a58a-4aa2-b658-2032f50692c7","type":"BoxZoomTool"},{"attributes":{},"id":"8275f929-b9b2-4d3f-b293-df539ed78bd9","type":"BasicTickFormatter"},{"attributes":{"overlay":{"id":"d74aa3a3-c638-44f8-bc84-1e0d355ed4fb","type":"BoxAnnotation"},"plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"}},"id":"a6655d1f-e619-4386-b6be-6edc76a7f639","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"}},"id":"82e9c665-d127-48d2-8b1d-81259c5c59c1","type":"SaveTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"9f47b1ec-bc60-4e62-9f08-ef21fbf4782d","type":"Line"},{"attributes":{"plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"}},"id":"fac5489e-3ff1-49ab-a77c-b72534911361","type":"SaveTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a8d36c07-1d97-49e1-9d58-015a82fc942a","type":"Line"},{"attributes":{"plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"}},"id":"4a8c0673-09a5-4a8b-9ec7-2c6b9e9a1e2f","type":"ResetTool"},{"attributes":{"below":[{"id":"edbdefdf-1c66-4d43-8239-0c88a3660748","type":"LinearAxis"}],"left":[{"id":"9b421310-47a1-477b-96c2-0c768ef21e4e","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"edbdefdf-1c66-4d43-8239-0c88a3660748","type":"LinearAxis"},{"id":"f52e9572-9aa3-47c9-be00-643f1657cf2d","type":"Grid"},{"id":"9b421310-47a1-477b-96c2-0c768ef21e4e","type":"LinearAxis"},{"id":"89626384-979e-4411-9ae9-1fc932204cb8","type":"Grid"},{"id":"85719b8d-547b-42d8-a67b-dea193b89ff1","type":"BoxAnnotation"},{"id":"202e406d-1c86-442e-a9a2-7eb69070d709","type":"Legend"},{"id":"a2e3d51d-d8bb-41ac-8515-3f1154af5d97","type":"GlyphRenderer"},{"id":"43f1cd74-dc1a-4aab-8f12-2d6e8620b2f3","type":"GlyphRenderer"},{"id":"d1ea2033-418b-42dc-affa-05ab97a548a6","type":"GlyphRenderer"},{"id":"78d02e69-5824-47a6-92da-f24d594ffdac","type":"GlyphRenderer"},{"id":"1536de68-3f85-4ec4-9468-0e3fc8b2e64e","type":"GlyphRenderer"},{"id":"66a1bbc2-db12-4787-93f9-0f0b4ed2a298","type":"GlyphRenderer"}],"title":{"id":"36d0c6cb-6834-4209-9c6a-f394c6cf7730","type":"Title"},"tool_events":{"id":"65bdd6d6-a9a1-4b37-ad15-96e017bfd116","type":"ToolEvents"},"toolbar":{"id":"90856cc7-bb7d-439a-981c-07dc22c423ec","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"b19a05ed-da08-4c4e-bd1e-3d79b9604fc2","type":"DataRange1d"},"x_scale":{"id":"c1aabede-839b-41c1-bb94-f0de84f0848f","type":"LinearScale"},"y_range":{"id":"7a5bc9bf-1185-45ba-9913-11cdcb243a9f","type":"DataRange1d"},"y_scale":{"id":"d8ad20a7-5cd9-4996-9df2-57a9e389fa32","type":"LinearScale"}},"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"},{"attributes":{"plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"}},"id":"d9c2feef-fc71-4e4c-acb8-81fe30e4f4ab","type":"ResetTool"},{"attributes":{"plot":{"id":"c8d3b1c8-30be-40bf-af59-2f7817aaab49","subtype":"Figure","type":"Plot"}},"id":"c58059d9-7ec6-40de-a9a1-e030da7a5db5","type":"HelpTool"},{"attributes":{},"id":"c1aabede-839b-41c1-bb94-f0de84f0848f","type":"LinearScale"},{"attributes":{"plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"}},"id":"8b0fce7e-8494-4b5e-ac5a-6d669d058969","type":"HelpTool"},{"attributes":{},"id":"066b97e1-b17a-43b2-bdf7-56c504f64209","type":"LinearScale"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"UGdETRRGSEAF/cD9b45XQEf6VqPzsGlAWonEk7n0ekB6ZUoa/4eOQF78OcpRNp1AikTHrPdfqkBkyoxeIYGzQPFuvBOchbdA","dtype":"float64","shape":[9]}}},"id":"c7abd770-347f-4b48-b018-4423b55e33bc","type":"ColumnDataSource"},{"attributes":{"callback":null,"end":31321.93079477908,"start":0},"id":"7a5bc9bf-1185-45ba-9913-11cdcb243a9f","type":"DataRange1d"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Qs2j4G2rQkAGPm5LixNSQAEIVOXlumFAHhOcgak6cUC7DoHNWWyAQGIjzN8v5o5Auzk4xMOJnECcfp9Q3SOlQDBM/NVLGKxA","dtype":"float64","shape":[9]}}},"id":"374a9186-f058-4688-a098-11394db69d3b","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"UGdETRRGSEAF/cD9b45XQEf6VqPzsGlAWonEk7n0ekB6ZUoa/4eOQF78OcpRNp1AikTHrPdfqkBkyoxeIYGzQPFuvBOchbdA","dtype":"float64","shape":[9]}}},"id":"ae076018-ffa2-41fa-aa1e-d4f975b654a4","type":"ColumnDataSource"},{"attributes":{},"id":"d8ad20a7-5cd9-4996-9df2-57a9e389fa32","type":"LinearScale"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2b200e79-13ef-4614-a86b-0c5ac8e51e1a","type":"Circle"},{"attributes":{},"id":"35297baa-7835-45c5-904a-1e2b7a405af7","type":"LinearScale"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"549b8eda-aa71-44d5-9e0b-9b0ea1f30836","type":"Line"},{"attributes":{"plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"},"ticker":{"id":"5d1fbe0b-b4b7-424b-8fa8-0deacdafab57","type":"BasicTicker"}},"id":"f52e9572-9aa3-47c9-be00-643f1657cf2d","type":"Grid"},{"attributes":{"ticker":null},"id":"33fbffc0-4674-4d29-95d1-a416b0a33583","type":"LogTickFormatter"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"0e661795-1e40-42fd-bfb2-49c0e5851826","type":"Line"},{"attributes":{"axis_label":"cores","formatter":{"id":"8275f929-b9b2-4d3f-b293-df539ed78bd9","type":"BasicTickFormatter"},"plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"},"ticker":{"id":"6d26b10e-948b-4ae1-b8a0-c48032e939cc","type":"FixedTicker"}},"id":"edbdefdf-1c66-4d43-8239-0c88a3660748","type":"LinearAxis"},{"attributes":{"data_source":{"id":"57cae494-21bb-46fc-b4c5-bff8741d5e59","type":"ColumnDataSource"},"glyph":{"id":"60deee68-cb1a-48f9-b86a-aa720e9fdc6f","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2b200e79-13ef-4614-a86b-0c5ac8e51e1a","type":"Circle"},"selection_glyph":null},"id":"644a8b13-3361-41d5-b179-460630e1a06d","type":"GlyphRenderer"},{"attributes":{"axis_label":"cores","formatter":{"id":"4a2078e2-dc0a-4ee9-8148-99c308724a80","type":"BasicTickFormatter"},"plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"},"ticker":{"id":"e252e15d-c6d5-4642-8016-3528d9a053b7","type":"FixedTicker"}},"id":"42bbee2c-121b-411e-9428-94c80306a923","type":"LinearAxis"},{"attributes":{"plot":null,"text":"Tasks: Dynamic Reduction"},"id":"5ed47176-1165-43e2-acb6-dcbc4ffee512","type":"Title"},{"attributes":{},"id":"5d1fbe0b-b4b7-424b-8fa8-0deacdafab57","type":"BasicTicker"},{"attributes":{"items":[{"id":"c873e202-11e2-4533-9862-daf563b91c32","type":"LegendItem"},{"id":"2cd69d4e-ce9d-4ffe-a8da-73b9a4a76f70","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"eb49fe05-6fcc-4349-974f-6d397bc15a51","subtype":"Figure","type":"Plot"}},"id":"f5c62aec-87be-4702-b5af-4dea433eeeda","type":"Legend"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"kaJ6m493kEDnCG6oG3iZQDH65WfdO51AN9IVWq5NnEATlZAk2WCfQArn1nJmT6JAEu2KAqxsokCrK/Acec2hQLjq14Ix6JZA","dtype":"float64","shape":[9]}}},"id":"14a6dd3a-ba9e-4451-92da-0b1a6f12b321","type":"ColumnDataSource"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"548c551b-c483-4441-98cd-2ceea8cd15a2","type":"BasicTickFormatter"},"plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"},"ticker":{"id":"9765a573-ce07-4dac-8d25-f5c756725fe1","type":"BasicTicker"}},"id":"9b421310-47a1-477b-96c2-0c768ef21e4e","type":"LinearAxis"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"q5SRkbXHk0C5OgbIBTCbQNOi7PG6oZ9AYTvcNx2BokB7bWhsEu6mQOBg60Yg8aVA9irH/+SCpUCs8pL575ilQPIu2GiALKRA","dtype":"float64","shape":[9]}}},"id":"57cae494-21bb-46fc-b4c5-bff8741d5e59","type":"ColumnDataSource"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"94f6bf21-e27e-4108-87fb-96b57789a1b2","type":"BasicTickFormatter"},"plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"},"ticker":{"id":"78519e65-2c2d-4424-83a9-9dbd90af22d8","type":"BasicTicker"}},"id":"44a176de-89c2-42ad-8f87-ee0986553174","type":"LinearAxis"},{"attributes":{"label":{"value":"1us"},"renderers":[{"id":"7d8cbf49-f0bf-4739-979a-7f055e17f277","type":"GlyphRenderer"}]},"id":"016140c0-733a-42e7-a6fd-9596879785b7","type":"LegendItem"},{"attributes":{},"id":"9765a573-ce07-4dac-8d25-f5c756725fe1","type":"BasicTicker"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"45795d30-20cf-421a-90d5-552a1df6c804","type":"GlyphRenderer"}]},"id":"c873e202-11e2-4533-9862-daf563b91c32","type":"LegendItem"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"7f499213-0134-4c5c-9235-126158ca7eed","type":"Line"},{"attributes":{"dimension":1,"plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"},"ticker":{"id":"9765a573-ce07-4dac-8d25-f5c756725fe1","type":"BasicTicker"}},"id":"89626384-979e-4411-9ae9-1fc932204cb8","type":"Grid"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"q5SRkbXHk0C5OgbIBTCbQNOi7PG6oZ9AYTvcNx2BokB7bWhsEu6mQOBg60Yg8aVA9irH/+SCpUCs8pL575ilQPIu2GiALKRA","dtype":"float64","shape":[9]}}},"id":"6a885f9a-7765-41fa-af8a-dc7292f329df","type":"ColumnDataSource"},{"attributes":{"callback":null,"tabs":[{"id":"46d7408d-edb4-4a99-a135-415f0feaf6aa","type":"Panel"},{"id":"f8aa2e3b-14d5-4851-9c16-0c58862b0b9c","type":"Panel"}]},"id":"c0b81eb9-68c0-4b71-926b-0b5bcab775b1","type":"Tabs"},{"attributes":{"callback":null,"start":0},"id":"8e2a6dae-41dd-4920-8ff6-8780ed089f0a","type":"DataRange1d"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"1171b53b-8f58-4cb0-9e73-ba2526025d8e","type":"Line"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"9ffd45a0-96fc-4cdc-87b8-5f0d6ce79da3","type":"Circle"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"464981ae-ca40-475a-b516-bdbb6d4ec644","type":"Circle"},{"attributes":{"data_source":{"id":"dd527476-61b0-4a8a-b9d2-567373d3b727","type":"ColumnDataSource"},"glyph":{"id":"1171b53b-8f58-4cb0-9e73-ba2526025d8e","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"9f47b1ec-bc60-4e62-9f08-ef21fbf4782d","type":"Line"},"selection_glyph":null},"id":"a2e3d51d-d8bb-41ac-8515-3f1154af5d97","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"0ed2e546-c35d-4985-b91e-c9ce4a99aed8","type":"ColumnDataSource"},"glyph":{"id":"9ffd45a0-96fc-4cdc-87b8-5f0d6ce79da3","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"9bf667be-10d2-4824-837d-262ff7baacab","type":"Circle"},"selection_glyph":null},"id":"f2343a90-0f7a-4366-8d1f-79df80822bfe","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"7537baba-bde5-45e0-9cb4-eabbcb1b539c","type":"ColumnDataSource"},"glyph":{"id":"71ac58c9-55fe-4631-b9ec-79f55dccf3f8","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"a8d36c07-1d97-49e1-9d58-015a82fc942a","type":"Line"},"selection_glyph":null},"id":"47190973-cc0e-4e9f-9e83-1c6099856fa6","type":"GlyphRenderer"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,12428.158608007856]}},"id":"1e2b523e-fc0c-4a27-821f-49d321415b62","type":"ColumnDataSource"},{"attributes":{"child":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"a1bcbfdd-7db0-4ae7-9ce5-61153092ac99","type":"Panel"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"9bf667be-10d2-4824-837d-262ff7baacab","type":"Circle"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f7621818-2e3f-424e-b6ba-eacd12cd13ce","type":"Circle"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"85719b8d-547b-42d8-a67b-dea193b89ff1","type":"BoxAnnotation"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"0ea10786-847d-49d5-b396-c435c2c06fdb","type":"GlyphRenderer"}]},"id":"d82896f9-20c8-4dde-9f78-84e02a60992d","type":"LegendItem"},{"attributes":{},"id":"ccca75ae-9a90-470d-8341-41cbc1494d9f","type":"ToolEvents"},{"attributes":{"data_source":{"id":"21c6a951-806f-4a05-862c-8b9c54656803","type":"ColumnDataSource"},"glyph":{"id":"464981ae-ca40-475a-b516-bdbb6d4ec644","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f7621818-2e3f-424e-b6ba-eacd12cd13ce","type":"Circle"},"selection_glyph":null},"id":"80a40327-c430-40e1-8f2c-dac700777eb2","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"41999ae5-ee50-4180-8a07-fdec3748db8d","subtype":"Figure","type":"Plot"}},"id":"0b91a400-e7e6-479c-ab8d-dd80448d3b0e","type":"PanTool"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b6b35bed-a3cf-4ff2-94af-733dab6ed569","type":"Line"},{"attributes":{"plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"}},"id":"d5103372-bb6a-4b74-87c3-e3cc397eddc7","type":"PanTool"},{"attributes":{"plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"}},"id":"d17ca258-ae85-49ed-873d-53dfb55bdf92","type":"WheelZoomTool"},{"attributes":{"plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"}},"id":"ee40caee-98db-40f4-b0db-7656427ffd03","type":"ResetTool"},{"attributes":{"data_source":{"id":"7b03661a-da30-48ae-baf6-c203e36ab1c9","type":"ColumnDataSource"},"glyph":{"id":"46f9230c-1513-48e6-85cc-89e281677acd","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"dcddc97a-a121-4424-bba4-06e32f3ffef4","type":"Line"},"selection_glyph":null},"id":"199b004a-feec-4a2b-a46f-04133c01e7f4","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"d3712cc3-12bb-434e-9368-dcb219e339ed","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"LbJ3pRAWX0BbUHF3/95iQIiYAtArN3BAAzvcglmDd0A7RNmNS3J/QPRV3VjCgItAGs1hBVAyk0A6pgUWMmqYQM/xIEy8hpZA","dtype":"float64","shape":[9]}}},"id":"eea30ed3-c5f9-448f-b8f6-2e5a5fa90822","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"976239da-0767-49f8-b67b-b3f818503085","type":"LogAxis"}],"left":[{"id":"a35de6cf-b211-46f4-88a4-9dbd93884729","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"976239da-0767-49f8-b67b-b3f818503085","type":"LogAxis"},{"id":"eea18fa0-c581-444d-9b1c-2ad38ec878ba","type":"Grid"},{"id":"a35de6cf-b211-46f4-88a4-9dbd93884729","type":"LogAxis"},{"id":"64a92885-1953-4217-ae30-fc73634b3d3a","type":"Grid"},{"id":"ab10fe90-cae8-447a-af95-b3c5e014c4af","type":"BoxAnnotation"},{"id":"e17a2f1c-37b7-4731-9b71-3c5f5de1b30e","type":"Legend"},{"id":"69263cca-41e2-48f2-8397-a6f5bd0b9575","type":"GlyphRenderer"},{"id":"24b55eb1-0e53-4069-b743-6ac9c23fb075","type":"GlyphRenderer"},{"id":"199b004a-feec-4a2b-a46f-04133c01e7f4","type":"GlyphRenderer"},{"id":"1396869b-480b-4403-bbc4-7a8c68f073fc","type":"GlyphRenderer"},{"id":"f70cce5b-2d5f-4a24-a2bc-810b27a6590b","type":"GlyphRenderer"},{"id":"721e5bec-22ab-43ef-abf1-4dc8664c0b20","type":"GlyphRenderer"}],"title":{"id":"ffd420f2-8ace-48ac-8eab-0093cbfa7d9d","type":"Title"},"tool_events":{"id":"2301c8d7-0a31-45fa-8aae-799e249007b9","type":"ToolEvents"},"toolbar":{"id":"aa3a240b-2cda-4618-9428-3dd1c9a81388","type":"Toolbar"},"x_range":{"id":"4e708514-46ec-4b98-946d-1599deda79a7","type":"DataRange1d"},"x_scale":{"id":"ba21b478-91dd-40c6-9b8d-8f7eb1b61ee9","type":"LogScale"},"y_range":{"id":"5b78f537-da57-49d6-b94c-4f6ceaf00b8c","type":"DataRange1d"},"y_scale":{"id":"235f9377-d769-48bc-b536-85c4458f48aa","type":"LogScale"}},"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"},{"attributes":{"ticker":null},"id":"7bbeb255-750d-4f2b-834b-0d208c1f918a","type":"LogTickFormatter"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"fd037a13-f03b-4366-a086-1cc9bfd29a68","type":"Line"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"69263cca-41e2-48f2-8397-a6f5bd0b9575","type":"GlyphRenderer"}]},"id":"9ec899a7-17d1-4036-b04b-f8571d6c4301","type":"LegendItem"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"PhAgSQGEM0BmSs6U6HdDQAwo6ea6PVNAoNqNGAnLYkDbj4LPiEVyQN1kKI9W54BAZTy4mhPIjED7LEuHcqKWQMQ4SLgPgZ5A","dtype":"float64","shape":[9]}}},"id":"b0869052-3aa1-458f-84c4-0ad2af85c8a4","type":"ColumnDataSource"},{"attributes":{},"id":"8b140c20-6d76-44f3-91e6-e42463f894b7","type":"LogScale"},{"attributes":{"ticker":null},"id":"fdbaaf97-6b9a-4d53-9fdb-04191c08b390","type":"LogTickFormatter"},{"attributes":{"plot":null,"text":"Arrays: Map Overlap"},"id":"ffd420f2-8ace-48ac-8eab-0093cbfa7d9d","type":"Title"},{"attributes":{"items":[{"id":"72fc77ae-e398-4f34-aa4c-24de5ab25546","type":"LegendItem"},{"id":"f9533df3-a6f2-407a-a408-6a557236dd27","type":"LegendItem"},{"id":"0cb38f80-7295-488c-94f0-6da0bc31d650","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"}},"id":"ed7d6a7d-f1ff-4745-8068-712ebf456009","type":"Legend"},{"attributes":{"label":{"value":"1us"},"renderers":[{"id":"4a334960-fb43-4949-8e13-5cc44f095565","type":"GlyphRenderer"}]},"id":"2cd69d4e-ce9d-4ffe-a8da-73b9a4a76f70","type":"LegendItem"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"w1YWXnOt/z84PQvNaIsPQIhEPP1NRB9ArYqH3f3CLkDSt1Z9g8U9QH5TAs78FU1AkemwSLPlVkAELKWLNq1mQC1uH4c19HBA","dtype":"float64","shape":[9]}}},"id":"8b74d8e5-a13e-4955-bfca-bcab0e2df8a7","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"62620c35-fbf6-4b85-83ff-8772227ebb77","type":"LogAxis"}],"left":[{"id":"6a3c8e27-4a29-4f03-8bdd-09b6029954d4","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"62620c35-fbf6-4b85-83ff-8772227ebb77","type":"LogAxis"},{"id":"62848c21-8c52-4034-857a-5e05d13ccf58","type":"Grid"},{"id":"6a3c8e27-4a29-4f03-8bdd-09b6029954d4","type":"LogAxis"},{"id":"87babc94-0e03-40e1-8659-332b33b52fb3","type":"Grid"},{"id":"56067dd7-a2b6-4ff7-8cd3-f8c1cc51c25b","type":"BoxAnnotation"},{"id":"ed7d6a7d-f1ff-4745-8068-712ebf456009","type":"Legend"},{"id":"a5327d44-b21a-412c-8c94-f9363f357d96","type":"GlyphRenderer"},{"id":"72ff53d1-eae1-44b0-9e17-1576c8ed8435","type":"GlyphRenderer"},{"id":"a6a7460d-9127-40a4-a3b5-041c6162c91d","type":"GlyphRenderer"},{"id":"a6539ac4-c610-470f-a3a3-c918c3b7e923","type":"GlyphRenderer"},{"id":"494cd700-056c-434d-bb7e-5fd639a6400e","type":"GlyphRenderer"},{"id":"ace2b496-86ba-4ad5-a5b7-25ca170cf0ff","type":"GlyphRenderer"},{"id":"7ab82ebf-e918-475c-bc9e-b885ae95fd38","type":"GlyphRenderer"},{"id":"60b83405-6ab4-4cc9-a41c-02803e9efe91","type":"GlyphRenderer"},{"id":"abc7b321-64df-4b9f-af6b-1c535dfa2c81","type":"GlyphRenderer"}],"title":{"id":"671592e4-7a2a-4c2d-bd41-5dbb5497a950","type":"Title"},"tool_events":{"id":"63fd8daa-6710-4f4f-804d-d448df9409b4","type":"ToolEvents"},"toolbar":{"id":"c496e8c6-9922-4131-a4ab-3b56e9a8735d","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"42cfc0dd-2373-4fce-86da-8246e3defb5f","type":"DataRange1d"},"x_scale":{"id":"17f181e3-d864-45a9-812a-e4f38a97a5f2","type":"LogScale"},"y_range":{"id":"93c9efee-2572-41c6-86a1-e2b5871b2dee","type":"DataRange1d"},"y_scale":{"id":"b9184cb6-ecb5-470e-b07d-c48cf33cee83","type":"LogScale"}},"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"bf1999e5-e42b-464b-9db0-ea3083c3c1d1","type":"Line"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"1c9d2576-92de-4aae-bc21-4ac781464cad","type":"Panel"},{"id":"e36df08d-6b52-45fd-90e8-47b2576ad722","type":"Panel"}]},"id":"59c15cdf-cad3-4afc-a12b-458d2a0a5b13","type":"Tabs"},{"attributes":{"plot":null,"text":"Tasks: Embarrassingly Parallel"},"id":"671592e4-7a2a-4c2d-bd41-5dbb5497a950","type":"Title"},{"attributes":{},"id":"63fd8daa-6710-4f4f-804d-d448df9409b4","type":"ToolEvents"},{"attributes":{"dimension":1,"plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"},"ticker":{"id":"3f8e6358-0297-4cf0-a05a-0078a8ee58db","type":"LogTicker"}},"id":"87babc94-0e03-40e1-8659-332b33b52fb3","type":"Grid"},{"attributes":{},"id":"2301c8d7-0a31-45fa-8aae-799e249007b9","type":"ToolEvents"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"56067dd7-a2b6-4ff7-8cd3-f8c1cc51c25b","type":"BoxAnnotation"},{"attributes":{"callback":null,"start":0},"id":"42cfc0dd-2373-4fce-86da-8246e3defb5f","type":"DataRange1d"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"73c8ebe1-fa92-4ff6-ac89-ed9778c71129","type":"PanTool"},{"id":"256f01fa-c5a6-4e2d-9723-781db6e85fc8","type":"WheelZoomTool"},{"id":"36eac939-56b7-4b14-8629-bde3b0ed0b72","type":"BoxZoomTool"},{"id":"c3009076-d910-41e9-9d89-8c3229a09dcb","type":"SaveTool"},{"id":"a900c3fe-2975-4b0c-bd7b-39871891269e","type":"ResetTool"},{"id":"8c3dcf24-6388-41fd-a1b4-b7d803c9a77b","type":"HelpTool"}]},"id":"c496e8c6-9922-4131-a4ab-3b56e9a8735d","type":"Toolbar"},{"attributes":{"axis_label":"cores","formatter":{"id":"fdbaaf97-6b9a-4d53-9fdb-04191c08b390","type":"LogTickFormatter"},"plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"},"ticker":{"id":"78faa5a9-3f86-4363-9f9e-f3ec7d2e2979","type":"FixedTicker"}},"id":"62620c35-fbf6-4b85-83ff-8772227ebb77","type":"LogAxis"},{"attributes":{"num_minor_ticks":10},"id":"ac3b4e3e-b8ae-4a9c-80e8-d7da53152181","type":"LogTicker"},{"attributes":{},"id":"17f181e3-d864-45a9-812a-e4f38a97a5f2","type":"LogScale"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"6d57a634-c93d-41d9-a9a6-7c9cea68c3d6","type":"PanTool"},{"id":"3db0df46-85de-46c4-a354-e601943c8be3","type":"WheelZoomTool"},{"id":"dd8d9f16-c2ba-4ca6-91e3-6cc6c3606729","type":"BoxZoomTool"},{"id":"3ae29d94-89c6-4214-a2f5-4405c02dfb8b","type":"SaveTool"},{"id":"ddb6422a-3fc9-47a5-885a-6a6dd8f99f1a","type":"ResetTool"},{"id":"33efd2d6-d965-428f-8c5c-efdcb84a3bc2","type":"HelpTool"}]},"id":"aa3a240b-2cda-4618-9428-3dd1c9a81388","type":"Toolbar"},{"attributes":{"callback":null,"end":3997.1079293993125,"start":0},"id":"93c9efee-2572-41c6-86a1-e2b5871b2dee","type":"DataRange1d"},{"attributes":{"num_minor_ticks":10},"id":"3f8e6358-0297-4cf0-a05a-0078a8ee58db","type":"LogTicker"},{"attributes":{"num_minor_ticks":10},"id":"1c284cec-7c05-4fec-be42-6fe7fecc5341","type":"LogTicker"},{"attributes":{"plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"},"ticker":{"id":"ac3b4e3e-b8ae-4a9c-80e8-d7da53152181","type":"LogTicker"}},"id":"62848c21-8c52-4034-857a-5e05d13ccf58","type":"Grid"},{"attributes":{},"id":"b9184cb6-ecb5-470e-b07d-c48cf33cee83","type":"LogScale"},{"attributes":{"axis_label":"tasks/s","formatter":{"id":"cc6bc177-2234-4097-8df3-d61c3f4ee5dd","type":"LogTickFormatter"},"plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"},"ticker":{"id":"3f8e6358-0297-4cf0-a05a-0078a8ee58db","type":"LogTicker"}},"id":"6a3c8e27-4a29-4f03-8bdd-09b6029954d4","type":"LogAxis"},{"attributes":{"child":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"},"title":"log"},"id":"1c9d2576-92de-4aae-bc21-4ac781464cad","type":"Panel"},{"attributes":{"num_minor_ticks":10},"id":"a5f4fff5-9473-482a-b773-100a25273fa8","type":"LogTicker"},{"attributes":{"plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"}},"id":"c3009076-d910-41e9-9d89-8c3229a09dcb","type":"SaveTool"},{"attributes":{"plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"}},"id":"73c8ebe1-fa92-4ff6-ac89-ed9778c71129","type":"PanTool"},{"attributes":{"overlay":{"id":"56067dd7-a2b6-4ff7-8cd3-f8c1cc51c25b","type":"BoxAnnotation"},"plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"}},"id":"36eac939-56b7-4b14-8629-bde3b0ed0b72","type":"BoxZoomTool"},{"attributes":{"callback":null,"end":4657.834162656733,"start":0},"id":"5b78f537-da57-49d6-b94c-4f6ceaf00b8c","type":"DataRange1d"},{"attributes":{"plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"}},"id":"256f01fa-c5a6-4e2d-9723-781db6e85fc8","type":"WheelZoomTool"},{"attributes":{"plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"}},"id":"a900c3fe-2975-4b0c-bd7b-39871891269e","type":"ResetTool"},{"attributes":{"plot":{"id":"9ddf2da6-70f9-4a0c-bd6d-3969e84b1b1a","subtype":"Figure","type":"Plot"}},"id":"8c3dcf24-6388-41fd-a1b4-b7d803c9a77b","type":"HelpTool"},{"attributes":{"ticker":null},"id":"cc6bc177-2234-4097-8df3-d61c3f4ee5dd","type":"LogTickFormatter"},{"attributes":{"data_source":{"id":"529ef473-0ccc-45f4-861a-7b66c8fc4d8d","type":"ColumnDataSource"},"glyph":{"id":"4b247019-ac32-4471-98a2-5ed1fc275453","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"7b38614f-09f7-4738-8ebe-089febc14dd8","type":"Line"},"selection_glyph":null},"id":"69263cca-41e2-48f2-8397-a6f5bd0b9575","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"fe27d651-f139-49a9-8553-62e6d681be99","type":"Circle"},{"attributes":{"label":{"value":"1s"},"renderers":[{"id":"a5327d44-b21a-412c-8c94-f9363f357d96","type":"GlyphRenderer"}]},"id":"72fc77ae-e398-4f34-aa4c-24de5ab25546","type":"LegendItem"},{"attributes":{"plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"},"ticker":{"id":"1c284cec-7c05-4fec-be42-6fe7fecc5341","type":"LogTicker"}},"id":"eea18fa0-c581-444d-9b1c-2ad38ec878ba","type":"Grid"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"7abab916-ce13-45b2-b8d4-a4898c863064","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"w1YWXnOt/z84PQvNaIsPQIhEPP1NRB9ArYqH3f3CLkDSt1Z9g8U9QH5TAs78FU1AkemwSLPlVkAELKWLNq1mQC1uH4c19HBA","dtype":"float64","shape":[9]}}},"id":"798b04c0-7810-433c-9d10-e52806569ced","type":"ColumnDataSource"},{"attributes":{},"id":"ba21b478-91dd-40c6-9b8d-8f7eb1b61ee9","type":"LogScale"},{"attributes":{"axis_label":"cores","formatter":{"id":"7bbeb255-750d-4f2b-834b-0d208c1f918a","type":"LogTickFormatter"},"plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"},"ticker":{"id":"ef5e1e26-3fce-47b3-8daf-d463705887ce","type":"FixedTicker"}},"id":"976239da-0767-49f8-b67b-b3f818503085","type":"LogAxis"},{"attributes":{},"id":"235f9377-d769-48bc-b536-85c4458f48aa","type":"LogScale"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"320ffe66-cf3a-4715-99c8-4331b3f8f028","type":"LogTickFormatter"},"plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"},"ticker":{"id":"a5f4fff5-9473-482a-b773-100a25273fa8","type":"LogTicker"}},"id":"a35de6cf-b211-46f4-88a4-9dbd93884729","type":"LogAxis"},{"attributes":{"dimension":1,"plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"},"ticker":{"id":"a5f4fff5-9473-482a-b773-100a25273fa8","type":"LogTicker"}},"id":"64a92885-1953-4217-ae30-fc73634b3d3a","type":"Grid"},{"attributes":{"ticker":null},"id":"320ffe66-cf3a-4715-99c8-4331b3f8f028","type":"LogTickFormatter"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"BSBNWCE2dEC9BpWUVImFQDzSCcCUkJBAVLgx0fyxnkCFGyLiy4+jQE7fanACZ6xAEeby5mMgsEDryZN7k+GwQFqGlput7rBA","dtype":"float64","shape":[9]}}},"id":"7537baba-bde5-45e0-9cb4-eabbcb1b539c","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"}},"id":"6d57a634-c93d-41d9-a9a6-7c9cea68c3d6","type":"PanTool"},{"attributes":{"plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"}},"id":"3db0df46-85de-46c4-a354-e601943c8be3","type":"WheelZoomTool"},{"attributes":{"plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"}},"id":"3ae29d94-89c6-4214-a2f5-4405c02dfb8b","type":"SaveTool"},{"attributes":{"data_source":{"id":"fa916c00-5834-4d8f-81b6-4b4f9d09e1e8","type":"ColumnDataSource"},"glyph":{"id":"4b506720-d38f-4e6f-8f8a-a33ca1b77473","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"66773eb1-a562-405d-af87-f22eb4215a62","type":"Line"},"selection_glyph":null},"id":"a88c23d3-43d3-4a29-a8c5-20a855f54ba0","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2f758d81-8533-4e97-a53c-041f1db98fae","type":"Circle"},{"attributes":{"plot":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"}},"id":"33efd2d6-d965-428f-8c5c-efdcb84a3bc2","type":"HelpTool"},{"attributes":{"data_source":{"id":"0ab80c92-5372-4728-a0da-e513a7ae8e2b","type":"ColumnDataSource"},"glyph":{"id":"84379b7b-549c-4cb0-ace2-a9135bc8555a","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2f758d81-8533-4e97-a53c-041f1db98fae","type":"Circle"},"selection_glyph":null},"id":"557b9797-c849-4fd1-b818-da278a904030","type":"GlyphRenderer"},{"attributes":{},"id":"387a0733-5b81-4503-81a8-d7264a71bdb4","type":"LogScale"},{"attributes":{"axis_label":"cores","formatter":{"id":"2713700e-4b8e-48b0-b334-2cbddf0387da","type":"LogTickFormatter"},"plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"},"ticker":{"id":"850d2f6c-e3b2-4ea7-b9cc-79d306793f43","type":"FixedTicker"}},"id":"b1a4b554-ebdb-4cfe-8816-e965d3551cb6","type":"LogAxis"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"4b506720-d38f-4e6f-8f8a-a33ca1b77473","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"66773eb1-a562-405d-af87-f22eb4215a62","type":"Line"},{"attributes":{"plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"},"ticker":{"id":"7cc02c81-8117-4e1a-9f0d-a555c82109a7","type":"LogTicker"}},"id":"a43669eb-fdb1-4342-8acf-5b451bc715f8","type":"Grid"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"17a64fd8-de2d-413d-8fb7-7b0e2aca8c2f","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,175286.75839479806]}},"id":"fa916c00-5834-4d8f-81b6-4b4f9d09e1e8","type":"ColumnDataSource"},{"attributes":{"num_minor_ticks":10},"id":"975992b0-97bd-4812-a84b-1e893068c778","type":"LogTicker"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"47619def-c558-4026-a503-09d9f7f9c819","type":"Panel"},{"id":"f2fff79f-5732-487e-9d7f-1275394f234a","type":"Panel"}]},"id":"d5449472-9151-45a2-82ef-636c1e6e7fad","type":"Tabs"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"65eaf9ce-00b9-49b4-97fb-bab4f40f5201","type":"Circle"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"4f55baa9-9c09-4246-8a1c-6c137081c1e9","type":"Line"},{"attributes":{"below":[{"id":"b1a4b554-ebdb-4cfe-8816-e965d3551cb6","type":"LogAxis"}],"left":[{"id":"646d0ce3-67d2-4c55-90dd-73081617b0b7","type":"LogAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"b1a4b554-ebdb-4cfe-8816-e965d3551cb6","type":"LogAxis"},{"id":"a43669eb-fdb1-4342-8acf-5b451bc715f8","type":"Grid"},{"id":"646d0ce3-67d2-4c55-90dd-73081617b0b7","type":"LogAxis"},{"id":"142a5ef0-45db-448e-bdf5-6bc1af40dbfd","type":"Grid"},{"id":"03993200-55da-4eb3-a474-14a6cc4b0285","type":"BoxAnnotation"},{"id":"5338ed5e-1297-491b-ab37-c351da40ae08","type":"Legend"},{"id":"cfa2bcc6-8adc-4e87-94e0-c2637340e2d9","type":"GlyphRenderer"},{"id":"2d85a19d-e6ef-45e9-9204-ca1ae2bb73da","type":"GlyphRenderer"},{"id":"5cf2b740-4cdb-4f37-9f1f-2727fd54866e","type":"GlyphRenderer"}],"title":{"id":"70275d6c-23e2-4ef7-81a4-fce074c48cf6","type":"Title"},"tool_events":{"id":"83201b83-a0a4-4eec-a296-5f52f8bbd13c","type":"ToolEvents"},"toolbar":{"id":"bcf7b40a-0310-4ba6-8071-f0219b20abff","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"ed5a7b95-48a4-4fec-ac8f-6f16eaf0c5d8","type":"DataRange1d"},"x_scale":{"id":"6c655239-a968-4c12-a022-1ddf3d599681","type":"LogScale"},"y_range":{"id":"2d463c30-1176-4f36-9bed-64d13295e7c1","type":"DataRange1d"},"y_scale":{"id":"387a0733-5b81-4503-81a8-d7264a71bdb4","type":"LogScale"}},"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"6c655239-a968-4c12-a022-1ddf3d599681","type":"LogScale"},{"attributes":{"ticker":null},"id":"2713700e-4b8e-48b0-b334-2cbddf0387da","type":"LogTickFormatter"},{"attributes":{"callback":null,"end":2404.1774131328957,"start":0},"id":"2d463c30-1176-4f36-9bed-64d13295e7c1","type":"DataRange1d"},{"attributes":{"plot":null,"text":"Arrays: Elementwise"},"id":"70275d6c-23e2-4ef7-81a4-fce074c48cf6","type":"Title"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"8deb4c17-6422-4a63-a312-295c749663ba","type":"LogTickFormatter"},"plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"},"ticker":{"id":"975992b0-97bd-4812-a84b-1e893068c778","type":"LogTicker"}},"id":"646d0ce3-67d2-4c55-90dd-73081617b0b7","type":"LogAxis"},{"attributes":{"num_minor_ticks":10},"id":"7cc02c81-8117-4e1a-9f0d-a555c82109a7","type":"LogTicker"},{"attributes":{"dimension":1,"plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"},"ticker":{"id":"975992b0-97bd-4812-a84b-1e893068c778","type":"LogTicker"}},"id":"142a5ef0-45db-448e-bdf5-6bc1af40dbfd","type":"Grid"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b5818651-f465-4a4e-b56d-d88fccd70330","type":"Line"},{"attributes":{"data_source":{"id":"97e682ba-d0e2-401f-98d3-0d4f783335b1","type":"ColumnDataSource"},"glyph":{"id":"811b80b5-39df-4ff0-a1a8-9e8a324990cf","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"e14090af-ea5a-42b8-8321-42ea86824188","type":"Line"},"selection_glyph":null},"id":"721e5bec-22ab-43ef-abf1-4dc8664c0b20","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"672963d6-239d-4bac-ae4f-fa0f80c2c98f","type":"ColumnDataSource"},"glyph":{"id":"b5818651-f465-4a4e-b56d-d88fccd70330","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4f55baa9-9c09-4246-8a1c-6c137081c1e9","type":"Line"},"selection_glyph":null},"id":"cfa2bcc6-8adc-4e87-94e0-c2637340e2d9","type":"GlyphRenderer"},{"attributes":{"child":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"},"title":"log"},"id":"47619def-c558-4026-a503-09d9f7f9c819","type":"Panel"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"03993200-55da-4eb3-a474-14a6cc4b0285","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"}},"id":"f240d2c0-ff6c-491a-ab4e-61eae5d526ed","type":"PanTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"epLhQ0J1YkAd5AFIZzFxQJg0vPmU7ntAyXEzRLI4iUCSgRntGWCSQEF51ldnFptA8ymMPoR+nkBOxBAU3zWiQFbn5NVayKJA","dtype":"float64","shape":[9]}}},"id":"e97fa81b-6cd9-47c7-a0cb-4d5e48994294","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"}},"id":"e2ce7b1b-cf07-411c-b287-d1b33ecf17f9","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"03993200-55da-4eb3-a474-14a6cc4b0285","type":"BoxAnnotation"},"plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"}},"id":"d9cf7207-525f-49a5-9224-035cd6dfc2dc","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"}},"id":"e4a0baa0-5ecc-4689-a4f4-6ee954c27052","type":"SaveTool"},{"attributes":{"plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"}},"id":"58423d76-834c-42ce-9dc5-b8729ce97321","type":"ResetTool"},{"attributes":{"plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"}},"id":"9b541db3-5f39-403a-ac85-bd080ebaa38a","type":"HelpTool"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"dcddc97a-a121-4424-bba4-06e32f3ffef4","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"epLhQ0J1YkAd5AFIZzFxQJg0vPmU7ntAyXEzRLI4iUCSgRntGWCSQEF51ldnFptA8ymMPoR+nkBOxBAU3zWiQFbn5NVayKJA","dtype":"float64","shape":[9]}}},"id":"672963d6-239d-4bac-ae4f-fa0f80c2c98f","type":"ColumnDataSource"},{"attributes":{},"id":"fc5d57cc-4be5-470d-818c-b8e1c88d4b27","type":"BasicTicker"},{"attributes":{"ticker":null},"id":"8deb4c17-6422-4a63-a312-295c749663ba","type":"LogTickFormatter"},{"attributes":{"axis_label":"cores","formatter":{"id":"2c2c32d2-a2d8-44ea-8cac-2f8ac31adc31","type":"BasicTickFormatter"},"plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"},"ticker":{"id":"5fac156b-7f91-4578-b83b-8858f80abfd0","type":"FixedTicker"}},"id":"00df0b68-7f3b-4b44-86e3-d993159cf3fd","type":"LinearAxis"},{"attributes":{"items":[{"id":"8fba1edc-7ad8-42a7-824e-3ebfd935345d","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"3618c651-3cdd-4455-a504-ff10836a058a","subtype":"Figure","type":"Plot"}},"id":"5338ed5e-1297-491b-ab37-c351da40ae08","type":"Legend"},{"attributes":{"plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"},"ticker":{"id":"fc5d57cc-4be5-470d-818c-b8e1c88d4b27","type":"BasicTicker"}},"id":"11f328a6-a429-4bc9-bfc3-160584c1307f","type":"Grid"},{"attributes":{"label":{"value":"sin(x)**2 + cos(x)**2"},"renderers":[{"id":"cfa2bcc6-8adc-4e87-94e0-c2637340e2d9","type":"GlyphRenderer"}]},"id":"8fba1edc-7ad8-42a7-824e-3ebfd935345d","type":"LegendItem"},{"attributes":{"data_source":{"id":"1baae952-180c-493c-8d5d-14fe7bb1c1a5","type":"ColumnDataSource"},"glyph":{"id":"56955a48-ec14-45e7-8d88-9059d9102d6a","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"c8f397d9-ee85-4e07-9a6c-f07e5a82b8c3","type":"Line"},"selection_glyph":null},"id":"5cf2b740-4cdb-4f37-9f1f-2727fd54866e","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f8f40c92-11f2-4003-84c4-6b69f89e39ee","type":"Circle"},{"attributes":{"data_source":{"id":"e97fa81b-6cd9-47c7-a0cb-4d5e48994294","type":"ColumnDataSource"},"glyph":{"id":"f8f40c92-11f2-4003-84c4-6b69f89e39ee","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"90f18ef6-70ef-436c-a31c-cd3ad942f1db","type":"Circle"},"selection_glyph":null},"id":"2d85a19d-e6ef-45e9-9204-ca1ae2bb73da","type":"GlyphRenderer"},{"attributes":{"plot":null,"text":"Arrays: Map Overlap"},"id":"bb55573e-1fd0-4f35-8357-230d93a1d391","type":"Title"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"90f18ef6-70ef-436c-a31c-cd3ad942f1db","type":"Circle"},{"attributes":{},"id":"10a1a392-095c-4fb2-9881-8a51553cf66c","type":"LinearScale"},{"attributes":{"callback":null,"end":2404.1774131328957,"start":0},"id":"10bd0dfa-c230-40e0-834f-357bfe3b11cd","type":"DataRange1d"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"56955a48-ec14-45e7-8d88-9059d9102d6a","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"c8f397d9-ee85-4e07-9a6c-f07e5a82b8c3","type":"Line"},{"attributes":{"plot":null,"text":"Arrays: Elementwise"},"id":"d5492012-a955-4369-a877-7ec4bd84d33a","type":"Title"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"850d2f6c-e3b2-4ea7-b9cc-79d306793f43","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,37802.07078627213]}},"id":"1baae952-180c-493c-8d5d-14fe7bb1c1a5","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"00df0b68-7f3b-4b44-86e3-d993159cf3fd","type":"LinearAxis"}],"left":[{"id":"9fbbdea7-a42d-4d77-9a04-ee5e721ac1fc","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"00df0b68-7f3b-4b44-86e3-d993159cf3fd","type":"LinearAxis"},{"id":"11f328a6-a429-4bc9-bfc3-160584c1307f","type":"Grid"},{"id":"9fbbdea7-a42d-4d77-9a04-ee5e721ac1fc","type":"LinearAxis"},{"id":"ff0cd646-1110-4ba4-abdd-16a97ab481e5","type":"Grid"},{"id":"34632c3e-798e-4c84-b4f3-96c4a5e0d99c","type":"BoxAnnotation"},{"id":"e7cd8d6c-fd1b-47c5-9046-bb0dd0d37454","type":"Legend"},{"id":"f7346b9b-f65b-4d3c-9113-394fac1afe19","type":"GlyphRenderer"},{"id":"17c349ae-33d2-40cd-9f5b-e7687a90507d","type":"GlyphRenderer"},{"id":"9318cc6d-b0c6-40cb-b3dc-d1660534ca98","type":"GlyphRenderer"}],"title":{"id":"d5492012-a955-4369-a877-7ec4bd84d33a","type":"Title"},"tool_events":{"id":"c644633b-1916-42d1-b95e-2a8e1991afc8","type":"ToolEvents"},"toolbar":{"id":"11e3f717-a81d-4f86-8cd5-25b1f8676304","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"ad04e308-9865-49e5-b635-493d64bd0cbf","type":"DataRange1d"},"x_scale":{"id":"adf71b1d-b8fc-4cc6-bc1f-70762e963cda","type":"LinearScale"},"y_range":{"id":"10bd0dfa-c230-40e0-834f-357bfe3b11cd","type":"DataRange1d"},"y_scale":{"id":"10a1a392-095c-4fb2-9881-8a51553cf66c","type":"LinearScale"}},"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"c644633b-1916-42d1-b95e-2a8e1991afc8","type":"ToolEvents"},{"attributes":{"label":{"value":"1us"},"renderers":[{"id":"199b004a-feec-4a2b-a46f-04133c01e7f4","type":"GlyphRenderer"}]},"id":"51b3fff7-3940-4500-9667-260f70667185","type":"LegendItem"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"epLhQ0J1YkAd5AFIZzFxQJg0vPmU7ntAyXEzRLI4iUCSgRntGWCSQEF51ldnFptA8ymMPoR+nkBOxBAU3zWiQFbn5NVayKJA","dtype":"float64","shape":[9]}}},"id":"cc8b7364-0e31-40d1-9f4b-287a10a07cfc","type":"ColumnDataSource"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"ee8f3c74-9606-467b-9649-496ff3790d92","type":"PanTool"},{"id":"20be3e8f-d733-4775-88b3-846d52aa9ab7","type":"WheelZoomTool"},{"id":"157c4d22-7e1e-4cb9-b5de-51771a77c65b","type":"BoxZoomTool"},{"id":"1d85faba-8a6b-4095-961d-e7b90412bc93","type":"SaveTool"},{"id":"c39730d2-c985-4f53-97f8-e14e1accf06e","type":"ResetTool"},{"id":"b5fe7351-f4ac-4095-818c-83276790a403","type":"HelpTool"}]},"id":"11e3f717-a81d-4f86-8cd5-25b1f8676304","type":"Toolbar"},{"attributes":{"callback":null,"start":0},"id":"ad04e308-9865-49e5-b635-493d64bd0cbf","type":"DataRange1d"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"aac4d0f9-afb8-4aec-a718-d811d8bde39c","type":"Line"},{"attributes":{},"id":"adf71b1d-b8fc-4cc6-bc1f-70762e963cda","type":"LinearScale"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"0abf6ccc-6de3-47eb-bbb9-5d656a49d2f8","type":"BasicTickFormatter"},"plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"},"ticker":{"id":"52e3bb9d-b9b8-45fe-94f5-2607cefb09a4","type":"BasicTicker"}},"id":"9fbbdea7-a42d-4d77-9a04-ee5e721ac1fc","type":"LinearAxis"},{"attributes":{},"id":"52e3bb9d-b9b8-45fe-94f5-2607cefb09a4","type":"BasicTicker"},{"attributes":{"dimension":1,"plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"},"ticker":{"id":"52e3bb9d-b9b8-45fe-94f5-2607cefb09a4","type":"BasicTicker"}},"id":"ff0cd646-1110-4ba4-abdd-16a97ab481e5","type":"Grid"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"b446cf6e-495f-4ff7-afa8-02afa39b6a6d","type":"Line"},{"attributes":{"data_source":{"id":"cc8b7364-0e31-40d1-9f4b-287a10a07cfc","type":"ColumnDataSource"},"glyph":{"id":"b446cf6e-495f-4ff7-afa8-02afa39b6a6d","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"aac4d0f9-afb8-4aec-a718-d811d8bde39c","type":"Line"},"selection_glyph":null},"id":"f7346b9b-f65b-4d3c-9113-394fac1afe19","type":"GlyphRenderer"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"ef5e1e26-3fce-47b3-8daf-d463705887ce","type":"FixedTicker"},{"attributes":{"child":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"f2fff79f-5732-487e-9d7f-1275394f234a","type":"Panel"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"34632c3e-798e-4c84-b4f3-96c4a5e0d99c","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"}},"id":"ee8f3c74-9606-467b-9649-496ff3790d92","type":"PanTool"},{"attributes":{},"id":"2c2c32d2-a2d8-44ea-8cac-2f8ac31adc31","type":"BasicTickFormatter"},{"attributes":{"plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"}},"id":"20be3e8f-d733-4775-88b3-846d52aa9ab7","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"34632c3e-798e-4c84-b4f3-96c4a5e0d99c","type":"BoxAnnotation"},"plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"}},"id":"157c4d22-7e1e-4cb9-b5de-51771a77c65b","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"}},"id":"1d85faba-8a6b-4095-961d-e7b90412bc93","type":"SaveTool"},{"attributes":{"plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"}},"id":"c39730d2-c985-4f53-97f8-e14e1accf06e","type":"ResetTool"},{"attributes":{"plot":{"id":"3f1de3ec-80fb-4cbf-bbd3-870be4431819","subtype":"Figure","type":"Plot"}},"id":"b5fe7351-f4ac-4095-818c-83276790a403","type":"HelpTool"},{"attributes":{"callback":null,"start":0},"id":"b914e7a2-f1e0-4071-a0c2-d52db778eb69","type":"DataRange1d"},{"attributes":{"data_source":{"id":"368ebbd7-bae3-4d68-8617-71a85eab8635","type":"ColumnDataSource"},"glyph":{"id":"f891b164-8ac4-4312-9ada-fe4e94977263","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1cb57ebf-bed8-4db8-b71f-77aa1312af5c","type":"Line"},"selection_glyph":null},"id":"f70cce5b-2d5f-4a24-a2bc-810b27a6590b","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"db943d83-03cd-4fea-b185-6dd6ef1b2660","type":"ColumnDataSource"},"glyph":{"id":"a585a097-5244-44ed-bb7d-624ca56c71b8","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"b67e2512-2857-4f42-98a2-f65fdcc2066c","type":"Circle"},"selection_glyph":null},"id":"1396869b-480b-4403-bbc4-7a8c68f073fc","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"811b80b5-39df-4ff0-a1a8-9e8a324990cf","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"1cb57ebf-bed8-4db8-b71f-77aa1312af5c","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"Gmr7TkyPlEBRf7wkoNCfQH9VJgZniqdALjvyvyi0rECvSL87J26wQO0MDDGQELJANhKvi9UxskBz0zc+QhSyQD61nBkBcrFA","dtype":"float64","shape":[9]}}},"id":"540ea8dd-e79f-4d23-8d1d-2260fd9c9cc4","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"}},"id":"e1966624-3bba-4c3a-86cf-1106a6800dc3","type":"ResetTool"},{"attributes":{"below":[{"id":"42bbee2c-121b-411e-9428-94c80306a923","type":"LinearAxis"}],"left":[{"id":"44a176de-89c2-42ad-8f87-ee0986553174","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"42bbee2c-121b-411e-9428-94c80306a923","type":"LinearAxis"},{"id":"96443dd1-a71d-4562-bb9c-d7381e117c4b","type":"Grid"},{"id":"44a176de-89c2-42ad-8f87-ee0986553174","type":"LinearAxis"},{"id":"77e0942d-9264-4240-8e68-8926967393ba","type":"Grid"},{"id":"16d3717d-7fcf-4009-b087-43fb39f20e1e","type":"BoxAnnotation"},{"id":"c5106ceb-af0f-41eb-a0a3-00686ab2f704","type":"Legend"},{"id":"47190973-cc0e-4e9f-9e83-1c6099856fa6","type":"GlyphRenderer"},{"id":"75535fe1-cdc3-44dd-af24-2d0e3adb77e1","type":"GlyphRenderer"},{"id":"0c8fbb3b-c3b4-497a-95d9-2952c6e6eeaf","type":"GlyphRenderer"},{"id":"0310db36-3f75-438c-be17-cdf7fd57fe79","type":"GlyphRenderer"},{"id":"ddc24851-3ca0-4a00-b6cf-df22004ede8c","type":"GlyphRenderer"},{"id":"6551e6ea-0811-4028-ad05-fef84dbb3abf","type":"GlyphRenderer"}],"title":{"id":"bb55573e-1fd0-4f35-8357-230d93a1d391","type":"Title"},"tool_events":{"id":"ccca75ae-9a90-470d-8341-41cbc1494d9f","type":"ToolEvents"},"toolbar":{"id":"ec2981f8-3c0a-461f-890b-8c6afd32553a","type":"Toolbar"},"x_range":{"id":"a0a586bf-9420-4eae-b3fe-b9400c461017","type":"DataRange1d"},"x_scale":{"id":"066b97e1-b17a-43b2-bdf7-56c504f64209","type":"LinearScale"},"y_range":{"id":"dd195aa8-2909-45be-a42f-97f0b117af1a","type":"DataRange1d"},"y_scale":{"id":"35297baa-7835-45c5-904a-1e2b7a405af7","type":"LinearScale"}},"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"},{"attributes":{"callback":null,"end":4657.834162656733,"start":0},"id":"dd195aa8-2909-45be-a42f-97f0b117af1a","type":"DataRange1d"},{"attributes":{"plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"},"ticker":{"id":"e2f877e7-d691-4e32-a8bd-8b34c2496036","type":"BasicTicker"}},"id":"96443dd1-a71d-4562-bb9c-d7381e117c4b","type":"Grid"},{"attributes":{},"id":"2309e548-4929-4624-83fb-040c36c8aeef","type":"LogScale"},{"attributes":{},"id":"006ec2d2-dc9c-403c-8195-2f79429db69e","type":"LogScale"},{"attributes":{"num_minor_ticks":10},"id":"2bb352e3-c945-4242-9341-6cead1c6ee1c","type":"LogTicker"},{"attributes":{"plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"},"ticker":{"id":"c7f8c4c0-ccc9-4746-9876-e5a51098f8c8","type":"LogTicker"}},"id":"e9eccd09-1dff-4c05-b140-f16299e24d69","type":"Grid"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"487e0adf-1885-4d2f-bb37-d011d1e6f33c","type":"LogTickFormatter"},"plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"},"ticker":{"id":"2bb352e3-c945-4242-9341-6cead1c6ee1c","type":"LogTicker"}},"id":"9063c47a-11f6-49e9-b286-6bc1acdaadc0","type":"LogAxis"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"38318980-d796-4290-a92b-136a4aab8577","type":"Line"},{"attributes":{},"id":"e2f877e7-d691-4e32-a8bd-8b34c2496036","type":"BasicTicker"},{"attributes":{"dimension":1,"plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"},"ticker":{"id":"2bb352e3-c945-4242-9341-6cead1c6ee1c","type":"LogTicker"}},"id":"9f2da7a3-eee1-43b8-a823-2f05894d53d8","type":"Grid"},{"attributes":{"plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"}},"id":"2b82eb62-e193-41f6-836a-f70e97ad6b5a","type":"PanTool"},{"attributes":{"data_source":{"id":"a7b16262-b813-4400-9275-3ff27790469e","type":"ColumnDataSource"},"glyph":{"id":"92abfb32-e7d6-4493-9b5b-d9fb88a34090","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"38318980-d796-4290-a92b-136a4aab8577","type":"Line"},"selection_glyph":null},"id":"5c85f6ef-b891-4ea1-9db3-e6ac8bdb4f0b","type":"GlyphRenderer"},{"attributes":{"ticker":null},"id":"11c0ae3b-3f61-48c8-8fd3-8f948edeb699","type":"LogTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"f6baaf11-ce1c-486c-b8d5-0c1632ec6adb","type":"BoxAnnotation"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"iDmAdOYzhED3jGZaeR+UQMzGF5CAyKNAqQZ49/jWsUDabo5ZahbBQPB5MuwHU9BAhZDfGJtW10Al2QgzKAzZQOndxaYoYuhA","dtype":"float64","shape":[9]}}},"id":"a7b16262-b813-4400-9275-3ff27790469e","type":"ColumnDataSource"},{"attributes":{"ticker":null},"id":"487e0adf-1885-4d2f-bb37-d011d1e6f33c","type":"LogTickFormatter"},{"attributes":{"overlay":{"id":"f6baaf11-ce1c-486c-b8d5-0c1632ec6adb","type":"BoxAnnotation"},"plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"}},"id":"d7b8a053-c9f1-4fb7-bed4-a3df788f3ed2","type":"BoxZoomTool"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"76cf33d1-1336-4737-8cad-79fdcc322c10","type":"PanTool"},{"id":"f8834acc-9897-441d-9102-1f616408a50e","type":"WheelZoomTool"},{"id":"e7ac849f-5c88-4646-ae8c-6a4bc419f016","type":"BoxZoomTool"},{"id":"2c1a56f5-2c0d-4758-a7cc-eb45971629aa","type":"SaveTool"},{"id":"43e9c244-f5b8-4240-a21d-ba93dd66d881","type":"ResetTool"},{"id":"a0a42aa4-41ea-4099-a082-ff6b3e0b4400","type":"HelpTool"}]},"id":"eb086fb2-cda6-4992-9763-f203826c3f7e","type":"Toolbar"},{"attributes":{"plot":{"id":"d49fa646-bb9d-4704-9105-469647c7e6e2","subtype":"Figure","type":"Plot"}},"id":"c13542c5-c8f2-4b1d-a5ce-55f0dde4c758","type":"WheelZoomTool"},{"attributes":{"data_source":{"id":"3cf019ba-9b1f-42ed-b647-fc9001a82168","type":"ColumnDataSource"},"glyph":{"id":"eb4d7887-70ac-4a30-86f1-1f40e2b49fe4","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"7b5af66e-5b5f-4f69-9990-b49719f2e0b6","type":"Line"},"selection_glyph":null},"id":"ec695afc-00cb-4dd8-b886-1ec3953fb9f2","type":"GlyphRenderer"},{"attributes":{},"id":"78519e65-2c2d-4424-83a9-9dbd90af22d8","type":"BasicTicker"},{"attributes":{"dimension":1,"plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"},"ticker":{"id":"6edfdffb-7ce2-4cdd-9a8b-187af55764c4","type":"BasicTicker"}},"id":"0b786862-0fbb-4be6-a9cf-9bc5c59562b8","type":"Grid"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"e9e30041-e0e2-4080-9d31-19b7ea2c3a9e","type":"Line"},{"attributes":{"callback":null,"start":0},"id":"47f2536d-f362-4e46-a6be-2c6ff9fd2795","type":"DataRange1d"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"32f83fd4-91dc-4dff-a7ce-4d79c6224e86","type":"Circle"},{"attributes":{},"id":"6edfdffb-7ce2-4cdd-9a8b-187af55764c4","type":"BasicTicker"},{"attributes":{"dimension":1,"plot":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"},"ticker":{"id":"78519e65-2c2d-4424-83a9-9dbd90af22d8","type":"BasicTicker"}},"id":"77e0942d-9264-4240-8e68-8926967393ba","type":"Grid"},{"attributes":{},"id":"f4da7451-41df-4758-b1fb-6f6434e03f8b","type":"LinearScale"},{"attributes":{"plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"},"ticker":{"id":"3b63ade1-d387-45e1-90da-265ac9592e72","type":"BasicTicker"}},"id":"3a00a1b6-fe6b-4538-bd67-533a0082b73c","type":"Grid"},{"attributes":{},"id":"3c28f81c-0697-47c1-ad14-2e0bfd73ee41","type":"LinearScale"},{"attributes":{"callback":null,"end":49937.270358022135,"start":0},"id":"2c3b2c68-cfe2-4e65-a9ee-60bd310a543a","type":"DataRange1d"},{"attributes":{},"id":"3b63ade1-d387-45e1-90da-265ac9592e72","type":"BasicTicker"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"71ac58c9-55fe-4631-b9ec-79f55dccf3f8","type":"Line"},{"attributes":{"axis_label":"cores","formatter":{"id":"f8c8a5cb-4fe7-46f9-9de3-c35644b04d92","type":"BasicTickFormatter"},"plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"},"ticker":{"id":"335a9b38-a043-480c-9973-47def7c903b1","type":"FixedTicker"}},"id":"5215e61c-0d48-4011-8448-f9324be78a6c","type":"LinearAxis"},{"attributes":{"num_minor_ticks":10},"id":"c7f8c4c0-ccc9-4746-9876-e5a51098f8c8","type":"LogTicker"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"337a130a-12c7-4349-9504-9d093b482931","type":"BoxAnnotation"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"41323f6e-74d9-490d-b94a-b1bb7474c3ff","type":"BasicTickFormatter"},"plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"},"ticker":{"id":"6edfdffb-7ce2-4cdd-9a8b-187af55764c4","type":"BasicTicker"}},"id":"c1db760e-8d31-4e13-b508-a853ff778a89","type":"LinearAxis"},{"attributes":{"data_source":{"id":"10842f42-4f23-49a9-85b5-8be77dc747a3","type":"ColumnDataSource"},"glyph":{"id":"abda4121-416d-4332-9411-83986320f042","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"e9e30041-e0e2-4080-9d31-19b7ea2c3a9e","type":"Line"},"selection_glyph":null},"id":"46e3e75e-6c2b-44a0-9c65-9b675d41ad2f","type":"GlyphRenderer"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"abda4121-416d-4332-9411-83986320f042","type":"Line"},{"attributes":{"child":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"60def97a-ac42-4a56-a9d1-0607993c2e62","type":"Panel"},{"attributes":{"overlay":{"id":"337a130a-12c7-4349-9504-9d093b482931","type":"BoxAnnotation"},"plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"}},"id":"e7ac849f-5c88-4646-ae8c-6a4bc419f016","type":"BoxZoomTool"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"fbdb8d93-5848-4381-a2cf-1d63541f10f6","type":"Circle"},{"attributes":{"plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"}},"id":"f8834acc-9897-441d-9102-1f616408a50e","type":"WheelZoomTool"},{"attributes":{"child":{"id":"4fab0e63-76cb-46a6-843e-af38f25fd676","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"f8aa2e3b-14d5-4851-9c16-0c58862b0b9c","type":"Panel"},{"attributes":{},"id":"f8c8a5cb-4fe7-46f9-9de3-c35644b04d92","type":"BasicTickFormatter"},{"attributes":{"plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"}},"id":"76cf33d1-1336-4737-8cad-79fdcc322c10","type":"PanTool"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"92abfb32-e7d6-4493-9b5b-d9fb88a34090","type":"Line"},{"attributes":{"callback":null,"sizing_mode":"scale_width","tabs":[{"id":"d02370bb-d02f-4e1b-ba87-d899301df6bf","type":"Panel"},{"id":"a1bcbfdd-7db0-4ae7-9ce5-61153092ac99","type":"Panel"}]},"id":"067958e4-18bc-4159-852e-fc2a375a27cb","type":"Tabs"},{"attributes":{"plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"}},"id":"2c1a56f5-2c0d-4758-a7cc-eb45971629aa","type":"SaveTool"},{"attributes":{},"id":"4a2078e2-dc0a-4ee9-8148-99c308724a80","type":"BasicTickFormatter"},{"attributes":{},"id":"85fa896a-0164-445b-8199-17465b47072f","type":"ToolEvents"},{"attributes":{"below":[{"id":"5215e61c-0d48-4011-8448-f9324be78a6c","type":"LinearAxis"}],"left":[{"id":"c1db760e-8d31-4e13-b508-a853ff778a89","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"5215e61c-0d48-4011-8448-f9324be78a6c","type":"LinearAxis"},{"id":"3a00a1b6-fe6b-4538-bd67-533a0082b73c","type":"Grid"},{"id":"c1db760e-8d31-4e13-b508-a853ff778a89","type":"LinearAxis"},{"id":"0b786862-0fbb-4be6-a9cf-9bc5c59562b8","type":"Grid"},{"id":"337a130a-12c7-4349-9504-9d093b482931","type":"BoxAnnotation"},{"id":"a21531e6-2df4-4a46-b1a3-fb0c270ed7fd","type":"Legend"},{"id":"46e3e75e-6c2b-44a0-9c65-9b675d41ad2f","type":"GlyphRenderer"},{"id":"7c3e3106-8a5d-4189-9e5b-e5490e9a411b","type":"GlyphRenderer"},{"id":"32dfa032-2760-481a-a16b-3a70d989c048","type":"GlyphRenderer"}],"title":{"id":"ab1e2224-d79e-44eb-94ae-38e6722fb5a0","type":"Title"},"tool_events":{"id":"85fa896a-0164-445b-8199-17465b47072f","type":"ToolEvents"},"toolbar":{"id":"eb086fb2-cda6-4992-9763-f203826c3f7e","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"47f2536d-f362-4e46-a6be-2c6ff9fd2795","type":"DataRange1d"},"x_scale":{"id":"f4da7451-41df-4758-b1fb-6f6434e03f8b","type":"LinearScale"},"y_range":{"id":"2c3b2c68-cfe2-4e65-a9ee-60bd310a543a","type":"DataRange1d"},"y_scale":{"id":"3c28f81c-0697-47c1-ad14-2e0bfd73ee41","type":"LinearScale"}},"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,165500.80688519427]}},"id":"3cf019ba-9b1f-42ed-b647-fc9001a82168","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"#ff7f0e"},"x":{"field":"x"},"y":{"field":"y"}},"id":"cc5db39a-16cb-4e1b-86d6-8f12c85cc5af","type":"Line"},{"attributes":{"plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"}},"id":"a0a42aa4-41ea-4099-a082-ff6b3e0b4400","type":"HelpTool"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"55c37866-4dd7-43c4-a37f-ddd611adba37","type":"FixedTicker"},{"attributes":{"plot":null,"text":"DataFrames: Create"},"id":"ab1e2224-d79e-44eb-94ae-38e6722fb5a0","type":"Title"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"7b5af66e-5b5f-4f69-9990-b49719f2e0b6","type":"Line"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"eb4d7887-70ac-4a30-86f1-1f40e2b49fe4","type":"Line"},{"attributes":{"label":{"value":"random"},"renderers":[{"id":"46e3e75e-6c2b-44a0-9c65-9b675d41ad2f","type":"GlyphRenderer"}]},"id":"d94ad771-b4da-4cb2-8f9c-bac51b23c3c7","type":"LegendItem"},{"attributes":{"data_source":{"id":"a0f874ec-f5cf-46c0-ad48-25e382cb8e43","type":"ColumnDataSource"},"glyph":{"id":"70c98845-9cca-4d40-ac86-29049566c1e5","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"8e526ab1-2830-4487-9596-68e523596731","type":"Circle"},"selection_glyph":null},"id":"611ba4cf-ffd4-4546-88e1-08aeb3b14a35","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"4081f139-8263-4831-af45-7d73bd36d181","type":"Circle"},{"attributes":{"data_source":{"id":"1b801c3f-37c6-4605-b059-12d57dbdb1c3","type":"ColumnDataSource"},"glyph":{"id":"32f83fd4-91dc-4dff-a7ce-4d79c6224e86","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"4081f139-8263-4831-af45-7d73bd36d181","type":"Circle"},"selection_glyph":null},"id":"a8e83bb1-625e-4332-8c28-68b807e4ac87","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"70c98845-9cca-4d40-ac86-29049566c1e5","type":"Circle"},{"attributes":{"plot":{"id":"5abed06b-e288-46e8-9011-7e573975edd0","subtype":"Figure","type":"Plot"}},"id":"43e9c244-f5b8-4240-a21d-ba93dd66d881","type":"ResetTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"zYZNznMFgkAJVc0dH1aIQF6HLbAX8KBAEDiFMgobsEBOSk1Dh6G8QIcwzAFNYsdAkYwvunD+0kD/VzpMtBLaQNxDJJJ7lt5A","dtype":"float64","shape":[9]}}},"id":"a0f874ec-f5cf-46c0-ad48-25e382cb8e43","type":"ColumnDataSource"},{"attributes":{},"id":"41323f6e-74d9-490d-b94a-b1bb7474c3ff","type":"BasicTickFormatter"},{"attributes":{"items":[{"id":"1e0efdec-b408-4fd1-917c-8b4abef0c32f","type":"LegendItem"},{"id":"9707ea10-1988-4219-a460-b3ef4112a1be","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"8ac92914-8e42-465b-b484-6acf7a09c79f","subtype":"Figure","type":"Plot"}},"id":"7a0525cc-55d6-48fa-9055-850bc3b16a13","type":"Legend"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,486720.45329374564]}},"id":"0084dd1d-b5b6-4249-b7dd-4d81ae8d44d9","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"iDmAdOYzhED3jGZaeR+UQMzGF5CAyKNAqQZ49/jWsUDabo5ZahbBQPB5MuwHU9BAhZDfGJtW10Al2QgzKAzZQOndxaYoYuhA","dtype":"float64","shape":[9]}}},"id":"10842f42-4f23-49a9-85b5-8be77dc747a3","type":"ColumnDataSource"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"2194ad66-1e38-4dd6-ba9c-50d5ba5b5e58","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"iDmAdOYzhED3jGZaeR+UQMzGF5CAyKNAqQZ49/jWsUDabo5ZahbBQPB5MuwHU9BAhZDfGJtW10Al2QgzKAzZQOndxaYoYuhA","dtype":"float64","shape":[9]}}},"id":"b6dc27ed-5b0b-41a2-8d69-b5f301ba71bf","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"1e7af976-289b-4c4e-bf70-714e2aa9e95c","type":"ColumnDataSource"},"glyph":{"id":"67ed2335-c348-4d5d-9031-7a893dfbafcc","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"53f5e00e-5c20-4a96-8e13-0995e030ab6d","type":"Line"},"selection_glyph":null},"id":"32dfa032-2760-481a-a16b-3a70d989c048","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"b6dc27ed-5b0b-41a2-8d69-b5f301ba71bf","type":"ColumnDataSource"},"glyph":{"id":"fbdb8d93-5848-4381-a2cf-1d63541f10f6","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"2194ad66-1e38-4dd6-ba9c-50d5ba5b5e58","type":"Circle"},"selection_glyph":null},"id":"7c3e3106-8a5d-4189-9e5b-e5490e9a411b","type":"GlyphRenderer"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"335a9b38-a043-480c-9973-47def7c903b1","type":"FixedTicker"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"8e526ab1-2830-4487-9596-68e523596731","type":"Circle"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"a2e3d51d-d8bb-41ac-8515-3f1154af5d97","type":"GlyphRenderer"}]},"id":"8ae41a66-88b0-4423-b9a9-153148095b06","type":"LegendItem"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"53f5e00e-5c20-4a96-8e13-0995e030ab6d","type":"Line"},{"attributes":{"label":{"value":"100ms"},"renderers":[{"id":"cd853902-f97c-4992-8384-5ed93deffbc5","type":"GlyphRenderer"}]},"id":"1e0efdec-b408-4fd1-917c-8b4abef0c32f","type":"LegendItem"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"67ed2335-c348-4d5d-9031-7a893dfbafcc","type":"Line"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,165500.80688519427]}},"id":"1e7af976-289b-4c4e-bf70-714e2aa9e95c","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"},"ticker":{"id":"1f17c79c-958a-4b8d-b13a-5a1b3fe37259","type":"LogTicker"}},"id":"22a51e72-b540-4b2c-8c88-9ade9d03d005","type":"Grid"},{"attributes":{"num_minor_ticks":10},"id":"3e1785c2-5406-42b7-b954-df12211fa100","type":"LogTicker"},{"attributes":{},"id":"9504112c-f960-4fb5-bd9c-0723c7c7fa72","type":"LogScale"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"851b8c01-8fff-4950-802c-c850631d44c2","type":"Line"},{"attributes":{"dimension":1,"plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"},"ticker":{"id":"3e1785c2-5406-42b7-b954-df12211fa100","type":"LogTicker"}},"id":"389f6e50-4229-4968-b92d-2704548be1fd","type":"Grid"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"46c9f7fd-1c9e-4c19-916e-82699db390aa","type":"Line"},{"attributes":{"ticker":null},"id":"31b24d74-6828-4e72-a0b1-b9ff3ea2812d","type":"LogTickFormatter"},{"attributes":{"data_source":{"id":"6b415d1b-4f2d-4b54-9905-a68e448bd719","type":"ColumnDataSource"},"glyph":{"id":"851b8c01-8fff-4950-802c-c850631d44c2","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"46c9f7fd-1c9e-4c19-916e-82699db390aa","type":"Line"},"selection_glyph":null},"id":"b11cf862-e14d-410d-a091-23cafd5f1930","type":"GlyphRenderer"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"3dc67210-eb0f-4c45-8bf3-9ac6b35a51c3","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"}},"id":"5e757e75-742d-4e2b-a209-c24a8e6f6f09","type":"PanTool"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"e52748fa-0c22-477b-9c44-f35955ece350","type":"Line"},{"attributes":{"plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"}},"id":"9d0d89f3-9fda-4c43-a80f-f4e61bcf7ae2","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"3dc67210-eb0f-4c45-8bf3-9ac6b35a51c3","type":"BoxAnnotation"},"plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"}},"id":"96a77bc3-3076-4302-83ae-ca23b110ad65","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"}},"id":"52d138cc-73e1-4c54-9808-4c7479025432","type":"SaveTool"},{"attributes":{"plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"}},"id":"542aceac-c73e-4206-9e7d-a2e326d4112f","type":"ResetTool"},{"attributes":{"plot":{"id":"b1f9c2ed-12a3-425c-a852-37fafe3ee9c8","subtype":"Figure","type":"Plot"}},"id":"aecac00b-e41f-415c-86ad-223f8986f0f5","type":"HelpTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"sAHL3O3PZEALehwq1T1lQCHeSBOVVGVARLJVKdkUZUBZ9cB/YLBjQCWoVrQJiGBA4ishF0sKXUCMae/xfoRaQC1Vmopl8FJA","dtype":"float64","shape":[9]}}},"id":"6b415d1b-4f2d-4b54-9905-a68e448bd719","type":"ColumnDataSource"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"8y0AKWPAZkCdUmbwFEF2QI6UudUfxYVAYqt1iZwWkUDDRzQLwfGbQB6idyjfk55A/UKAURi0l0CkSi02kcaaQNjl7PoIv5pA","dtype":"float64","shape":[9]}}},"id":"7b276bde-624a-404d-a0c9-3b5647fbe4c5","type":"ColumnDataSource"},{"attributes":{"ticker":null},"id":"50eadc2e-195e-4477-a4bd-aa0597ac1245","type":"LogTickFormatter"},{"attributes":{"plot":{"id":"e761952d-458d-4815-b822-4649d8dc2644","subtype":"Figure","type":"Plot"}},"id":"86256809-cc92-4e15-ae4a-6278598dfde4","type":"SaveTool"},{"attributes":{"data_source":{"id":"5bd413e9-d12b-4922-9b6b-f0a2b43b0622","type":"ColumnDataSource"},"glyph":{"id":"e52748fa-0c22-477b-9c44-f35955ece350","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"ff3bd972-17cf-4f77-8c33-acc754cd4117","type":"Line"},"selection_glyph":null},"id":"69bd697e-0832-457a-8127-aaea5640b266","type":"GlyphRenderer"},{"attributes":{"plot":null,"text":"Tasks: Sequential"},"id":"dfa56f3f-a156-4193-83ff-40eb8c67f4ed","type":"Title"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"ff3bd972-17cf-4f77-8c33-acc754cd4117","type":"Line"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"497eb2a8-9f4f-4a33-8db7-0bf2b0729624","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,42623.433202269836]}},"id":"5bd413e9-d12b-4922-9b6b-f0a2b43b0622","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"912de431-8b1d-46d6-af89-e561bde867a4","type":"LinearAxis"}],"left":[{"id":"da6437c6-3b81-4eed-9a7a-58602ad66226","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"912de431-8b1d-46d6-af89-e561bde867a4","type":"LinearAxis"},{"id":"66e96303-5198-445b-9a3b-86f7e3ceff8c","type":"Grid"},{"id":"da6437c6-3b81-4eed-9a7a-58602ad66226","type":"LinearAxis"},{"id":"0f416ece-5b5f-4dab-99b5-c95edd50860a","type":"Grid"},{"id":"a206be90-515a-4182-b323-5f422be9232e","type":"BoxAnnotation"},{"id":"bd46bbf9-7e52-4d61-9be4-1f608610f06a","type":"Legend"},{"id":"5099c155-3073-4833-b7aa-b081f8daa2ff","type":"GlyphRenderer"},{"id":"8e226454-922a-4805-8aec-847436379896","type":"GlyphRenderer"},{"id":"4cc54198-52da-4f96-a5e4-bafc00a584e6","type":"GlyphRenderer"}],"title":{"id":"dfa56f3f-a156-4193-83ff-40eb8c67f4ed","type":"Title"},"tool_events":{"id":"0e4e2222-adbf-49f6-acd2-33308b2ca3ba","type":"ToolEvents"},"toolbar":{"id":"d63e6e35-658f-4878-8b6c-d2aa06097609","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"9e2489a1-99dd-4b02-87d9-a898db578105","type":"DataRange1d"},"x_scale":{"id":"385c7cce-2fea-488f-827f-4ca5b3b70083","type":"LinearScale"},"y_range":{"id":"6e9f69c9-63ac-4f86-b56a-326d53713801","type":"DataRange1d"},"y_scale":{"id":"feffa6ec-8962-4c41-8d23-9a0262def705","type":"LinearScale"}},"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"0e4e2222-adbf-49f6-acd2-33308b2ca3ba","type":"ToolEvents"},{"attributes":{},"id":"ff84d567-e4cf-48b2-8020-53c15130ecaa","type":"BasicTickFormatter"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"a8554471-d5ef-4589-a321-913aa6bb28a1","type":"PanTool"},{"id":"e7d3bd37-e75c-42d9-a4b8-4e76df6bec36","type":"WheelZoomTool"},{"id":"b69eb5c0-544d-428c-96fd-a2f8b725d9dc","type":"BoxZoomTool"},{"id":"0628cc13-598c-4da3-a089-50a5bd679f56","type":"SaveTool"},{"id":"c1e43ec1-5eec-450c-a783-78ee199ef975","type":"ResetTool"},{"id":"2852fd51-fc13-4e7e-b08d-8fc2c80a47cb","type":"HelpTool"}]},"id":"d63e6e35-658f-4878-8b6c-d2aa06097609","type":"Toolbar"},{"attributes":{"callback":null,"start":0},"id":"9e2489a1-99dd-4b02-87d9-a898db578105","type":"DataRange1d"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"f5f383a4-e75d-46f0-86d1-1aa89511616d","type":"Line"},{"attributes":{},"id":"385c7cce-2fea-488f-827f-4ca5b3b70083","type":"LinearScale"},{"attributes":{"callback":null,"end":170.64319767219516,"start":0},"id":"6e9f69c9-63ac-4f86-b56a-326d53713801","type":"DataRange1d"},{"attributes":{},"id":"feffa6ec-8962-4c41-8d23-9a0262def705","type":"LinearScale"},{"attributes":{"plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"},"ticker":{"id":"60aa3ecf-fbe6-4738-8e0b-d48824959a91","type":"BasicTicker"}},"id":"66e96303-5198-445b-9a3b-86f7e3ceff8c","type":"Grid"},{"attributes":{"axis_label":"cores","formatter":{"id":"ff84d567-e4cf-48b2-8020-53c15130ecaa","type":"BasicTickFormatter"},"plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"},"ticker":{"id":"dfe7fa67-6ff7-49c0-b16c-2a299864d0b9","type":"FixedTicker"}},"id":"912de431-8b1d-46d6-af89-e561bde867a4","type":"LinearAxis"},{"attributes":{},"id":"60aa3ecf-fbe6-4738-8e0b-d48824959a91","type":"BasicTicker"},{"attributes":{"axis_label":"tasks/s","formatter":{"id":"f67545e2-709d-4141-8402-d98300497037","type":"BasicTickFormatter"},"plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"},"ticker":{"id":"44cac71f-3f6c-4055-aa05-f96a6adaea1d","type":"BasicTicker"}},"id":"da6437c6-3b81-4eed-9a7a-58602ad66226","type":"LinearAxis"},{"attributes":{},"id":"44cac71f-3f6c-4055-aa05-f96a6adaea1d","type":"BasicTicker"},{"attributes":{"dimension":1,"plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"},"ticker":{"id":"44cac71f-3f6c-4055-aa05-f96a6adaea1d","type":"BasicTicker"}},"id":"0f416ece-5b5f-4dab-99b5-c95edd50860a","type":"Grid"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"17f0b01f-853a-465d-ac8e-b38fdb0c9714","type":"Line"},{"attributes":{"data_source":{"id":"f1831457-0eb1-4ab3-857d-0d85e71eff8b","type":"ColumnDataSource"},"glyph":{"id":"17f0b01f-853a-465d-ac8e-b38fdb0c9714","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"f5f383a4-e75d-46f0-86d1-1aa89511616d","type":"Line"},"selection_glyph":null},"id":"5099c155-3073-4833-b7aa-b081f8daa2ff","type":"GlyphRenderer"},{"attributes":{"child":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"},"title":"linear"},"id":"b23801a4-be5a-492c-ab93-ece3370c2047","type":"Panel"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"a206be90-515a-4182-b323-5f422be9232e","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"}},"id":"a8554471-d5ef-4589-a321-913aa6bb28a1","type":"PanTool"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"8f3a791e-d512-42e7-93ee-6484f449844c","type":"Circle"},{"attributes":{"plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"}},"id":"e7d3bd37-e75c-42d9-a4b8-4e76df6bec36","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"a206be90-515a-4182-b323-5f422be9232e","type":"BoxAnnotation"},"plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"}},"id":"b69eb5c0-544d-428c-96fd-a2f8b725d9dc","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"}},"id":"0628cc13-598c-4da3-a089-50a5bd679f56","type":"SaveTool"},{"attributes":{"plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"}},"id":"c1e43ec1-5eec-450c-a783-78ee199ef975","type":"ResetTool"},{"attributes":{"plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"}},"id":"2852fd51-fc13-4e7e-b08d-8fc2c80a47cb","type":"HelpTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"sAHL3O3PZEALehwq1T1lQCHeSBOVVGVARLJVKdkUZUBZ9cB/YLBjQCWoVrQJiGBA4ishF0sKXUCMae/xfoRaQC1Vmopl8FJA","dtype":"float64","shape":[9]}}},"id":"f1831457-0eb1-4ab3-857d-0d85e71eff8b","type":"ColumnDataSource"},{"attributes":{"children":[{"id":"948f0ba1-2615-4ca3-9634-5eade5d4eab8","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"399a5322-c563-42d3-88eb-636543214ee9","type":"WidgetBox"},{"attributes":{"data_source":{"id":"85c2b4e9-0196-44c3-8ef9-407e77eae0fe","type":"ColumnDataSource"},"glyph":{"id":"bf09f5bb-4f6e-4975-9ad4-5f256c231f78","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"8f3a791e-d512-42e7-93ee-6484f449844c","type":"Circle"},"selection_glyph":null},"id":"8e226454-922a-4805-8aec-847436379896","type":"GlyphRenderer"},{"attributes":{"children":[{"id":"59c15cdf-cad3-4afc-a12b-458d2a0a5b13","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"c3bcc172-5e0f-4658-96a7-e7aab967837c","type":"WidgetBox"},{"attributes":{},"id":"f67545e2-709d-4141-8402-d98300497037","type":"BasicTickFormatter"},{"attributes":{"children":[{"id":"399a5322-c563-42d3-88eb-636543214ee9","type":"WidgetBox"},{"id":"bb4e1bc3-7561-4489-9c6b-cca718a45554","type":"WidgetBox"}],"sizing_mode":"scale_width"},"id":"8b215b4b-e365-462a-ae56-01bea5fb44cd","type":"Row"},{"attributes":{"data_source":{"id":"c552bbe2-ea34-4502-818d-72d8eaef0893","type":"ColumnDataSource"},"glyph":{"id":"ed50651e-a87f-4ac9-b730-0a57804c8b90","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"0d784b33-8c4a-4ff1-8af5-955ac930029c","type":"Line"},"selection_glyph":null},"id":"4cc54198-52da-4f96-a5e4-bafc00a584e6","type":"GlyphRenderer"},{"attributes":{"items":[{"id":"72f1eca7-242c-4d72-90fe-d93812baa434","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"c3993f67-2d60-4740-8c46-23091463e0ff","subtype":"Figure","type":"Plot"}},"id":"bd46bbf9-7e52-4d61-9be4-1f608610f06a","type":"Legend"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"bf09f5bb-4f6e-4975-9ad4-5f256c231f78","type":"Circle"},{"attributes":{"label":{"value":"fast"},"renderers":[{"id":"5099c155-3073-4833-b7aa-b081f8daa2ff","type":"GlyphRenderer"}]},"id":"72f1eca7-242c-4d72-90fe-d93812baa434","type":"LegendItem"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"0d784b33-8c4a-4ff1-8af5-955ac930029c","type":"Line"},{"attributes":{"children":[{"id":"299ee94e-2b3f-41aa-b083-e0941f4210b7","type":"Row"},{"id":"8b215b4b-e365-462a-ae56-01bea5fb44cd","type":"Row"}],"sizing_mode":"scale_width"},"id":"ac7896b3-c871-4de2-8749-25da643eb97e","type":"Column"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"cd8b2f63-4971-461d-a48d-723dd0606040","type":"Line"},{"attributes":{"children":[{"id":"c3bcc172-5e0f-4658-96a7-e7aab967837c","type":"WidgetBox"},{"id":"2b7a29fc-991a-41b4-9a9b-4884221d1fec","type":"WidgetBox"}],"sizing_mode":"scale_width"},"id":"299ee94e-2b3f-41aa-b083-e0941f4210b7","type":"Row"},{"attributes":{"sizing_mode":"scale_width","toolbar_location":"above","tools":[{"id":"8946c13e-3fd9-4cd2-ad6b-048b3f3d3184","type":"PanTool"},{"id":"18467990-49d6-4857-8698-0ecf850b8dae","type":"WheelZoomTool"},{"id":"f12f9873-2e5a-4d0e-b72a-022169603cba","type":"BoxZoomTool"},{"id":"70ca44b0-73ae-499b-bf6e-a24ee883237a","type":"SaveTool"},{"id":"0888f93d-b6d7-486b-b5f6-52007244ea56","type":"ResetTool"},{"id":"12b05cc5-f225-412a-a571-bb01258df41c","type":"HelpTool"},{"id":"73c8ebe1-fa92-4ff6-ac89-ed9778c71129","type":"PanTool"},{"id":"256f01fa-c5a6-4e2d-9723-781db6e85fc8","type":"WheelZoomTool"},{"id":"36eac939-56b7-4b14-8629-bde3b0ed0b72","type":"BoxZoomTool"},{"id":"c3009076-d910-41e9-9d89-8c3229a09dcb","type":"SaveTool"},{"id":"a900c3fe-2975-4b0c-bd7b-39871891269e","type":"ResetTool"},{"id":"8c3dcf24-6388-41fd-a1b4-b7d803c9a77b","type":"HelpTool"},{"id":"5e757e75-742d-4e2b-a209-c24a8e6f6f09","type":"PanTool"},{"id":"9d0d89f3-9fda-4c43-a80f-f4e61bcf7ae2","type":"WheelZoomTool"},{"id":"96a77bc3-3076-4302-83ae-ca23b110ad65","type":"BoxZoomTool"},{"id":"52d138cc-73e1-4c54-9808-4c7479025432","type":"SaveTool"},{"id":"542aceac-c73e-4206-9e7d-a2e326d4112f","type":"ResetTool"},{"id":"aecac00b-e41f-415c-86ad-223f8986f0f5","type":"HelpTool"},{"id":"a8554471-d5ef-4589-a321-913aa6bb28a1","type":"PanTool"},{"id":"e7d3bd37-e75c-42d9-a4b8-4e76df6bec36","type":"WheelZoomTool"},{"id":"b69eb5c0-544d-428c-96fd-a2f8b725d9dc","type":"BoxZoomTool"},{"id":"0628cc13-598c-4da3-a089-50a5bd679f56","type":"SaveTool"},{"id":"c1e43ec1-5eec-450c-a783-78ee199ef975","type":"ResetTool"},{"id":"2852fd51-fc13-4e7e-b08d-8fc2c80a47cb","type":"HelpTool"},{"id":"e0ba9b60-db70-4b11-90ea-2868bc56108f","type":"PanTool"},{"id":"119970ac-6463-4f32-a7e2-f3bb89fcae56","type":"WheelZoomTool"},{"id":"f50914d8-200a-4f31-abfd-26c17a885c0c","type":"BoxZoomTool"},{"id":"25aa7dd9-490d-4122-9f8a-fa60ccf8b1ac","type":"SaveTool"},{"id":"f26e3fe2-102a-4632-99cc-17710686c86a","type":"ResetTool"},{"id":"3b7b47f2-f735-4ce9-94a7-152fe76da795","type":"HelpTool"},{"id":"3a7b15e0-3597-4a99-8089-6ecce1d9ca49","type":"PanTool"},{"id":"cd0d9904-16bc-4916-b074-b04f42c3c0c8","type":"WheelZoomTool"},{"id":"a0edbc21-c056-4cdc-a171-0c99928b8ab7","type":"BoxZoomTool"},{"id":"8b476975-4b0a-41e2-b278-f7b49bc29967","type":"SaveTool"},{"id":"fbef2fb6-1564-4b5c-b1ab-205dd4802aea","type":"ResetTool"},{"id":"b34e007a-6220-4ded-a494-4c692ef5e34e","type":"HelpTool"},{"id":"06d1c4f3-2e25-4e2c-87d9-5dcdfdef1c9f","type":"PanTool"},{"id":"711ed14b-0adc-44af-9a23-d8e69826940d","type":"WheelZoomTool"},{"id":"92b4441f-a58a-4aa2-b658-2032f50692c7","type":"BoxZoomTool"},{"id":"82e9c665-d127-48d2-8b1d-81259c5c59c1","type":"SaveTool"},{"id":"4a8c0673-09a5-4a8b-9ec7-2c6b9e9a1e2f","type":"ResetTool"},{"id":"c58059d9-7ec6-40de-a9a1-e030da7a5db5","type":"HelpTool"},{"id":"ef963147-69dd-4316-824e-c39236f8374e","type":"PanTool"},{"id":"dd1840f2-3a3f-4ee8-96d7-274b0b58a153","type":"WheelZoomTool"},{"id":"cc2ba96b-474a-45b8-a0f7-c979a271d7f6","type":"BoxZoomTool"},{"id":"89c7e6f2-37c0-4e30-8273-cc364867a06e","type":"SaveTool"},{"id":"5f24c536-7893-4741-b8a6-f4e717ad6684","type":"ResetTool"},{"id":"7ec0ca47-849b-4454-a2f0-7708648ed7be","type":"HelpTool"}]},"id":"ffc984fd-7ea1-4dfa-96f3-005a9664af52","type":"ToolbarBox"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"ed50651e-a87f-4ac9-b730-0a57804c8b90","type":"Line"},{"attributes":{"children":[{"id":"b175b9d7-0992-4013-a3da-e7da9e7115e2","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"2b7a29fc-991a-41b4-9a9b-4884221d1fec","type":"WidgetBox"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"dfe7fa67-6ff7-49c0-b16c-2a299864d0b9","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,42623.433202269836]}},"id":"c552bbe2-ea34-4502-818d-72d8eaef0893","type":"ColumnDataSource"},{"attributes":{"children":[{"id":"aeaa4543-6cc0-4ed6-bf28-929d3bf8399f","type":"Tabs"}],"sizing_mode":"scale_width"},"id":"bb4e1bc3-7561-4489-9c6b-cca718a45554","type":"WidgetBox"},{"attributes":{"data_source":{"id":"eea30ed3-c5f9-448f-b8f6-2e5a5fa90822","type":"ColumnDataSource"},"glyph":{"id":"fd037a13-f03b-4366-a086-1cc9bfd29a68","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"cd8b2f63-4971-461d-a48d-723dd0606040","type":"Line"},"selection_glyph":null},"id":"a209df9a-abf2-4be6-83bc-504ea82e6cdc","type":"GlyphRenderer"},{"attributes":{"children":[{"id":"ffc984fd-7ea1-4dfa-96f3-005a9664af52","type":"ToolbarBox"},{"id":"ac7896b3-c871-4de2-8749-25da643eb97e","type":"Column"}],"sizing_mode":"scale_width"},"id":"3328a090-74cd-4548-b396-7ab5adb364e6","type":"Column"},{"attributes":{},"id":"9f244216-2c49-46aa-86e7-c7a71dc00710","type":"ToolEvents"},{"attributes":{"callback":null,"start":0},"id":"87b21d20-ff5f-42fd-8677-3f4c6a3905e5","type":"DataRange1d"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"6b4da656-890a-4f15-8308-bba17bf46855","type":"PanTool"},{"id":"a81c27f4-60d4-49ea-a1a6-2ac54ae5f301","type":"WheelZoomTool"},{"id":"62446d6b-d3d2-4d9b-91a7-1846e468a714","type":"BoxZoomTool"},{"id":"64b8c2ea-0b92-4c14-9235-028576947076","type":"SaveTool"},{"id":"9b3a52e3-e27a-4f6b-b6ba-e0db55d8bed9","type":"ResetTool"},{"id":"92a69e8a-7390-4350-9ad6-284193c2055f","type":"HelpTool"}]},"id":"0084c66b-ce81-4d6d-bee6-69dffd00663c","type":"Toolbar"},{"attributes":{"num_minor_ticks":10},"id":"c6189eaa-7e2e-47a5-bf27-b39080a1c5a0","type":"LogTicker"},{"attributes":{"num_minor_ticks":10},"id":"b8d42256-14e2-499e-ab3d-d45b852369b9","type":"LogTicker"},{"attributes":{"callback":null,"end":5234.083519499139,"start":0},"id":"b3a359d4-53fe-4c66-9a9d-198781a27d5d","type":"DataRange1d"},{"attributes":{"label":{"value":"x.rechunk(...)"},"renderers":[{"id":"6d17249c-9696-4c57-814c-e07fcba42a96","type":"GlyphRenderer"}]},"id":"c31a4625-e1ca-48cf-a30a-239eb1cb936d","type":"LegendItem"},{"attributes":{"plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"},"ticker":{"id":"c6189eaa-7e2e-47a5-bf27-b39080a1c5a0","type":"LogTicker"}},"id":"a80b5d2e-a365-49b7-815c-151a0ac219f5","type":"Grid"},{"attributes":{},"id":"e188ceed-f72f-4184-827b-8cf9dcd2016b","type":"LogScale"},{"attributes":{"axis_label":"cores","formatter":{"id":"fb147d32-4323-41ae-9418-c219938a98fc","type":"LogTickFormatter"},"plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"},"ticker":{"id":"c1caeac4-3154-4361-9e12-436af3f29160","type":"FixedTicker"}},"id":"69e7f477-33dd-49bb-8742-8a4acc5e5cba","type":"LogAxis"},{"attributes":{},"id":"098ce152-b87a-43ed-962e-e78371796667","type":"LogScale"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"cb7c8cb6-9623-4908-96f9-761c89176a89","type":"LogTickFormatter"},"plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"},"ticker":{"id":"b8d42256-14e2-499e-ab3d-d45b852369b9","type":"LogTicker"}},"id":"6630e827-9e7c-490e-a37e-85408a6a4ae2","type":"LogAxis"},{"attributes":{"dimension":1,"plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"},"ticker":{"id":"b8d42256-14e2-499e-ab3d-d45b852369b9","type":"LogTicker"}},"id":"d0f0b675-2b8e-4fd7-9f32-6cbcb749cf23","type":"Grid"},{"attributes":{"label":{"value":"x.rechunk(...)"},"renderers":[{"id":"0d08fe1d-5742-4c92-84b6-7ecbbbf5f300","type":"GlyphRenderer"}]},"id":"64bf9c19-8a17-4233-b901-97145d31cd9e","type":"LegendItem"},{"attributes":{"items":[{"id":"64bf9c19-8a17-4233-b901-97145d31cd9e","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"}},"id":"ae2f1fe7-e7ad-4a3c-9994-cd087b537257","type":"Legend"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"s8bqjTzBiUBTem6Z0ZyGQFtOQa+MMZNAS+oBg8Twl0Arqf2CF8SjQIPxxSmeUatANdBkm/kbrkBhrYhhFXK0QGeZb4e3brJA","dtype":"float64","shape":[9]}}},"id":"362f2dd6-9136-4c7c-a7a1-70a04e76a875","type":"ColumnDataSource"},{"attributes":{"data_source":{"id":"c4a73cdb-83e0-4105-8387-69c5f81b6312","type":"ColumnDataSource"},"glyph":{"id":"3fafd503-c9c9-4f95-bee1-8492be01dea0","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"fed144f7-83c4-4242-935a-c4908966c807","type":"Line"},"selection_glyph":null},"id":"ec6a1d09-8449-46cf-b1be-3e11e093564e","type":"GlyphRenderer"},{"attributes":{"plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"}},"id":"6b4da656-890a-4f15-8308-bba17bf46855","type":"PanTool"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"6963c4fc-c97f-4d0b-9cf2-2be605fff08d","type":"Circle"},{"attributes":{"plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"}},"id":"a81c27f4-60d4-49ea-a1a6-2ac54ae5f301","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"dde7e77b-1917-4489-9e8d-103c92197c86","type":"BoxAnnotation"},"plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"}},"id":"62446d6b-d3d2-4d9b-91a7-1846e468a714","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"}},"id":"64b8c2ea-0b92-4c14-9235-028576947076","type":"SaveTool"},{"attributes":{"plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"}},"id":"9b3a52e3-e27a-4f6b-b6ba-e0db55d8bed9","type":"ResetTool"},{"attributes":{"plot":{"id":"6283fd05-bec6-41be-819f-32dcc5714915","subtype":"Figure","type":"Plot"}},"id":"92a69e8a-7390-4350-9ad6-284193c2055f","type":"HelpTool"},{"attributes":{"data_source":{"id":"362f2dd6-9136-4c7c-a7a1-70a04e76a875","type":"ColumnDataSource"},"glyph":{"id":"6963c4fc-c97f-4d0b-9cf2-2be605fff08d","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"22dbf6a7-d3aa-44ab-98ac-12274725f5f9","type":"Circle"},"selection_glyph":null},"id":"6af73c8b-fc8e-4c8b-a659-a7220854b1e0","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"22dbf6a7-d3aa-44ab-98ac-12274725f5f9","type":"Circle"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,336851.07713094505]}},"id":"97e682ba-d0e2-401f-98d3-0d4f783335b1","type":"ColumnDataSource"},{"attributes":{"items":[{"id":"c31a4625-e1ca-48cf-a30a-239eb1cb936d","type":"LegendItem"}],"location":"bottom_right","plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"}},"id":"3df41605-9fba-40d8-86bb-4971ef0ac67c","type":"Legend"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"3fafd503-c9c9-4f95-bee1-8492be01dea0","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"fed144f7-83c4-4242-935a-c4908966c807","type":"Line"},{"attributes":{"plot":null,"text":"Arrays: Rechunking"},"id":"cab85b81-e7db-4f7b-a3ac-1734f990ff9e","type":"Title"},{"attributes":{"ticks":[2,4,8,16,32,64,128,256,512]},"id":"c1caeac4-3154-4361-9e12-436af3f29160","type":"FixedTicker"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,210983.56929545625]}},"id":"c4a73cdb-83e0-4105-8387-69c5f81b6312","type":"ColumnDataSource"},{"attributes":{"below":[{"id":"94a8080b-1f64-45a9-840b-0d89d2ad1ae8","type":"LinearAxis"}],"left":[{"id":"ddbfd72e-8a85-4061-9a3b-e19d9aaa07e2","type":"LinearAxis"}],"plot_height":400,"plot_width":400,"renderers":[{"id":"94a8080b-1f64-45a9-840b-0d89d2ad1ae8","type":"LinearAxis"},{"id":"53d3e7d1-ec27-4790-acd8-6afb80e548b9","type":"Grid"},{"id":"ddbfd72e-8a85-4061-9a3b-e19d9aaa07e2","type":"LinearAxis"},{"id":"d82b6b00-db6f-45a4-b0e7-968b580bb9d4","type":"Grid"},{"id":"fe061748-d906-414d-b8a1-8e29feca63d2","type":"BoxAnnotation"},{"id":"3df41605-9fba-40d8-86bb-4971ef0ac67c","type":"Legend"},{"id":"6d17249c-9696-4c57-814c-e07fcba42a96","type":"GlyphRenderer"},{"id":"ed59cd0e-8894-41f1-a48a-5f7a4c88c6ed","type":"GlyphRenderer"},{"id":"f45c7b73-fad4-4acb-b1ad-8b3ed1e0fcb2","type":"GlyphRenderer"}],"title":{"id":"cab85b81-e7db-4f7b-a3ac-1734f990ff9e","type":"Title"},"tool_events":{"id":"30c90173-81f0-47ca-877c-6c6848aebf36","type":"ToolEvents"},"toolbar":{"id":"ca681ecd-4719-4397-96dc-1986a57e5d53","type":"Toolbar"},"toolbar_location":null,"x_range":{"id":"b5d18a40-eaf0-4995-ab94-30e91d9620c7","type":"DataRange1d"},"x_scale":{"id":"83955f72-021e-4038-ae89-1b6f25fb0c08","type":"LinearScale"},"y_range":{"id":"976385a8-d4d8-4a4e-8589-c4594fee92bc","type":"DataRange1d"},"y_scale":{"id":"7eb5bb32-7a67-42fb-9d36-2ab66e73912a","type":"LinearScale"}},"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"30c90173-81f0-47ca-877c-6c6848aebf36","type":"ToolEvents"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"dd4c646b-94ab-4c76-88ce-f8a47591f0a5","type":"Line"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"dc08ebd3-6a70-4b66-9ed5-ab2033b02617","type":"PanTool"},{"id":"261f447f-6e57-4caa-9612-990ac53104cc","type":"WheelZoomTool"},{"id":"ef6a0b65-2aec-4574-8101-1c476620c1ed","type":"BoxZoomTool"},{"id":"4c7d084f-250c-4af4-beb5-bd802fa783d4","type":"SaveTool"},{"id":"6df2cb4a-cb98-4ae4-bb00-2a88c169f1d5","type":"ResetTool"},{"id":"217745ac-c1b5-4fac-a108-b550990c8efa","type":"HelpTool"}]},"id":"ca681ecd-4719-4397-96dc-1986a57e5d53","type":"Toolbar"},{"attributes":{"callback":null,"start":0},"id":"b5d18a40-eaf0-4995-ab94-30e91d9620c7","type":"DataRange1d"},{"attributes":{},"id":"75726b0c-3595-4721-8cfa-a3cd9858914b","type":"BasicTickFormatter"},{"attributes":{},"id":"83955f72-021e-4038-ae89-1b6f25fb0c08","type":"LinearScale"},{"attributes":{"callback":null,"end":5234.083519499139,"start":0},"id":"976385a8-d4d8-4a4e-8589-c4594fee92bc","type":"DataRange1d"},{"attributes":{},"id":"7eb5bb32-7a67-42fb-9d36-2ab66e73912a","type":"LinearScale"},{"attributes":{"plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"},"ticker":{"id":"95d5e569-513a-4702-866c-58118ee9081d","type":"BasicTicker"}},"id":"53d3e7d1-ec27-4790-acd8-6afb80e548b9","type":"Grid"},{"attributes":{"axis_label":"cores","formatter":{"id":"312e64ce-921b-4a25-8103-2b92e4211342","type":"BasicTickFormatter"},"plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"},"ticker":{"id":"deecb97b-ec64-461a-bed8-a7fec272a973","type":"FixedTicker"}},"id":"94a8080b-1f64-45a9-840b-0d89d2ad1ae8","type":"LinearAxis"},{"attributes":{},"id":"95d5e569-513a-4702-866c-58118ee9081d","type":"BasicTicker"},{"attributes":{"axis_label":"MB/s","formatter":{"id":"75726b0c-3595-4721-8cfa-a3cd9858914b","type":"BasicTickFormatter"},"plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"},"ticker":{"id":"7819956c-57d5-445d-b5f5-0f78a771a2f3","type":"BasicTicker"}},"id":"ddbfd72e-8a85-4061-9a3b-e19d9aaa07e2","type":"LinearAxis"},{"attributes":{},"id":"7819956c-57d5-445d-b5f5-0f78a771a2f3","type":"BasicTicker"},{"attributes":{"dimension":1,"plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"},"ticker":{"id":"7819956c-57d5-445d-b5f5-0f78a771a2f3","type":"BasicTicker"}},"id":"d82b6b00-db6f-45a4-b0e7-968b580bb9d4","type":"Grid"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"s8bqjTzBiUBTem6Z0ZyGQFtOQa+MMZNAS+oBg8Twl0Arqf2CF8SjQIPxxSmeUatANdBkm/kbrkBhrYhhFXK0QGeZb4e3brJA","dtype":"float64","shape":[9]}}},"id":"4a0b502c-d137-472f-afc6-726e1982cc6c","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"13b721fb-b1f2-4009-8290-e29352972ba3","type":"Line"},{"attributes":{},"id":"312e64ce-921b-4a25-8103-2b92e4211342","type":"BasicTickFormatter"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"fe061748-d906-414d-b8a1-8e29feca63d2","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"}},"id":"dc08ebd3-6a70-4b66-9ed5-ab2033b02617","type":"PanTool"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[2,4,8,16,32,64,128,256,512],"y":{"__ndarray__":"BSBNWCE2dEC9BpWUVImFQDzSCcCUkJBAVLgx0fyxnkCFGyLiy4+jQE7fanACZ6xAEeby5mMgsEDryZN7k+GwQFqGlput7rBA","dtype":"float64","shape":[9]}}},"id":"529ef473-0ccc-45f4-861a-7b66c8fc4d8d","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"}},"id":"261f447f-6e57-4caa-9612-990ac53104cc","type":"WheelZoomTool"},{"attributes":{"overlay":{"id":"fe061748-d906-414d-b8a1-8e29feca63d2","type":"BoxAnnotation"},"plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"}},"id":"ef6a0b65-2aec-4574-8101-1c476620c1ed","type":"BoxZoomTool"},{"attributes":{"plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"}},"id":"4c7d084f-250c-4af4-beb5-bd802fa783d4","type":"SaveTool"},{"attributes":{"plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"}},"id":"6df2cb4a-cb98-4ae4-bb00-2a88c169f1d5","type":"ResetTool"},{"attributes":{"plot":{"id":"26cfe895-d550-439a-9fd8-f8b33f7650c4","subtype":"Figure","type":"Plot"}},"id":"217745ac-c1b5-4fac-a108-b550990c8efa","type":"HelpTool"},{"attributes":{"data_source":{"id":"fb7edcec-75b7-47e2-85aa-644370275686","type":"ColumnDataSource"},"glyph":{"id":"35ca343c-672d-4ef4-b159-836e4a5d8148","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"47e5a2c0-2ed6-4b5b-9195-d1deb97741dd","type":"Line"},"selection_glyph":null},"id":"f45c7b73-fad4-4acb-b1ad-8b3ed1e0fcb2","type":"GlyphRenderer"},{"attributes":{"data_source":{"id":"a1335509-0bcd-498a-bb3c-5af46436f736","type":"ColumnDataSource"},"glyph":{"id":"13b721fb-b1f2-4009-8290-e29352972ba3","type":"Line"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"dd4c646b-94ab-4c76-88ce-f8a47591f0a5","type":"Line"},"selection_glyph":null},"id":"6d17249c-9696-4c57-814c-e07fcba42a96","type":"GlyphRenderer"},{"attributes":{"fill_color":{"value":"#1f77b4"},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"9d7e0692-1553-4f44-a38e-7d9449d4d1ce","type":"Circle"},{"attributes":{"data_source":{"id":"4a0b502c-d137-472f-afc6-726e1982cc6c","type":"ColumnDataSource"},"glyph":{"id":"9d7e0692-1553-4f44-a38e-7d9449d4d1ce","type":"Circle"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"a2d1cdcc-1cfa-4746-be4c-ed27758443dc","type":"Circle"},"selection_glyph":null},"id":"ed59cd0e-8894-41f1-a48a-5f7a4c88c6ed","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"a2d1cdcc-1cfa-4746-be4c-ed27758443dc","type":"Circle"},{"attributes":{"child":{"id":"1d34c2b9-9f2b-48c4-b9c6-c2c8e72691c5","subtype":"Figure","type":"Plot"},"title":"log"},"id":"46d7408d-edb4-4a99-a135-415f0feaf6aa","type":"Panel"},{"attributes":{"callback":null,"column_names":["x","y"],"data":{"x":[0,512],"y":[0,210983.56929545625]}},"id":"fb7edcec-75b7-47e2-85aa-644370275686","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"gray"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"35ca343c-672d-4ef4-b159-836e4a5d8148","type":"Line"},{"attributes":{"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"line_dash":[6],"x":{"field":"x"},"y":{"field":"y"}},"id":"47e5a2c0-2ed6-4b5b-9195-d1deb97741dd","type":"Line"},{"attributes":{"children":[{"id":"fb713db1-aa51-4406-b604-cd896be47fdf","type":"Row"},{"id":"5329528e-3df4-406e-b886-28d673e4447c","type":"Row"},{"id":"2562d80e-1e0a-4237-9f75-df3916b837df","type":"Row"}],"sizing_mode":"scale_width"},"id":"344a1d6e-41e7-4fa4-86a6-6537dbb6c9da","type":"Column"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"ab10fe90-cae8-447a-af95-b3c5e014c4af","type":"BoxAnnotation"},{"attributes":{"line_color":{"value":"#1f77b4"},"x":{"field":"x"},"y":{"field":"y"}},"id":"4b247019-ac32-4471-98a2-5ed1fc275453","type":"Line"}],"root_ids":["3328a090-74cd-4548-b396-7ab5adb364e6","ed39ed3e-c52c-4159-85ae-c61b8a19409c","8cef5b34-d5d8-47bf-9055-bdcedac89484","515cf591-ccc9-4d46-8771-c0b31a55cb97","c0b81eb9-68c0-4b71-926b-0b5bcab775b1"]},"title":"Bokeh Application","version":"0.12.6"}};
      var render_items = [{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"36dc768f-23a6-4b1c-8cbe-a0346af1d182","modelid":"59c15cdf-cad3-4afc-a12b-458d2a0a5b13"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"90a82d6b-b090-49df-8900-62ca8188d39a","modelid":"515cf591-ccc9-4d46-8771-c0b31a55cb97"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"11288c56-ea8f-45d3-9629-62c82b24eb54","modelid":"948f0ba1-2615-4ca3-9634-5eade5d4eab8"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"3c6ec7c3-ffd7-4ec9-8ef7-1e8b21a044f5","modelid":"aeaa4543-6cc0-4ed6-bf28-929d3bf8399f"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"733be4a9-6378-4112-bcaf-bfb1a4217c9c","modelid":"b175b9d7-0992-4013-a3da-e7da9e7115e2"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"30baf2d4-57bd-4393-8a2c-c9deb1a1edc9","modelid":"3328a090-74cd-4548-b396-7ab5adb364e6"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"bdce2a6b-8576-4724-8736-24f4b86d6487","modelid":"50a686fd-e2c5-440a-92af-bbfc9d851b96"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"d919e07f-2795-4bfd-9f97-d0aaf24c0a2a","modelid":"d5449472-9151-45a2-82ef-636c1e6e7fad"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"8f38e6fe-fab7-480b-9eb8-0f72781e24d7","modelid":"716ab0cd-3d4a-4000-afeb-483507e81870"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"88e05fb2-abac-4b1e-bcf9-a04d9148a6bf","modelid":"4311ab7e-c88e-42cf-b077-bfd6acbda2f0"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"7b3301e3-8beb-4da4-bbef-9eb52793f8c1","modelid":"d5eef40f-39b6-49cb-9230-302039c21841"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"a1a28d56-81f7-4580-8400-f7aec3cd4f59","modelid":"7fc598d6-b20a-457d-80b4-34bf7c5ca49e"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"f04e6ad2-5317-4dc8-babd-f3b8d85ae09c","modelid":"c0b81eb9-68c0-4b71-926b-0b5bcab775b1"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"ea30e0d3-0a1b-40bb-be2f-e0b54af96aab","modelid":"ed39ed3e-c52c-4159-85ae-c61b8a19409c"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"c6417fff-a706-4e33-9337-548f59f230f9","modelid":"bddfdd21-3692-4f09-a839-053ec2e8b96e"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"3d2dcdc7-c91f-4e16-9a6f-88b4837e6375","modelid":"067958e4-18bc-4159-852e-fc2a375a27cb"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"e2d30245-cca5-41bc-8691-59037c33c9f2","modelid":"4d110cea-f4d8-49a1-bd97-89adb074f930"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"055fa730-cc11-4b5d-8237-c067f0fcb5d5","modelid":"682f90be-e284-4f12-a195-8e4927a7b6dc"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"a46691fb-a1b1-47fb-9d8f-9a6933ba78b7","modelid":"bc2a925a-2e83-48cf-a2c4-b3b85a7804f9"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"ea096ed4-c553-404e-b18f-a1336a4d4156","modelid":"7d705d97-1eec-49b4-bda6-9eebdb487600"},{"docid":"c37a7732-0c94-4514-bc5b-189fa40a390f","elementid":"3bad34c6-9772-45c7-88d7-62c3eaa3fa97","modelid":"8cef5b34-d5d8-47bf-9055-bdcedac89484"}];

      Bokeh.embed.embed_items(docs_json, render_items);
    });
  };
  if (document.readyState != "loading") fn();
  else document.addEventListener("DOMContentLoaded", fn);
})();

</script>
