Revision 31791ac52ffe207ae7b74548f8cfe60c103bf492 authored by Steven Johnson on 10 April 2023, 18:20:15 UTC, committed by Steven Johnson on 10 April 2023, 18:20:15 UTC
This is 100% stylistic, but it's bothered me for years: the `device_copy` struct doesn't follow the usual Halide style for struct types, so every time I see it, I want to read it as a function name. Let's rename it to DeviceCopy to help keep me sane?

Also, drive-by change of #define to constexpr since we have C++17 in runtime.
1 parent d031408
Raw File
pyproject.toml
[build-system]
requires = [
  "setuptools>=43",
  "wheel",
  "scikit-build",
  "pybind11==2.6.2",
  "cmake>=3.22",
  "ninja; platform_system!='Windows'"
]
build-backend = "setuptools.build_meta"
back to top