xref: /aosp_15_r20/external/tensorflow/tensorflow/core/tfrt/fallback/op_cost_map.proto (revision b6fb3261f9314811a0f4371741dbb8839866f948)
1syntax = "proto3";
2
3package tensorflow.tfrt_stub;
4
5// For serializing and restoring the cost of op, see cost_recorder.h for
6// details.
7// NEXT_ID: 2
8message OpCostMapProto {
9  // Maps an op_key to a cost measured in microseconds.
10  map<int64, uint64> op_cost_map = 1;
11}
12