scientific-computing
Here are 1,113 public repositories matching this topic...
-
Updated
Jul 5, 2022 - Go
C++17 switch
What is the desired addition or change?
provide a cmake c++17 switch
What is the motivation for this feature?
to not depend on the std_backport
If applicable, describe how this feature would be implemented.
change those lines from 11
to 17
conditional to a global define
https://github.com/mlpack/mlpack/blob/de94eee6881e33f1145d9d4a8b5380a5be8af36a/CMakeLists.txt#L
Current implementation of join can be improved by performing the operation in a single call to the backend kernel instead of multiple calls.
This is a fairly easy kernel and may be a good issue for someone getting to know CUDA/ArrayFire internals. Ping me if you want additional info.
-
Updated
Jul 8, 2022 - JavaScript
Currently spack does not support the following packages, all of these packages are installed outside of Spack at Cori, we would like to get support for these packages if possible.
- cpmd https://www.lcrc.anl.gov/for-users/software/available-software/cpmd/
- ComputeCPP https://github.com/codeplaysoftware/computecpp-sdk need to confirm link
- ds9 https://sites.google.com/cfa.harvard.
-
Updated
Jul 3, 2022 - C++
-
Updated
Feb 3, 2022 - Python
-
Updated
Jul 8, 2022 - C++
Add #[track_caller]
to some panicking methods. Slicing methods seem the most prudent (Index/Mut does not apply, sorry).
Needs benchmarks to investigate impact, preferably holistic benchmarks.
-
Updated
Jun 28, 2022 - TypeScript
Now that we've made BLAS support optional on several linfa
crates, we should compare the performance of those crates with and without BLAS. Doing this requires those crates to have a complete set of benchmarks that represent realistic workloads. If BLAS turns out to have no performance improvements, we can even remove BLAS support, improving code quality.
Benchmark status for each crate that
Roadmap
-
Updated
Jun 12, 2022 - Go
-
Updated
Jul 9, 2022 - PHP
-
Updated
Jul 9, 2022 - C++
-
Updated
Jun 24, 2022 - Python
-
Updated
Apr 15, 2022 - Julia
CDash has builds with C++17 enabled, but they are not triggered when github builds opened PR's.
It would be great to have at least one build (gcc or clang) in github wih C++17.
-
Updated
Jul 6, 2022 - OCaml
-
Updated
Jul 8, 2022 - C
-
Updated
Jul 7, 2022 - Python
-
Updated
Jun 9, 2022 - C++
-
Updated
Apr 14, 2022 - Python
-
Updated
Jul 8, 2022 - C++
-
Updated
Jun 7, 2022 - Go
-
Updated
Jul 7, 2022 - Python
-
Updated
Mar 15, 2022 - Python
-
Updated
Jun 22, 2022 - C++
https://llvm.org/docs/NewPassManager.html
The tricky part is to keep our custom command line options working.
Improve this page
Add a description, image, and links to the scientific-computing topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the scientific-computing topic, visit your repo's landing page and select "manage topics."
Describe your issue.
Almost window function docs in
signal.windows
says:https://github.com/scipy/scipy/blob/b22d64791a70975b756f69dbf2a2a2b1080394e1/scipy/signal/windows/_windows.py#L879-L881
However, if we input a negative number, a
ValueError
is thrown, not an empty array.I think the docs should be updated and simple tests should be added.
Reproducing Code Example