• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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