Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix upper bounds in neural_nets_lib to prepare for arrayjit.0.4.1 #26576

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/neural_nets_lib/neural_nets_lib.0.3.3/opam
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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 <[email protected]>"]
authors: ["Lukasz Stafiniak"]
license: "BSD-2-Clause"
tags: ["deeplearning" "tensor" "backprop" "jit" "gccjit" "CUDA"]
Expand All @@ -16,7 +16,7 @@ depends: [
"dune" {>= "3.11"}
"base"
"core"
"arrayjit"
"arrayjit" {= "0.3.3"}
"printbox"
"printbox-text"
"ocannl_npy"
Expand Down
4 changes: 2 additions & 2 deletions packages/neural_nets_lib/neural_nets_lib.0.4.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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 <[email protected]>"]
authors: ["Lukasz Stafiniak"]
license: "BSD-2-Clause"
tags: ["deeplearning" "tensor" "backprop" "jit" "gccjit" "CUDA"]
Expand All @@ -16,7 +16,7 @@ depends: [
"dune" {>= "3.11"}
"base"
"core"
"arrayjit"
"arrayjit" {= "0.4.0"}
"printbox"
"printbox-text"
"ocannl_npy"
Expand Down
Loading