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.

OpTape.cs 476 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Tensorflow.Util;
  6. namespace Tensorflow.Gradients
  7. {
  8. /// <summary>
  9. /// Map from operation-id to tape entry.
  10. /// </summary>
  11. /// <typeparam name="BackwardFunction"></typeparam>
  12. /// <typeparam name="TapeTensor"></typeparam>
  13. public class OpTape<BackwardFunction, TapeTensor> :
  14. UnorderedMap<long, OpTapeEntry<BackwardFunction, TapeTensor>>
  15. {
  16. }
  17. }