From 92363d92ba316c46c61d5f861de5ef88c60d38cc Mon Sep 17 00:00:00 2001 From: zoj613 Date: Thu, 11 Jul 2024 12:09:55 +0000 Subject: [PATCH] deploy: 8cd49fb227c52fbe055caa2cf4a4e040ffd2e70a --- zarr/Zarr/Codecs/Chain/index.html | 2 +- zarr/Zarr/Codecs/index.html | 2 +- zarr/Zarr/Storage/FilesystemStore/index.html | 2 +- zarr/Zarr/Storage/Make/index.html | 2 +- zarr/Zarr/Storage/MemoryStore/index.html | 2 +- zarr/Zarr/Storage/module-type-MAKER/index.html | 2 +- zarr/Zarr/Storage/module-type-S/index.html | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/zarr/Zarr/Codecs/Chain/index.html b/zarr/Zarr/Codecs/Chain/index.html index f44e791c..16b14ca0 100644 --- a/zarr/Zarr/Codecs/Chain/index.html +++ b/zarr/Zarr/Codecs/Chain/index.html @@ -1,7 +1,7 @@ Chain (zarr.Zarr.Codecs.Chain)

Module Codecs.Chain

type t
val create : ('a, 'b) Zarr__.Util.array_repr -> - chain -> + codec_chain -> (t, [> error ]) Stdlib.result
val default : t
val compute_encoded_size : int -> t -> int
val encode : t -> ('a, 'b) Ndarray.t -> (string, [> error ]) Stdlib.result
val decode : t -> ('a, 'b) Zarr__.Util.array_repr -> diff --git a/zarr/Zarr/Codecs/index.html b/zarr/Zarr/Codecs/index.html index cfb32d85..6a7682b9 100644 --- a/zarr/Zarr/Codecs/index.html +++ b/zarr/Zarr/Codecs/index.html @@ -1,2 +1,2 @@ -Codecs (zarr.Zarr.Codecs)

Module Zarr.Codecs

module Ndarray = Owl.Dense.Ndarray.Generic
type dimension_order = int array
type array_to_array =
  1. | Transpose of dimension_order
type compression_level =
  1. | L0
  2. | L1
  3. | L2
  4. | L3
  5. | L4
  6. | L5
  7. | L6
  8. | L7
  9. | L8
  10. | L9
type bytes_to_bytes =
  1. | Crc32c
  2. | Gzip of compression_level
type endianness =
  1. | Little
  2. | Big
type loc =
  1. | Start
  2. | End
type array_to_bytes =
  1. | Bytes of endianness
  2. | ShardingIndexed of shard_config
and shard_config = {
  1. chunk_shape : int array;
  2. codecs : chain;
  3. index_codecs : chain;
  4. index_location : loc;
}
and chain = {
  1. a2a : array_to_array list;
  2. a2b : array_to_bytes;
  3. b2b : bytes_to_bytes list;
}
type error = [
  1. | Zarr__.Extensions.error
  2. | Zarr__.Array_to_array.error
  3. | Zarr__.Bytes_to_bytes.error
  4. | `Sharding of int array * int array * string
]
module Chain : sig ... end
+Codecs (zarr.Zarr.Codecs)

Module Zarr.Codecs

module Ndarray = Owl.Dense.Ndarray.Generic
type dimension_order = int array
type array_to_array =
  1. | Transpose of dimension_order
type compression_level =
  1. | L0
  2. | L1
  3. | L2
  4. | L3
  5. | L4
  6. | L5
  7. | L6
  8. | L7
  9. | L8
  10. | L9
type _ bytestobytes =
  1. | CRC32C : [> `Fixed ] bytestobytes
  2. | GZIP : compression_level -> [> `Variable ] bytestobytes
type fixed_bytes_to_bytes =
  1. | F : [< `Fixed ] bytestobytes -> fixed_bytes_to_bytes
type any_bytes_to_bytes =
  1. | V : [> `Fixed | `Variable ] bytestobytes -> any_bytes_to_bytes
type endianness =
  1. | Little
  2. | Big
type loc =
  1. | Start
  2. | End
type arraytobytes =
  1. | BYTES of endianness
  2. | SHARDING_INDEXED of sharding_config
and sharding_config = {
  1. chunk_shape : int array;
  2. codecs : any_bytes_to_bytes shard_chain;
  3. index_codecs : fixed_bytes_to_bytes shard_chain;
  4. index_location : loc;
}
and 'a shard_chain = {
  1. a2a : array_to_array list;
  2. a2b : arraytobytes;
  3. b2b : 'a list;
}
type codec_chain = {
  1. a2a : array_to_array list;
  2. a2b : arraytobytes;
  3. b2b : any_bytes_to_bytes list;
}
type error = [
  1. | Zarr__.Extensions.error
  2. | Zarr__.Array_to_array.error
  3. | Zarr__.Bytes_to_bytes.error
  4. | `Sharding of int array * int array * string
]
module Chain : sig ... end
diff --git a/zarr/Zarr/Storage/FilesystemStore/index.html b/zarr/Zarr/Storage/FilesystemStore/index.html index 6958ad73..1fe04b2f 100644 --- a/zarr/Zarr/Storage/FilesystemStore/index.html +++ b/zarr/Zarr/Storage/FilesystemStore/index.html @@ -7,7 +7,7 @@ ?sep:[< `Dot | `Slash Slash ] -> ?dimension_names:string option list -> ?attributes:Yojson.Safe.t -> - ?codecs:Codecs.chain -> + ?codecs:Codecs.codec_chain -> shape:int array -> chunks:int array -> ('a, 'b) Stdlib.Bigarray.kind -> diff --git a/zarr/Zarr/Storage/Make/index.html b/zarr/Zarr/Storage/Make/index.html index 52133044..ed6fe2d7 100644 --- a/zarr/Zarr/Storage/Make/index.html +++ b/zarr/Zarr/Storage/Make/index.html @@ -7,7 +7,7 @@ ?sep:[< `Dot | `Slash Slash ] -> ?dimension_names:string option list -> ?attributes:Yojson.Safe.t -> - ?codecs:Codecs.chain -> + ?codecs:Codecs.codec_chain -> shape:int array -> chunks:int array -> ('a, 'b) Stdlib.Bigarray.kind -> diff --git a/zarr/Zarr/Storage/MemoryStore/index.html b/zarr/Zarr/Storage/MemoryStore/index.html index 57974afa..f54e6a8e 100644 --- a/zarr/Zarr/Storage/MemoryStore/index.html +++ b/zarr/Zarr/Storage/MemoryStore/index.html @@ -7,7 +7,7 @@ ?sep:[< `Dot | `Slash Slash ] -> ?dimension_names:string option list -> ?attributes:Yojson.Safe.t -> - ?codecs:Codecs.chain -> + ?codecs:Codecs.codec_chain -> shape:int array -> chunks:int array -> ('a, 'b) Stdlib.Bigarray.kind -> diff --git a/zarr/Zarr/Storage/module-type-MAKER/index.html b/zarr/Zarr/Storage/module-type-MAKER/index.html index 775b7562..0f12faaf 100644 --- a/zarr/Zarr/Storage/module-type-MAKER/index.html +++ b/zarr/Zarr/Storage/module-type-MAKER/index.html @@ -7,7 +7,7 @@ ?sep:[< `Dot | `Slash Slash ] -> ?dimension_names:string option list -> ?attributes:Yojson.Safe.t -> - ?codecs:Codecs.chain -> + ?codecs:Codecs.codec_chain -> shape:int array -> chunks:int array -> ('a, 'b) Stdlib.Bigarray.kind -> diff --git a/zarr/Zarr/Storage/module-type-S/index.html b/zarr/Zarr/Storage/module-type-S/index.html index e7a0cef9..c79d51e4 100644 --- a/zarr/Zarr/Storage/module-type-S/index.html +++ b/zarr/Zarr/Storage/module-type-S/index.html @@ -7,7 +7,7 @@ ?sep:[< `Dot | `Slash Slash ] -> ?dimension_names:string option list -> ?attributes:Yojson.Safe.t -> - ?codecs:Codecs.chain -> + ?codecs:Codecs.codec_chain -> shape:int array -> chunks:int array -> ('a, 'b) Stdlib.Bigarray.kind ->