Mace-cl-compiled-program.bin
MACE compiler automatically fuses kernels during binary generation — no manual tuning required.
This entire process is managed by MACE's OpenCLRuntime component. The system looks for pre-compiled binaries in specific paths, and this file is a key part of that search.
When a MACE model runs for the first time, it has to compile the OpenCL code into a machine-readable format. This process, known as Just-In-Time (JIT) compilation, is slow. By caching these compiled kernels into mace_cl_compiled_program.bin , MACE allows subsequent app launches to skip this compilation, resulting in much faster engine creation times. Why is it Important? (Initialization Latency)


