-
Notifications
You must be signed in to change notification settings - Fork 3
halide_notes
Chris Nuernberger edited this page Feb 27, 2018
·
10 revisions
-
the organization of computations and data for a given algorithm is constrained by a fundamental tension between parallelism, locality, and redundant computation of shared values
- This is addressed by a systematic model of schedules.
-
Stencil computation - repeated application of kernel across a dataset.
-
I believe the right way to program image processing pipelines is to separate the intrinsic algorithm—what is computed—from the concerns of e�ciently organizing it for machine execution—decisions about storage and the ordering of computation.