From 273e1390192ae47ceb2380743aa932bfa2157808 Mon Sep 17 00:00:00 2001 From: "Mads R. B. Kristensen" Date: Wed, 9 Aug 2023 17:36:31 +0200 Subject: [PATCH] typo --- notebooks/zarr.ipynb | 46 ++++++++++++++++++++++---------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/notebooks/zarr.ipynb b/notebooks/zarr.ipynb index 4bfe2fc94d..8fec808d5d 100644 --- a/notebooks/zarr.ipynb +++ b/notebooks/zarr.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": 12, "id": "7a060f7d-9a0c-4763-98df-7dc82409c6ba", "metadata": {}, "outputs": [], @@ -34,7 +34,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 13, "id": "c179c24a-766e-4e09-83c5-349868042576", "metadata": {}, "outputs": [ @@ -43,16 +43,16 @@ "text/plain": [ "(,\n", " NvCompBatchCodec(algorithm='lz4', options={}),\n", - " )" + " )" ] }, - "execution_count": 2, + "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# Let's create a new Zarr array using KvikIO's GDS store and Snappy compression\n", + "# Let's create a new Zarr array using KvikIO's GDS store and LZ4 compression\n", "z = zarr.array(\n", " cupy.arange(10), \n", " chunks=2, \n", @@ -66,7 +66,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 14, "metadata": {}, "outputs": [ { @@ -75,7 +75,7 @@ "cupy.ndarray" ] }, - "execution_count": 3, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } @@ -95,7 +95,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 15, "id": "8221742d-f15c-450a-9701-dc8c05326126", "metadata": {}, "outputs": [ @@ -105,7 +105,7 @@ "array([1, 2, 3, 4, 5, 6, 7, 8])" ] }, - "execution_count": 4, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } @@ -116,7 +116,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 16, "id": "f0c451c1-a240-4b26-a5ef-6e70a5bbeb55", "metadata": {}, "outputs": [ @@ -126,7 +126,7 @@ "array([42, 43, 44, 45, 46, 47, 48, 49, 50, 51])" ] }, - "execution_count": 5, + "execution_count": 16, "metadata": {}, "output_type": "execute_result" } @@ -153,7 +153,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 17, "id": "399f23f7-4475-496a-a537-a7163a35c888", "metadata": {}, "outputs": [ @@ -165,7 +165,7 @@ " array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]))" ] }, - "execution_count": 6, + "execution_count": 17, "metadata": {}, "output_type": "execute_result" } @@ -185,7 +185,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 18, "id": "4b1f46b2", "metadata": {}, "outputs": [ @@ -197,7 +197,7 @@ " array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]))" ] }, - "execution_count": 7, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } @@ -219,7 +219,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 19, "id": "d980361a-e132-4f29-ab13-cbceec5bbbb5", "metadata": {}, "outputs": [ @@ -229,7 +229,7 @@ "(numpy.ndarray, numcodecs.lz4.LZ4, array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]))" ] }, - "execution_count": 8, + "execution_count": 19, "metadata": {}, "output_type": "execute_result" } @@ -258,7 +258,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 20, "id": "c9b2d56a", "metadata": {}, "outputs": [ @@ -267,10 +267,10 @@ "text/plain": [ "(,\n", " LZ4(acceleration=1),\n", - " )" + " )" ] }, - "execution_count": 9, + "execution_count": 20, "metadata": {}, "output_type": "execute_result" } @@ -299,7 +299,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 21, "id": "ac3f30b1", "metadata": {}, "outputs": [ @@ -311,7 +311,7 @@ " array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]))" ] }, - "execution_count": 10, + "execution_count": 21, "metadata": {}, "output_type": "execute_result" } @@ -330,7 +330,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 22, "id": "80682922-b7b0-4b08-b595-228c2b446a78", "metadata": {}, "outputs": [],