This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
scisharp
/
TensorFlow.NET
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
21
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Tensor.Creation: uncommented FreeGCHandle deallocation
tags/v0.12
Eli Belash
6 years ago
parent
116f21728c
commit
288085be0c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/TensorFlowNET.Core/Tensors/Tensor.Creation.cs
+ 1
- 1
src/TensorFlowNET.Core/Tensors/Tensor.Creation.cs
View File
@@ -678,7 +678,7 @@ namespace Tensorflow
if (args.deallocator_called || args.gc_handle == IntPtr.Zero)
return;
// note: since the ptr given to tensorflow is just the addr of the pinned object we can not directly free it! we need to free the gcHandle instead
//args.gchandle
.Free();
GCHandle.FromIntPtr(args.gc_handle)
.Free();
args.deallocator_called = true;
}
Write
Preview
Loading…
Cancel
Save