SMAUG
Simulating Machine Learning Applications on gem5-Aladdin
smaug
core
graph.proto
1
syntax = "proto3";
2
3
package smaug;
4
5
import "smaug/core/node.proto";
6
import "smaug/core/types.proto";
7
8
message GraphProto {
9
string name = 1;
10
repeated NodeProto nodes = 2;
11
// The backend that this graph should run on
12
string backend = 3;
13
HostMemoryAccessPolicy mem_policy = 4;
14
}
Generated by
1.8.18