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;
- using Tensorflow.Contexts;
-
- namespace Tensorflow.Eager
- {
- public class FastPathOpExecInfo
- {
- public Context ctx { get; set; }
- public string device_name { get; set; }
- public string op_name { get; set; }
- public string name { get; set; }
- public object[] args { get; set; }
- public bool run_gradient_callback { get; set; }
- public bool run_post_exec_callbacks { get; set; }
- public bool run_callbacks { get; set; }
- }
- }
|