https://github.com/halide/Halide
Raw File
Tip revision: 7d7dca76d0674d31d12c1ad4ea31ea0fb32b2fd4 authored by Steven Johnson on 14 September 2022, 17:42:01 UTC
Revert "[HVX] Simplify constant factor before distributing (#7009)"
Tip revision: 7d7dca7
HalideRuntimeQurt.h
#ifndef HALIDE_HALIDERUNTIMEQURT_H
#define HALIDE_HALIDERUNTIMEQURT_H

// Don't include HalideRuntime.h if the contents of it were already pasted into a generated header above this one
#ifndef HALIDE_HALIDERUNTIME_H

#include "HalideRuntime.h"

#endif

#ifdef __cplusplus
extern "C" {
#endif

/** \file
 *  Routines specific to the Halide QuRT runtime.
 */

/** Lock and unlock an HVX context.
 *  A successful call to hvx_lock must be followed by a call to
 *  hvx_unlock. */
// @{
extern int halide_qurt_hvx_lock(void *user_context);
extern int halide_qurt_hvx_unlock(void *user_context);
extern void halide_qurt_hvx_unlock_as_destructor(void *user_context, void * /*obj*/);
// @}

#ifdef __cplusplus
}  // End extern "C"
#endif

#endif  // HALIDE_HALIDERUNTIMEQURT_H
back to top