https://github.com/nod-ai/pandas-mlir
Bridging Pandas and MLIR ecosystems
https://github.com/nod-ai/pandas-mlir
compilers mlir pandas pandas-dataframe python
Last synced: 2 months ago
JSON representation
Bridging Pandas and MLIR ecosystems
- Host: GitHub
- URL: https://github.com/nod-ai/pandas-mlir
- Owner: nod-ai
- License: bsd-3-clause
- Created: 2022-02-01T18:15:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-17T21:47:44.000Z (over 1 year ago)
- Last Synced: 2025-03-23T23:43:13.267Z (3 months ago)
- Topics: compilers, mlir, pandas, pandas-dataframe, python
- Language: C++
- Homepage:
- Size: 57.6 KB
- Stars: 17
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pandas-mlir
# Requirements
Requires Python 3.9+. Install python requirements using pip.
```shell
$ pip install -r requirements.txt
```Also requires ccache.
On Linux, you can install using apt.
```shell
sudo apt install ccache
```On MacOS, you can install using brew.
```shell
brew install ccache
```# Build
```shell
$ ./cmake_configure.sh# Build everything
$ cmake --build build# Run unit tests
$ cmake --build build --target check-pandas-mlir# Convert Pandas Python -> Pandas MLIR
$ cd python/test; pytest -s
```# More information
See the wiki for more information on the project.