├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── python-poetry-env │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── draft_release.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── codecov.yml ├── docs ├── changelog.md ├── contributing.md ├── conv.md ├── core.md ├── discretization.md ├── geometry.md ├── index.md ├── javascripts │ └── katex.js ├── macros.py ├── mods.md ├── notebooks │ ├── api_discretization.ipynb │ ├── example_1_paper.ipynb │ ├── helmholtz_pinn.ipynb │ ├── pinn_burgers.ipynb │ ├── quickstart.ipynb │ └── simulate_helmholtz_equation.ipynb ├── operators │ ├── differential.md │ ├── functions.md │ └── linear_algebra.md ├── stylesheets │ └── extra.css └── util.md ├── jaxdf ├── __init__.py ├── conv.py ├── core.py ├── discretization.py ├── geometry.py ├── logger.py ├── mods.py ├── operators │ ├── __init__.py │ ├── differential.py │ ├── dummy.py │ ├── functions.py │ ├── linear_algebra.py │ └── magic.py ├── signatures.py └── util.py ├── mkdocs.yml ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── make_data ├── README.md ├── is_feasible_spectral.m ├── num_dims.m ├── spectral_gradient_data.m └── spectral_laplacian_data.m ├── test_available_operators.py ├── test_continuous.py ├── test_conv.py ├── test_core.py ├── test_data ├── gradient_FourierSeries_sz_100_ord_1_dims_2_id_13.json ├── gradient_FourierSeries_sz_100_ord_1_dims_2_id_14.json ├── gradient_FourierSeries_sz_100_ord_1_dims_2_id_15.json ├── gradient_FourierSeries_sz_100_ord_1_dims_2_id_38.json ├── gradient_FourierSeries_sz_100_ord_1_dims_2_id_39.json ├── gradient_FourierSeries_sz_100_ord_1_dims_2_id_40.json ├── gradient_FourierSeries_sz_10_ord_1_dims_1_id_1.json ├── gradient_FourierSeries_sz_10_ord_1_dims_1_id_2.json ├── gradient_FourierSeries_sz_10_ord_1_dims_1_id_26.json ├── gradient_FourierSeries_sz_10_ord_1_dims_1_id_27.json ├── gradient_FourierSeries_sz_110_ord_1_dims_2_id_18.json ├── gradient_FourierSeries_sz_110_ord_1_dims_2_id_19.json ├── gradient_FourierSeries_sz_110_ord_1_dims_2_id_20.json ├── gradient_FourierSeries_sz_110_ord_1_dims_2_id_43.json ├── gradient_FourierSeries_sz_110_ord_1_dims_2_id_44.json ├── gradient_FourierSeries_sz_110_ord_1_dims_2_id_45.json ├── gradient_FourierSeries_sz_11_ord_1_dims_1_id_31.json ├── gradient_FourierSeries_sz_11_ord_1_dims_1_id_32.json ├── gradient_FourierSeries_sz_11_ord_1_dims_1_id_6.json ├── gradient_FourierSeries_sz_11_ord_1_dims_1_id_7.json ├── gradient_FourierSeries_sz_121_ord_1_dims_2_id_23.json ├── gradient_FourierSeries_sz_121_ord_1_dims_2_id_24.json ├── gradient_FourierSeries_sz_121_ord_1_dims_2_id_25.json ├── gradient_FourierSeries_sz_121_ord_1_dims_2_id_48.json ├── gradient_FourierSeries_sz_121_ord_1_dims_2_id_49.json ├── gradient_FourierSeries_sz_121_ord_1_dims_2_id_50.json ├── laplacian_FourierSeries_sz_100_dims_2_id_18.json ├── laplacian_FourierSeries_sz_100_dims_2_id_19.json ├── laplacian_FourierSeries_sz_100_dims_2_id_20.json ├── laplacian_FourierSeries_sz_100_dims_2_id_43.json ├── laplacian_FourierSeries_sz_100_dims_2_id_44.json ├── laplacian_FourierSeries_sz_100_dims_2_id_45.json ├── laplacian_FourierSeries_sz_10_dims_1_id_31.json ├── laplacian_FourierSeries_sz_10_dims_1_id_32.json ├── laplacian_FourierSeries_sz_10_dims_1_id_6.json ├── laplacian_FourierSeries_sz_10_dims_1_id_7.json ├── laplacian_FourierSeries_sz_110_dims_2_id_23.json ├── laplacian_FourierSeries_sz_110_dims_2_id_24.json ├── laplacian_FourierSeries_sz_110_dims_2_id_25.json ├── laplacian_FourierSeries_sz_110_dims_2_id_48.json ├── laplacian_FourierSeries_sz_110_dims_2_id_49.json ├── laplacian_FourierSeries_sz_110_dims_2_id_50.json ├── laplacian_FourierSeries_sz_11_dims_1_id_11.json ├── laplacian_FourierSeries_sz_11_dims_1_id_12.json ├── laplacian_FourierSeries_sz_11_dims_1_id_36.json ├── laplacian_FourierSeries_sz_11_dims_1_id_37.json ├── laplacian_FourierSeries_sz_121_dims_2_id_28.json ├── laplacian_FourierSeries_sz_121_dims_2_id_29.json ├── laplacian_FourierSeries_sz_121_dims_2_id_30.json ├── laplacian_FourierSeries_sz_121_dims_2_id_53.json ├── laplacian_FourierSeries_sz_121_dims_2_id_54.json ├── laplacian_FourierSeries_sz_121_dims_2_id_55.json ├── laplacian_FourierSeries_sz_50_dims_1_id_1.json └── laplacian_FourierSeries_sz_50_dims_1_id_2.json ├── test_deprecations.py ├── test_differential.py ├── test_exceptions.py ├── test_fourierseries.py ├── test_functions.py ├── test_general.py ├── test_gradient_accuracy.py ├── test_laplacian_accuracy.py ├── test_linear.py ├── test_linear_algebra.py ├── test_magic.py ├── test_mods.py ├── test_ongrid.py ├── test_parameters.py ├── test_unimplemented_operators.py └── test_util.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/python-poetry-env/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/.github/actions/python-poetry-env/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/draft_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/.github/workflows/draft_release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | --8<-- "CHANGELOG.md" 2 | -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | --8<-- "CONTRIBUTING.md" 2 | -------------------------------------------------------------------------------- /docs/conv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/conv.md -------------------------------------------------------------------------------- /docs/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/core.md -------------------------------------------------------------------------------- /docs/discretization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/discretization.md -------------------------------------------------------------------------------- /docs/geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/geometry.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/javascripts/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/javascripts/katex.js -------------------------------------------------------------------------------- /docs/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/macros.py -------------------------------------------------------------------------------- /docs/mods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/mods.md -------------------------------------------------------------------------------- /docs/notebooks/api_discretization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/notebooks/api_discretization.ipynb -------------------------------------------------------------------------------- /docs/notebooks/example_1_paper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/notebooks/example_1_paper.ipynb -------------------------------------------------------------------------------- /docs/notebooks/helmholtz_pinn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/notebooks/helmholtz_pinn.ipynb -------------------------------------------------------------------------------- /docs/notebooks/pinn_burgers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/notebooks/pinn_burgers.ipynb -------------------------------------------------------------------------------- /docs/notebooks/quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/notebooks/quickstart.ipynb -------------------------------------------------------------------------------- /docs/notebooks/simulate_helmholtz_equation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/notebooks/simulate_helmholtz_equation.ipynb -------------------------------------------------------------------------------- /docs/operators/differential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/operators/differential.md -------------------------------------------------------------------------------- /docs/operators/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/operators/functions.md -------------------------------------------------------------------------------- /docs/operators/linear_algebra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/operators/linear_algebra.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/docs/util.md -------------------------------------------------------------------------------- /jaxdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/__init__.py -------------------------------------------------------------------------------- /jaxdf/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/conv.py -------------------------------------------------------------------------------- /jaxdf/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/core.py -------------------------------------------------------------------------------- /jaxdf/discretization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/discretization.py -------------------------------------------------------------------------------- /jaxdf/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/geometry.py -------------------------------------------------------------------------------- /jaxdf/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/logger.py -------------------------------------------------------------------------------- /jaxdf/mods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/mods.py -------------------------------------------------------------------------------- /jaxdf/operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/operators/__init__.py -------------------------------------------------------------------------------- /jaxdf/operators/differential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/operators/differential.py -------------------------------------------------------------------------------- /jaxdf/operators/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/operators/dummy.py -------------------------------------------------------------------------------- /jaxdf/operators/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/operators/functions.py -------------------------------------------------------------------------------- /jaxdf/operators/linear_algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/operators/linear_algebra.py -------------------------------------------------------------------------------- /jaxdf/operators/magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/operators/magic.py -------------------------------------------------------------------------------- /jaxdf/signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/signatures.py -------------------------------------------------------------------------------- /jaxdf/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/jaxdf/util.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/make_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/make_data/README.md -------------------------------------------------------------------------------- /tests/make_data/is_feasible_spectral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/make_data/is_feasible_spectral.m -------------------------------------------------------------------------------- /tests/make_data/num_dims.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/make_data/num_dims.m -------------------------------------------------------------------------------- /tests/make_data/spectral_gradient_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/make_data/spectral_gradient_data.m -------------------------------------------------------------------------------- /tests/make_data/spectral_laplacian_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/make_data/spectral_laplacian_data.m -------------------------------------------------------------------------------- /tests/test_available_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_available_operators.py -------------------------------------------------------------------------------- /tests/test_continuous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_continuous.py -------------------------------------------------------------------------------- /tests/test_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_conv.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_13.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_14.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_15.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_38.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_39.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_100_ord_1_dims_2_id_40.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_10_ord_1_dims_1_id_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_10_ord_1_dims_1_id_1.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_10_ord_1_dims_1_id_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_10_ord_1_dims_1_id_2.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_10_ord_1_dims_1_id_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_10_ord_1_dims_1_id_26.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_10_ord_1_dims_1_id_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_10_ord_1_dims_1_id_27.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_18.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_19.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_20.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_43.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_44.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_110_ord_1_dims_2_id_45.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_11_ord_1_dims_1_id_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_11_ord_1_dims_1_id_31.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_11_ord_1_dims_1_id_32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_11_ord_1_dims_1_id_32.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_11_ord_1_dims_1_id_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_11_ord_1_dims_1_id_6.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_11_ord_1_dims_1_id_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_11_ord_1_dims_1_id_7.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_23.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_24.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_25.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_48.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_49.json -------------------------------------------------------------------------------- /tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/gradient_FourierSeries_sz_121_ord_1_dims_2_id_50.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_18.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_19.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_20.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_43.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_44.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_100_dims_2_id_45.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_10_dims_1_id_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_10_dims_1_id_31.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_10_dims_1_id_32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_10_dims_1_id_32.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_10_dims_1_id_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_10_dims_1_id_6.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_10_dims_1_id_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_10_dims_1_id_7.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_23.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_24.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_25.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_48.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_49.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_110_dims_2_id_50.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_11_dims_1_id_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_11_dims_1_id_11.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_11_dims_1_id_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_11_dims_1_id_12.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_11_dims_1_id_36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_11_dims_1_id_36.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_11_dims_1_id_37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_11_dims_1_id_37.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_28.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_29.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_30.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_53.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_54.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_121_dims_2_id_55.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_50_dims_1_id_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_50_dims_1_id_1.json -------------------------------------------------------------------------------- /tests/test_data/laplacian_FourierSeries_sz_50_dims_1_id_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_data/laplacian_FourierSeries_sz_50_dims_1_id_2.json -------------------------------------------------------------------------------- /tests/test_deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_deprecations.py -------------------------------------------------------------------------------- /tests/test_differential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_differential.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_fourierseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_fourierseries.py -------------------------------------------------------------------------------- /tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_functions.py -------------------------------------------------------------------------------- /tests/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_general.py -------------------------------------------------------------------------------- /tests/test_gradient_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_gradient_accuracy.py -------------------------------------------------------------------------------- /tests/test_laplacian_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_laplacian_accuracy.py -------------------------------------------------------------------------------- /tests/test_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_linear.py -------------------------------------------------------------------------------- /tests/test_linear_algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_linear_algebra.py -------------------------------------------------------------------------------- /tests/test_magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_magic.py -------------------------------------------------------------------------------- /tests/test_mods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_mods.py -------------------------------------------------------------------------------- /tests/test_ongrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_ongrid.py -------------------------------------------------------------------------------- /tests/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_parameters.py -------------------------------------------------------------------------------- /tests/test_unimplemented_operators.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucl-bug/jaxdf/HEAD/tests/test_util.py --------------------------------------------------------------------------------