-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support other types for expressions and dynamic appliers (#7)
* Use pytest instead of unittest * Create a wrapper python module * remove SingletonOrTuple conversion traits * update to egg 0.9.0 * slightly rewrite simple test * reorganize codebase * Change to published version of egg * Update tests path in makefile * Remove unused imports * Fix test paths again * Remove use of private attribute * Install custom ibis version for testing * Rename back to snake_egg and update typings * Fix makefile back to snake_egg from egg * Fix stubtest make * Update type stubs to be picked up * Allow only one arg to extract * Update makefile filename * Update typings for dynamic applier * Increase Python version in CI * Fix tests * Remove ibis test and add other simple test * Fix callable type signature * remove positional only arg for greater python support Co-authored-by: Krisztián Szűcs <[email protected]>
- Loading branch information
1 parent
6c4b9f6
commit d6a008c
Showing
18 changed files
with
1,045 additions
and
679 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,175 @@ | ||
/target | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
debug/ | ||
target/ | ||
|
||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries | ||
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html | ||
Cargo.lock | ||
venv | ||
|
||
.vscode | ||
snake_egg.html | ||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
|
||
# MSVC Windows builds of rustc generate these, which store debugging information | ||
*.pdb | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.nox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
*.py,cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
cover/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
local_settings.py | ||
db.sqlite3 | ||
db.sqlite3-journal | ||
|
||
# Flask stuff: | ||
instance/ | ||
.webassets-cache | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
.pybuilder/ | ||
target/ | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
|
||
# IPython | ||
profile_default/ | ||
ipython_config.py | ||
|
||
# pyenv | ||
# For a library or package, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
# .python-version | ||
|
||
# pipenv | ||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. | ||
# However, in case of collaboration, if having platform-specific dependencies or dependencies | ||
# having no cross-platform support, pipenv may install dependencies that don't work, or not | ||
# install all needed dependencies. | ||
#Pipfile.lock | ||
|
||
# poetry | ||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. | ||
# This is especially recommended for binary packages to ensure reproducibility, and is more | ||
# commonly ignored for libraries. | ||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control | ||
#poetry.lock | ||
|
||
# pdm | ||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. | ||
#pdm.lock | ||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it | ||
# in version control. | ||
# https://pdm.fming.dev/#use-with-ide | ||
.pdm.toml | ||
|
||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm | ||
__pypackages__/ | ||
|
||
# Celery stuff | ||
celerybeat-schedule | ||
celerybeat.pid | ||
|
||
# SageMath parsed files | ||
*.sage.py | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
.spyproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# mkdocs documentation | ||
/site | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# pytype static type analyzer | ||
.pytype/ | ||
|
||
# Cython debug symbols | ||
cython_debug/ | ||
|
||
# PyCharm | ||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can | ||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore | ||
# and can be added to the global gitignore or merged into this file. For a more nuclear | ||
# option (not recommended) you can uncomment the following to ignore the entire idea folder. | ||
#.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
[project] | ||
name = "snake-egg" | ||
|
||
[build-system] | ||
requires = ["maturin>=0.11,<0.12"] | ||
build-backend = "maturin" | ||
dependencies = ["typing-extensions"] | ||
|
||
[project] | ||
name = "snake-egg" | ||
|
||
[tool.isort] | ||
profile = "black" | ||
|
||
[tool.maturin] | ||
sdist-include = ["Cargo.lock"] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"mypy" | ||
] | ||
[tool.mypy] | ||
ignore_missing_imports = false | ||
ignore_missing_imports = true | ||
warn_redundant_casts = true | ||
check_untyped_defs = true | ||
strict_equality = true | ||
warn_unused_configs = true | ||
warn_unused_configs = true | ||
enable_recursive_aliases = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from ._internal import PyEGraph # type: ignore | ||
from ._internal import vars # type: ignore | ||
from ._internal import PyId as Id # type: ignore | ||
from ._internal import PyPattern as Pattern # type: ignore | ||
from ._internal import PyRewrite as Rewrite # type: ignore | ||
from ._internal import PyVar as Var # type: ignore | ||
|
||
|
||
class EGraph(PyEGraph): | ||
def extract(self, expr): | ||
result = super().extract(expr) | ||
if len(result) == 1: | ||
return result[0] | ||
else: | ||
return result |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# This is a reimplementation of simple.rs from the Rust egg repository | ||
|
||
from dataclasses import dataclass | ||
from typing import Any | ||
|
||
from snake_egg import EGraph, Rewrite, Var, vars | ||
|
||
|
||
# Operations | ||
@dataclass(frozen=True) | ||
class Add: | ||
x: Any | ||
y: Any | ||
|
||
@property | ||
def __match_args__(self): | ||
return (self.x, self.y) | ||
|
||
|
||
@dataclass(frozen=True) | ||
class Mul: | ||
x: Any | ||
y: Any | ||
|
||
@property | ||
def __match_args__(self): | ||
return (self.x, self.y) | ||
|
||
|
||
# Rewrite rules | ||
a, b = vars("a b") # type: ignore | ||
|
||
rules = [ | ||
Rewrite(Add(a, b), Add(b, a), name="commute-add"), | ||
Rewrite(Mul(a, b), Mul(b, a), name="commute-mul"), | ||
Rewrite(Add(a, 0), a, name="add-0"), | ||
Rewrite(Mul(a, 0), 0, name="mul-0"), | ||
Rewrite(Mul(a, 1), a, name="mul-1"), | ||
] | ||
|
||
|
||
def simplify(expr, iters=7): | ||
egraph = EGraph() | ||
egraph.add(expr) | ||
egraph.run(rules, iters) | ||
best = egraph.extract(expr) | ||
return best | ||
|
||
|
||
def test_simple_1(): | ||
assert simplify(Mul(0, 42)) == 0 | ||
|
||
|
||
def test_simple_2(): | ||
foo = "foo" | ||
assert simplify(Add(0, Mul(1, foo))) == foo | ||
|
||
|
||
def test_simple_3(): | ||
assert simplify(Mul(2, Mul(1, "foo"))) == Mul(2, "foo") |
Oops, something went wrong.