aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/graph/colors.h
blob: 150c8dc0253c4345a81ead6b508d9c9386d1b7aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TENSORFLOW_GRAPH_COLORS_H_
#define TENSORFLOW_GRAPH_COLORS_H_

namespace tensorflow {

// Return a color drawn from a palette to represent an entity
// identified by "i".  The return value has the form "#RRGGBB" Note
// that the palette has a limited set of colors and therefore colors
// will be reused eventually.
const char* ColorFor(int dindex);

}  // namespace tensorflow

#endif  // TENSORFLOW_GRAPH_COLORS_H_