package nx

  1. Overview
  2. Docs

Source file nx_txt.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
(*---------------------------------------------------------------------------
  Copyright (c) 2026 The Raven authors. All rights reserved.
  SPDX-License-Identifier: ISC
  ---------------------------------------------------------------------------*)

type error = Error.t =
  | Io_error of string
  | Format_error of string
  | Unsupported_dtype
  | Unsupported_shape
  | Missing_entry of string
  | Other of string

let strf = Printf.sprintf

(* Errors *)

let err_invalid_literal dtype token =
  Format_error (strf "invalid %s literal: %S" dtype (String.trim token))

let err_out_of_range dtype token =
  Format_error
    (strf "value %S is out of range for %s" (String.trim token) dtype)

let err_skiprows_negative = Format_error "skiprows must be non-negative"
let err_max_rows_nonpos = Format_error "max_rows must be strictly positive"
let err_no_data = Format_error "no data found"
let err_inconsistent_cols = Format_error "inconsistent number of columns"

(* Parsing helpers *)

let try_parse f s = try Some (f s) with _ -> None
let float_of_string_opt = try_parse float_of_string
let int_of_string_opt = try_parse int_of_string
let int32_of_string_opt = try_parse Int32.of_string
let int64_of_string_opt = try_parse Int64.of_string

let parse_float dtype token =
  match float_of_string_opt token with
  | Some v -> Ok v
  | None -> Error (err_invalid_literal dtype token)

let parse_bool token =
  let s = String.lowercase_ascii (String.trim token) in
  match s with
  | "true" | "t" | "yes" | "y" -> Ok true
  | "false" | "f" | "no" | "n" -> Ok false
  | _ -> (
      match int_of_string_opt s with
      | Some 0 -> Ok false
      | Some _ -> Ok true
      | None -> (
          match float_of_string_opt s with
          | Some f -> Ok (abs_float f > 0.0)
          | None -> Error (err_invalid_literal "bool" token)))

let parse_int_with_bounds dtype token ~min ~max =
  match int_of_string_opt token with
  | Some v when v >= min && v <= max -> Ok v
  | Some _ -> Error (err_out_of_range dtype token)
  | None -> Error (err_invalid_literal dtype token)

(*---------------------------------------------------------------------------
  Dtype-specific spec
  ---------------------------------------------------------------------------*)

module type SPEC = sig
  type elt
  type kind

  val kind : (elt, kind) Nx_buffer.kind
  val print : out_channel -> elt -> unit
  val parse : string -> (elt, error) result
end

let print_float oc v = Printf.fprintf oc "%.18e" v
let print_int oc v = output_string oc (string_of_int v)
let print_int32 oc v = output_string oc (Int32.to_string v)
let print_int64 oc v = output_string oc (Int64.to_string v)
let print_bool oc v = output_string oc (if v then "1" else "0")

let parse_i32 name token =
  match int32_of_string_opt token with
  | Some v -> Ok v
  | None -> Error (err_invalid_literal name token)

let parse_i64 name token =
  match int64_of_string_opt token with
  | Some v -> Ok v
  | None -> Error (err_invalid_literal name token)

(* Each GADT arm must be inlined so the type equalities are visible. *)

let spec_of_dtype (type a b) (dtype : (a, b) Nx.dtype) :
    (module SPEC with type elt = a and type kind = b) option =
  let name = Nx_core.Dtype.to_string dtype in
  let kind = Nx_core.Dtype.to_buffer_kind dtype in
  let open Nx_core.Dtype in
  match dtype with
  | Float16 ->
      Some
        (module struct
          type elt = float
          type kind = b

          let kind = kind
          let print = print_float
          let parse t = parse_float name t
        end)
  | Float32 ->
      Some
        (module struct
          type elt = float
          type kind = b

          let kind = kind
          let print = print_float
          let parse t = parse_float name t
        end)
  | Float64 ->
      Some
        (module struct
          type elt = float
          type kind = b

          let kind = kind
          let print = print_float
          let parse t = parse_float name t
        end)
  | BFloat16 ->
      Some
        (module struct
          type elt = float
          type kind = b

          let kind = kind
          let print = print_float
          let parse t = parse_float name t
        end)
  | Int8 ->
      Some
        (module struct
          type elt = int
          type kind = b

          let kind = kind
          let print = print_int
          let parse t = parse_int_with_bounds name t ~min:(-128) ~max:127
        end)
  | UInt8 ->
      Some
        (module struct
          type elt = int
          type kind = b

          let kind = kind
          let print = print_int
          let parse t = parse_int_with_bounds name t ~min:0 ~max:255
        end)
  | Int16 ->
      Some
        (module struct
          type elt = int
          type kind = b

          let kind = kind
          let print = print_int
          let parse t = parse_int_with_bounds name t ~min:(-32768) ~max:32767
        end)
  | UInt16 ->
      Some
        (module struct
          type elt = int
          type kind = b

          let kind = kind
          let print = print_int
          let parse t = parse_int_with_bounds name t ~min:0 ~max:65535
        end)
  | Int32 ->
      Some
        (module struct
          type elt = int32
          type kind = b

          let kind = kind
          let print = print_int32
          let parse t = parse_i32 name t
        end)
  | UInt32 ->
      Some
        (module struct
          type elt = int32
          type kind = b

          let kind = kind
          let print = print_int32
          let parse t = parse_i32 name t
        end)
  | Int64 ->
      Some
        (module struct
          type elt = int64
          type kind = b

          let kind = kind
          let print = print_int64
          let parse t = parse_i64 name t
        end)
  | UInt64 ->
      Some
        (module struct
          type elt = int64
          type kind = b

          let kind = kind
          let print = print_int64
          let parse t = parse_i64 name t
        end)
  | Bool ->
      Some
        (module struct
          type elt = bool
          type kind = b

          let kind = kind
          let print = print_bool
          let parse = parse_bool
        end)
  | _ -> None

(*---------------------------------------------------------------------------
  Text field splitting
  ---------------------------------------------------------------------------*)

let split_fields sep line =
  let s = String.trim line in
  if s = "" then [||]
  else if sep = "" then [| s |]
  else if String.length sep = 1 then
    s
    |> String.split_on_char sep.[0]
    |> List.filter (fun t -> t <> "")
    |> Array.of_list
  else
    let sep_len = String.length sep in
    let len = String.length s in
    let rec loop acc start =
      if start >= len then List.rev acc
      else
        match String.index_from_opt s start sep.[0] with
        | None ->
            let part = String.sub s start (len - start) in
            if part = "" then List.rev acc else List.rev (part :: acc)
        | Some idx ->
            if idx + sep_len <= len && String.sub s idx sep_len = sep then
              let part = String.sub s start (idx - start) in
              let acc = if part = "" then acc else part :: acc in
              loop acc (idx + sep_len)
            else loop acc (idx + 1)
    in
    loop [] 0 |> Array.of_list

(*---------------------------------------------------------------------------
  Save
  ---------------------------------------------------------------------------*)

let write_comment_lines oc comments newline = function
  | None -> ()
  | Some text ->
      List.iter
        (fun line ->
          if comments <> "" then output_string oc comments;
          output_string oc line;
          output_string oc newline)
        (String.split_on_char '\n' text)

let save ?(sep = " ") ?(append = false) ?(newline = "\n") ?header ?footer
    ?(comments = "# ") ~out (type a b) (arr : (a, b) Nx.t) =
  let shape = Nx.shape arr in
  let ndim = Array.length shape in
  if ndim > 2 then Error Unsupported_shape
  else
    match spec_of_dtype (Nx.dtype arr) with
    | None -> Error Unsupported_dtype
    | Some (module S : SPEC with type elt = a and type kind = b) -> (
        let perm = 0o666 in
        let flags =
          if append then [ Open_wronly; Open_creat; Open_append; Open_text ]
          else [ Open_wronly; Open_creat; Open_trunc; Open_text ]
        in
        try
          let oc = open_out_gen flags perm out in
          Fun.protect ~finally:(fun () -> close_out oc) @@ fun () ->
          write_comment_lines oc comments newline header;
          let buf = Nx.to_buffer arr in
          (match ndim with
          | 0 ->
              S.print oc (Nx_buffer.get buf 0);
              output_string oc newline
          | 1 ->
              let n = shape.(0) in
              for j = 0 to n - 1 do
                if j > 0 then output_string oc sep;
                S.print oc (Nx_buffer.unsafe_get buf j)
              done;
              output_string oc newline
          | _ ->
              let rows = shape.(0) and cols = shape.(1) in
              for i = 0 to rows - 1 do
                for j = 0 to cols - 1 do
                  if j > 0 then output_string oc sep;
                  S.print oc (Nx_buffer.unsafe_get buf ((i * cols) + j))
                done;
                output_string oc newline
              done);
          write_comment_lines oc comments newline footer;
          Ok ()
        with
        | Sys_error msg -> Error (Io_error msg)
        | Unix.Unix_error (e, _, _) -> Error (Io_error (Unix.error_message e)))

(*---------------------------------------------------------------------------
  Load
  ---------------------------------------------------------------------------*)

exception Parse_error of error

let load ?(sep = " ") ?(comments = "#") ?(skiprows = 0) ?max_rows (type a b)
    (dtype : (a, b) Nx.dtype) path =
  if skiprows < 0 then Error err_skiprows_negative
  else if match max_rows with Some n -> n <= 0 | None -> false then
    Error err_max_rows_nonpos
  else
    match spec_of_dtype dtype with
    | None -> Error Unsupported_dtype
    | Some (module S : SPEC with type elt = a and type kind = b) -> (
        try
          let ic = open_in path in
          Fun.protect ~finally:(fun () -> close_in ic) @@ fun () ->
          let comment_prefix = String.trim comments in
          let is_comment line =
            if comment_prefix = "" then false
            else
              let t = String.trim line in
              let n = String.length comment_prefix in
              String.length t >= n && String.sub t 0 n = comment_prefix
          in
          (* Read data rows *)
          let rows_rev = ref [] in
          let col_count = ref (-1) in
          let rows_read = ref 0 in
          let rec read skip =
            if match max_rows with Some n -> !rows_read >= n | None -> false
            then ()
            else
              match input_line ic with
              | exception End_of_file -> ()
              | line ->
                  if skip > 0 then read (skip - 1)
                  else if is_comment line then read 0
                  else
                    let fields = split_fields sep line in
                    let n = Array.length fields in
                    if n = 0 then read 0
                    else begin
                      if !col_count < 0 then col_count := n
                      else if n <> !col_count then
                        raise_notrace (Parse_error err_inconsistent_cols);
                      rows_rev := fields :: !rows_rev;
                      incr rows_read;
                      read 0
                    end
          in
          read skiprows;
          if !col_count < 0 then Error err_no_data
          else
            let cols = !col_count in
            let rows = Array.of_list (List.rev !rows_rev) in
            let row_count = Array.length rows in
            let n = row_count * cols in
            let buf = Nx_buffer.create S.kind n in
            for i = 0 to row_count - 1 do
              let row = rows.(i) in
              for j = 0 to cols - 1 do
                match S.parse row.(j) with
                | Ok v -> Nx_buffer.set buf ((i * cols) + j) v
                | Error err -> raise_notrace (Parse_error err)
              done
            done;
            let t = Nx.of_buffer buf ~shape:[| row_count; cols |] in
            let result =
              if row_count = 1 then Nx.reshape [| cols |] t
              else if cols = 1 then Nx.reshape [| row_count |] t
              else t
            in
            Ok result
        with
        | Parse_error err -> Error err
        | Sys_error msg -> Error (Io_error msg)
        | Unix.Unix_error (e, _, _) -> Error (Io_error (Unix.error_message e)))