Skip to content

Commit 693a4e2

Browse files
committed
Updated README to show GPU STUMP example
1 parent 11e33fc commit 693a4e2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,18 @@ Distributed usage for 1-dimensional time series data with Dask Distributed via `
8787
8888
matrix_profile = stumpy.stumped(dask_client, your_time_series, m=window_size)
8989
90+
GPU support for 1-dimensional time series data with Dask Distributed via `GPU-STUMP`:
91+
92+
.. code:: python
93+
94+
import stumpy
95+
import numpy as np
96+
97+
your_time_series = np.random.rand(10000)
98+
window_size = 50 # Approximately, how many data points might be found in a pattern
99+
100+
matrix_profile = stumpy.gpu_stump(your_time_series, m=window_size)
101+
90102
Multi-dimensional time series data with `MSTUMP`:
91103

92104
.. code:: python

0 commit comments

Comments
 (0)