Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for getVendor (0.23 sec)

  1. tensorflow/c/checkpoint_reader.h

      const TensorSliceReader::VarToDataTypeMap& GetVariableToDataTypeMap() const;
    
      // Attempts to look up the tensor named "name" and stores the found result in
      // "out_tensor".
      void GetTensor(const string& name,
                     std::unique_ptr<tensorflow::Tensor>* out_tensor,
                     TF_Status* out_status) const;
    
     private:
      // Uses "v2_reader_" to build "var name -> shape" and "var name -> data type"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

        llvm::SmallDenseMap<Value, SizeInfo>* buffer_to_size) {
      OpBuilder builder(list);
      Value buffer = builder.create<TF::IdentityOp>(
          list.getLoc(), ArrayRef<Type>{list.getTensor().getType()},
          ArrayRef<Value>{list.getTensor()});
      auto type = mlir::cast<TensorType>(buffer.getType());
      if (!type.hasStaticShape()) {
        return list.emitOpError("TensorListFromTensorOp input has unknown shape.");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

                putValue(data, "Received-Date", getReceivedDate(message));
                putValue(data, "Reply-To", message.getReplyTo());
                putValue(data, "Sender", message.getSender());
                putValue(data, "Sent-Date", message.getSentDate());
                putValue(data, "Size", message.getSize());
                putValue(data, "Subject", message.getSubject());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      };
      TensorType expected_ty;
      if (failed(GetReshapeOutputType(op.getTensor(), op.getShape(), error_handler,
                                      expected_ty)))
        return failure();
    
      auto output_ty = op.getType().dyn_cast<RankedTensorType>();
      if (!output_ty) return success();
      auto tensor_ty = op.getTensor().getType().cast<TensorType>();
      if (output_ty.hasStaticShape() && tensor_ty.hasStaticShape()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_experimental.cc

    }
    
    TF_Tensor* TF_CheckpointReaderGetTensor(TF_CheckpointReader* reader,
                                            const char* name, TF_Status* status) {
      std::unique_ptr<tensorflow::Tensor> tensor;
      reader->GetTensor(name, &tensor, status);
      if (!status->status.ok()) return nullptr;
      return tensorflow::TF_TensorFromTensor(*tensor, &status->status);
    }
    
    void TF_CheckpointReaderGetVariableShape(TF_CheckpointReader* reader,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        for (auto& use : tensorlist.getUses()) {
          if (auto push = llvm::dyn_cast<TensorListPushBackOp>(use.getOwner())) {
            auto element_type =
                mlir::dyn_cast<RankedTensorType>(push.getTensor().getType());
            if (!verify_and_update_potential_element_type(element_type))
              return false;
            add_to_worklist(push.getOutputHandle());
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      LogicalResult matchAndRewrite(OpTy op,
                                    PatternRewriter &rewriter) const override {
        auto tensor_ty = mlir::dyn_cast<RankedTensorType>(op.getTensor().getType());
        auto indices_ty =
            mlir::dyn_cast<RankedTensorType>(op.getIndices().getType());
        auto updates_ty =
            mlir::dyn_cast<RankedTensorType>(op.getUpdates().getType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top