Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Wiki
Code
Merge requests
35
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Merge requests
!673
wf-inversion
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
wf-inversion
adrianciu/ebrains-spack-builds:EBR-142-wf-inversion
into
master
Overview
0
Commits
2
Pipelines
0
Changes
3
Open
Adrian Ciu
requested to merge
adrianciu/ebrains-spack-builds:EBR-142-wf-inversion
into
master
3 months ago
Overview
0
Commits
2
Pipelines
0
Changes
3
Expand
Workflow for the followings spack packages:
py-numpyro
py-arviz
py-graphviz
py-vbjax
Edited
2 months ago
by
Adrian Ciu
2
0
1
Merge request reports
Compare
master
version 16
fa9ec05f
6 days ago
version 15
fa9ec05f
1 month ago
version 14
a76d1889
2 months ago
version 13
a4a3c5f8
2 months ago
version 12
605c59a4
2 months ago
version 11
605c59a4
2 months ago
version 10
39027575
2 months ago
version 9
ebc33c90
2 months ago
version 8
3b2e30af
3 months ago
version 7
3b2e30af
3 months ago
version 6
3b2e30af
3 months ago
version 5
3b2e30af
3 months ago
version 4
3b2e30af
3 months ago
version 3
3b2e30af
3 months ago
version 2
6e796df3
3 months ago
version 1
d6d69689
3 months ago
master (HEAD)
and
latest version
latest version
fa9ec05f
2 commits,
1 day ago
version 16
fa9ec05f
2 commits,
6 days ago
version 15
fa9ec05f
2 commits,
1 month ago
version 14
a76d1889
2 commits,
2 months ago
version 13
a4a3c5f8
2 commits,
2 months ago
version 12
605c59a4
2 commits,
2 months ago
version 11
605c59a4
1 commit,
2 months ago
version 10
39027575
2 commits,
2 months ago
version 9
ebc33c90
1 commit,
2 months ago
version 8
3b2e30af
1 commit,
3 months ago
version 7
3b2e30af
1 commit,
3 months ago
version 6
3b2e30af
1 commit,
3 months ago
version 5
3b2e30af
1 commit,
3 months ago
version 4
3b2e30af
1 commit,
3 months ago
version 3
3b2e30af
1 commit,
3 months ago
version 2
6e796df3
1 commit,
3 months ago
version 1
d6d69689
1 commit,
3 months ago
3 files
+
97
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
packages/py-jaxopt/package.py
0 → 100644
+
30
−
0
Options
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from
spack.package
import
*
class
PyJaxopt
(
PythonPackage
):
"""
Hardware accelerated, batchable and differentiable optimizers in JAX.
"""
homepage
=
"
https://github.com/google/jaxopt
"
pypi
=
"
jaxopt/jaxopt-0.8.5.tar.gz
"
maintainers
=
[
'
jaxopt
'
]
version
(
'
0.8.5
'
,
sha256
=
'
ff221d1a86908ec759eb1e219ee1d12bf208a70707e961bf7401076fe7cf4d5e
'
)
version
(
'
0.8.4
'
,
sha256
=
'
420878c37650c8c0752f8a75b20afb0ddc52bc12b63667910131057295b0e6ab
'
)
version
(
'
0.8.3
'
,
sha256
=
'
4be2f82798393682529c9ca5046e5397ac6c8657b8acb6bf275e773b28df15b6
'
)
version
(
'
0.8.2
'
,
sha256
=
'
5dd94a635ae52899d4a5063ec88b4c1ca9f04d921b888f73211a444c937b7cfa
'
)
version
(
'
0.8.1
'
,
sha256
=
'
af6ef03d11d72dcf51b606d3046ebec8be0227f5d4e653cd1768cc8dab12cabb
'
)
depends_on
(
'
python@3.7:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-setuptools
'
,
type
=
'
build
'
)
depends_on
(
'
py-numpy@1.18.4:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-scipy@1.0.0:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-jax@0.2.18:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-jaxlib@0.1.69:
'
,
type
=
(
'
build
'
,
'
run
'
))