File tree Expand file tree Collapse file tree 4 files changed +468
-419
lines changed
Expand file tree Collapse file tree 4 files changed +468
-419
lines changed Original file line number Diff line number Diff line change @@ -497,11 +497,9 @@ private IEnumerable<Operation> GetEnumerable()
497497 IEnumerator < Operation > IEnumerable < Operation > . GetEnumerator ( )
498498 => GetEnumerable ( ) . GetEnumerator ( ) ;
499499
500- IEnumerator IEnumerable . GetEnumerator ( )
501- {
502- throw new NotImplementedException ( ) ;
503- }
504-
500+ IEnumerator IEnumerable . GetEnumerator ( )
501+ => throw new NotImplementedException ( ) ;
502+
505503 public static implicit operator IntPtr ( Graph graph )
506504 {
507505 return graph . _handle ;
Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ namespace Tensorflow
2020{
2121 public class ImportGraphDefOptions : DisposableObject
2222 {
23- public int NumReturnOutputs => c_api . TF_ImportGraphDefOptionsNumReturnOutputs ( _handle ) ;
23+ public int NumReturnOutputs
24+ => c_api . TF_ImportGraphDefOptionsNumReturnOutputs ( _handle ) ;
2425
2526 public ImportGraphDefOptions ( )
2627 {
You can’t perform that action at this time.
0 commit comments