Tirth Patel
Tirth Patel
This PR adds basic tests for some python packages that support DLPack. Currently, it only tests CPU arrays. Some observations - Tensorflow doesn't provide a `from_dlpack` function and both Tensorflow...
Alternative to #101 Addresses #34 and #104 Implements the A1 alternative in https://github.com/dmlc/dlpack/issues/104#issuecomment-1090423607 Instead of appending the new fields to the `DLTesor` which changes the layout of `DLManagedTensor` in a...
Closes #34 Supersedes #72 This PR adds version info to the `DLTensor` struct. This is under discussion in #34 (see [this comment](https://github.com/dmlc/dlpack/issues/34#issuecomment-1078962112)). Since this is an ABI break, the ABI...
DLPack has this comment in the header file: ``` /*! * \brief The data pointer points to the allocated data. This will be CUDA * device pointer or cl_mem handle...
- [x] Add ``MarginalGP`` model. - [x] Add tests - [x] Add documentation suite - [x] Add notebook
While debugging #309, I found that sampling fails when `num_chains=1` on the latest tensorflow nightly and tensorflow probability nightly. Here's a minimal reproducible example: ```python >>> import pymc4 as pm...
[`importlib.resorces.open_text`](https://docs.python.org/3/library/importlib.resources.html#importlib.resources.read_text) has been deprecated in Python 3.11 in favor of [`importlib.resources.files`](https://docs.python.org/3/library/importlib.resources.html#importlib.resources.files). `sphinx-design` v0.3.0 doesn't work on Python 3.11: SciPy doc build log ``` (scipy-dev) tirthasheshpatel@tirthap:~/oss/scipy/doc$ time PYTHONPATH=$PWD/../build-install/lib/python3.11/site-packages SPHINXOPTS='-j12' make -e...
Update the readme file to include all new algorithms and thier locations
Implement the expression tree given an expression using a stack. The input looks like `(a+b)*c-(d-e)^(f+g)` Convert it to expression tree using a C Algorithm.