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.

FastPathOpExecInfo.cs 556 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Tensorflow.Contexts;
  5. namespace Tensorflow.Eager
  6. {
  7. public class FastPathOpExecInfo
  8. {
  9. public Context ctx { get; set; }
  10. public string device_name { get; set; }
  11. public string op_name { get; set; }
  12. public string name { get; set; }
  13. public object[] args { get; set; }
  14. public bool run_gradient_callback { get; set; }
  15. public bool run_post_exec_callbacks { get; set; }
  16. public bool run_callbacks { get; set; }
  17. }
  18. }