Skip to content

Commit

Permalink
[Fea] add gaussian integration (PaddlePaddle#683)
Browse files Browse the repository at this point in the history
* add gaussian_integrate

* add unitest for gaussian_integrate
  • Loading branch information
HydrogenSulfate authored Dec 11, 2023
1 parent ca94736 commit 0df2ad1
Show file tree
Hide file tree
Showing 5 changed files with 381 additions and 78 deletions.
3 changes: 2 additions & 1 deletion docs/zh/api/experimental.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@

**Experimental 模块下均为实验性 API,其签名和位置在未来可能发生变动**

::: ppsci.experimental.math
::: ppsci.experimental.math_module
handler: python
options:
members:
- bessel_i0
- bessel_i0e
- bessel_i1
- bessel_i1e
- gaussian_integrate
show_root_heading: true
heading_level: 3
10 changes: 6 additions & 4 deletions ppsci/experimental/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,16 @@
This module is for experimental API
"""

from ppsci.experimental.math import bessel_i0
from ppsci.experimental.math import bessel_i0e
from ppsci.experimental.math import bessel_i1
from ppsci.experimental.math import bessel_i1e
from ppsci.experimental.math_module import bessel_i0
from ppsci.experimental.math_module import bessel_i0e
from ppsci.experimental.math_module import bessel_i1
from ppsci.experimental.math_module import bessel_i1e
from ppsci.experimental.math_module import gaussian_integrate

__all__ = [
"bessel_i0",
"bessel_i0e",
"bessel_i1",
"bessel_i1e",
"gaussian_integrate",
]
73 changes: 0 additions & 73 deletions ppsci/experimental/math.py

This file was deleted.

Loading

0 comments on commit 0df2ad1

Please sign in to comment.