Skip to content

Commit bd60f0e

Browse files
committed
Order the operations by name, so that future diffs are easier to track
1 parent c541944 commit bd60f0e

File tree

2 files changed

+16869
-15389
lines changed

2 files changed

+16869
-15389
lines changed

OpGenerator/OpGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ void Run ()
398398

399399
pi ("namespace TensorFlow {");
400400
pi ("public partial class TFGraph {");
401-
foreach (var oper in operations){
401+
foreach (var oper in (from o in operations orderby o.name select o)){
402402
// Skip internal operations
403403
if (oper.name.StartsWith ("_"))
404404
continue;

0 commit comments

Comments
 (0)