xref: /aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tools/kernel_gen/compile_cache_item.proto (revision b6fb3261f9314811a0f4371741dbb8839866f948)
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