Skip to content

Commit b084ae6

Browse files
committed
reorganize file structure
1 parent cb55d76 commit b084ae6

38 files changed

Lines changed: 267 additions & 164 deletions
File renamed without changes.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Runtime.InteropServices;
4+
using System.Text;
5+
6+
namespace Tensorflow
7+
{
8+
public static partial class c_api
9+
{
10+
[DllImport(TensorFlowLibName)]
11+
public static extern string TF_GetBuffer(IntPtr buffer);
12+
}
13+
}
File renamed without changes.
File renamed without changes.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Runtime.InteropServices;
4+
using System.Text;
5+
6+
namespace Tensorflow
7+
{
8+
public static partial class c_api
9+
{
10+
[DllImport(TensorFlowLibName)]
11+
public static extern void TF_GraphGetOpDef(IntPtr graph, string op_name, IntPtr output_op_def, IntPtr status);
12+
13+
[DllImport(TensorFlowLibName)]
14+
public static unsafe extern IntPtr TF_NewGraph();
15+
}
16+
}

src/TensorFlowNET.Core/MonoPInvokeCallbackAttribute.cs

Lines changed: 0 additions & 16 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)