| 810 | } |
| 811 | Index algo_id() const { return proto_.algo_id(); } |
| 812 | bool operator==(const AlgorithmDesc& other) const { |
| 813 | return algo_id() == other.algo_id() && |
| 814 | tensor_ops_enabled() == other.tensor_ops_enabled(); |
| 815 | } |
| 816 | uint64 hash() const; |
| 817 | |
| 818 | AlgorithmProto ToProto() const { return proto_; } |
nothing calls this directly
no test coverage detected