Revision fe9f0b78cab64753d05b5b1cde3153414d1354e1 authored by Derek Gerstmann on 28 August 2023, 18:13:53 UTC, committed by GitHub on 28 August 2023, 18:13:53 UTC
* Add serialization support to Generator interface

* Clang format pass

* Make target required when emitting a serialized pipeline (since schedule
may be target dependent).
Apply auto-scheduler before serialization so that schedules can be
serialized.

* Fix enum ordering for hlpipe.
Fix hlpipe comments.
Add missing hlpipe enum to pyenums.

* Remove unused Serialization build_mode

* Fix formatting

* Remove unused serializable flag.
Remove redundant cpp_stub check.
Fix comments.

* Safeguard emit_hlpipe calls with #ifdef WITH_SERIALIZATION

---------

Co-authored-by: Derek Gerstmann <dgerstmann@adobe.com>
Co-authored-by: Steven Johnson <srj@google.com>
1 parent 79d2be3
Raw File
pyproject.toml
[build-system]
requires = [
  "setuptools>=43",
  "wheel",
  "scikit-build",
  "pybind11==2.10.4",
  "cmake>=3.22",
  "ninja; platform_system!='Windows'"
]
build-backend = "setuptools.build_meta"
back to top