1syntax = "proto3"; 2 3package mlir.kernel_gen; 4 5option cc_enable_arenas = true; 6 7// Protocolbuffer representing a compilation input and output. This will be used 8// for caching JIT compiles of kernels. 9message CompilationCacheItem { 10 string original_module = 1; 11 string result_module = 2; 12} 13