From 7c16e2a938a663993355b3256b15483378c11259 Mon Sep 17 00:00:00 2001 From: Lukasz Stafiniak Date: Tue, 17 Sep 2024 15:02:38 +0200 Subject: [PATCH] Opam linter driven fix: missing maintainer email --- arrayjit.opam | 2 +- dune-project | 2 +- neural_nets_lib.opam | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arrayjit.opam b/arrayjit.opam index e48e4303..5c16f823 100644 --- a/arrayjit.opam +++ b/arrayjit.opam @@ -5,7 +5,7 @@ synopsis: "An array language compiler with multiple backends (CPU, CUDA), staged compilation" description: "The optimizing compiler sub-package of OCANNL. Use neural_nets_lib instead to also get: nice syntax, shape inference, backpropagation, optimizers." -maintainer: ["Lukasz Stafiniak"] +maintainer: ["Lukasz Stafiniak "] authors: ["Lukasz Stafiniak"] license: "BSD-2-Clause" tags: ["deeplearning" "array" "jit" "CUDA"] diff --git a/dune-project b/dune-project index 8747d4e6..29ebdc3d 100644 --- a/dune-project +++ b/dune-project @@ -13,7 +13,7 @@ (authors "Lukasz Stafiniak") -(maintainers "Lukasz Stafiniak") +(maintainers "Lukasz Stafiniak ") (license "BSD-2-Clause") diff --git a/neural_nets_lib.opam b/neural_nets_lib.opam index 9bd7f934..5c028508 100644 --- a/neural_nets_lib.opam +++ b/neural_nets_lib.opam @@ -5,7 +5,7 @@ synopsis: "A from-scratch Deep Learning framework with an optimizing compiler, shape inference, concise syntax" description: "OCaml Compiles Algorithms for Neural Networks Learning is a compiled Deep Learning framework that puts emphasis on low-level backends (like tinygrad), shape inference, concise notation (ab)using PPX." -maintainer: ["Lukasz Stafiniak"] +maintainer: ["Lukasz Stafiniak "] authors: ["Lukasz Stafiniak"] license: "BSD-2-Clause" tags: ["deeplearning" "tensor" "backprop" "jit" "gccjit" "CUDA"]