You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace Tensorflow.Graphs
- {
- public class GraphDeviceContext : ITensorFlowObject
- {
- private Graph _graph;
-
- public GraphDeviceContext(Graph graph, string device_name)
- {
- _graph = graph;
- }
-
- public void __enter__()
- {
-
- }
-
- public void __exit__()
- {
-
- }
-
- public void Dispose()
- {
-
- }
- }
- }
|