https://github.com/halide/Halide
Raw File
Tip revision: 9b625b4604e0e0f42bdc0abddf5a464e64ac4afe authored by Steven Johnson on 28 January 2019, 21:29:38 UTC
Revert "Bound CSE calls for function inlining "
Tip revision: 9b625b4
metal_objc_platform_dependent.h
#ifndef HALIDE_OBJC_METAL_PLATFORM_DEPENDENT_H
#define HALIDE_OBJC_METAL_PLATFORM_DEPENDENT_H

namespace Halide { namespace Runtime { namespace Internal { namespace Metal {

struct mtl_compute_command_encoder;

void dispatch_threadgroups(mtl_compute_command_encoder *encoder,
                           int32_t blocks_x, int32_t blocks_y, int32_t blocks_z,
                           int32_t threads_x, int32_t threads_y, int32_t threads_z);

}}}}

#endif
back to top