Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BitcastFrom (0.1 sec)

  1. tensorflow/c/tf_tensor.cc

      }
      tensor_.set_shape(s);
    }
    
    Status TensorInterface::BitcastFrom(const TensorInterface& from, DataType type,
                                        const int64_t* new_dims, int num_new_dims) {
      tensorflow::TensorShape s;
      for (int i = 0; i < num_new_dims; ++i) {
        TF_RETURN_IF_ERROR(s.AddDimWithStatus(new_dims[i]));
      }
      return tensor_.BitcastFrom(from.tensor_, type, s);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. RELEASE.md

            color palette of the frame. This has been fixed now
        *   Add templates and interfaces for creating lookup tables
        *   `Tensor::UnsafeCopyFromInternal` deprecated in favor
            `Tensor::BitcastFrom`.
        *   In `map_vectorization` optimization, reduce the degree of parallelism in
            the vectorized map node.
        *   Add variant wrapper for `absl::string_view`.
        *   Add OpKernels for some stateless maps.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top