Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 233 for data_type_ (0.12 sec)

  1. tensorflow/compiler/jit/device_compilation_cluster_signature.h

      // for compile-time constant arguments to the compilation, ordered by
      // argument number. Tensors must be in host memory.
      using TensorTypeAndShape =
          std::pair<DataType, absl::InlinedVector<int64_t, 4>>;
      absl::InlinedVector<std::variant<Tensor, TensorTypeAndShape>, 8> args;
    
      bool operator==(const DeviceCompilationClusterSignature& other) const;
    
      struct Hash {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/c/eager/abstract_operation.h

      virtual Status SetAttrFloat(const char* attr_name, float value) = 0;
      virtual Status SetAttrBool(const char* attr_name, bool value) = 0;
      virtual Status SetAttrType(const char* attr_name, DataType value) = 0;
      virtual Status SetAttrShape(const char* attr_name, const int64_t* dims,
                                  const int num_dims) = 0;
      virtual Status SetAttrShape(const char* attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 14 16:20:41 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/convert_type.cc

          return mlir::TF::ResourceType::get(builder.getContext());
        case tflite::TensorType_VARIANT:
          return mlir::TF::VariantType::get(builder.getContext());
      }
    }
    
    tensorflow::DataType TflTypeToTfType(tflite::TensorType type) {
      switch (type) {
        case tflite::TensorType_BOOL:
          return tensorflow::DT_BOOL;
        case tflite::TensorType_COMPLEX64:
          return tensorflow::DT_COMPLEX64;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/main/webapp/js/search.js

            actionUrl,
            docId;
        if (values.length === 2 && $queryId.length > 0) {
          docId = values[1];
          actionUrl = contextPath + "/api/v1/documents/" + docId + "/favorite";
          $.ajax({
            dataType: "json",
            cache: false,
            type: "post",
            timeoutNumber: 10000,
            url: actionUrl,
            data: {
              queryId: $queryId.val()
            }
          })
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 7.5K bytes
    - Viewed (1)
  5. tensorflow/compiler/jit/shape_inference.h

    namespace tensorflow {
    
    struct InferredShape {
      // Shape of the argument tensor.
      PartialTensorShape shape;
    
      // If the argument is a resource variable, the type and shape of the
      // variable's value.
      DataType handle_type = DT_INVALID;
      PartialTensorShape handle_shape;
    };
    typedef std::unordered_map<string, std::vector<InferredShape>> GraphShapeInfo;
    
    // Infer shapes for all Tensors in a graph, and save them in a map.  The vector
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/release/content/script.js

          loadingPara.fadeIn("80", animate ? paraFadeOut : null);
        };
        var finishAnimation = function() {
          animate = false;
          loadingPara.remove();
        };
        paraFadeOut();
    
        $.ajax(url, {
          dataType: "json",
          cache: true,
          success: function(data, textStatus, jqXHR) {
            finishAnimation();
            var para = $("<p>" + messageFunction(data.length) + "</p>").insertAfter(insertAfter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/array_ops.h

                     const char* raw_device_name = nullptr);
    
    // Returns the shape of a tensor.
    Status Shape(AbstractContext* ctx, AbstractTensorHandle* const input,
                 AbstractTensorHandle** output, DataType out_type = DT_INT32,
                 const char* name = nullptr, const char* raw_device_name = nullptr);
    
    // Inserts a dimension of 1 into a tensor's shape.
    Status ExpandDims(AbstractContext* ctx, AbstractTensorHandle* const input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/saved_model/saved_model_test.cc

      ASSERT_TRUE(module);
    
      std::vector<std::string> inputs;
      std::vector<std::pair<tensorflow::DataType, tensorflow::PartialTensorShape>>
          in_specs;
      std::vector<std::string> outputs;
      std::vector<std::pair<tensorflow::DataType, tensorflow::PartialTensorShape>>
          out_specs;
      std::vector<mlir::Operation*> bound_inputs;
      TF_ASSERT_OK(MapFunctionSignaturesFromTFSavedModelMLIR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 13 01:17:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/get_compiler_ir.h

      HLO,
      HLO_NO_METADATA,
      HLO_SERIALIZED,
      OPTIMIZED_HLO,
      OPTIMIZED_HLO_SERIALIZED,
      OPTIMIZED_HLO_PROTO_SERIALIZED,
      OPTIMIZED_HLO_DOT
    };
    
    struct ArgShapeAndDType {
      TensorShape shape;
      DataType dtype;
    };
    
    enum class CompilerArgSource {
      TENSOR_SPEC,
      CONCRETE_INPUT,
    };
    
    // Returns the IR format of the selected stage for a given function `func_name`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/functional_grad.cc

      TF_RETURN_IF_ERROR(GetNodeAttr(op.node()->attrs(), "f", &f));
      for (const auto& attr : op.node()->attrs()) {
        (*f.mutable_attr())[attr.first] = attr.second;
      }
    
      std::vector<Output> func_inputs;
      std::vector<DataType> input_dtypes;
      const int num_inputs = op.num_inputs();
      func_inputs.reserve(num_inputs + grad_inputs.size());
      input_dtypes.reserve(num_inputs);
    
      for (int i = 0; i < num_inputs; i++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 20:09:06 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top