Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AsTensorProto (0.19 sec)

  1. tensorflow/cc/framework/ops.h

        struct RealType {
          typedef tstring type;
        };
    
        template <typename T>
        struct RealType<T, false> {
          typedef T type;
        };
        // END_SKIP_DOXYGEN
    
        TensorProto AsTensorProto() {
          TensorProto tensor_proto;
          if (tensor.NumElements() > 1) {
            tensor.AsProtoTensorContent(&tensor_proto);
          } else {
            tensor.AsProtoField(&tensor_proto);
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top