Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 233 for data_type_ (0.16 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

        data class DefaultType(override val dataType: DataType) : DataTypeRef.Type {
            override fun toString(): String = dataType.toString()
        }
    
        @Serializable
        @SerialName("dataTypeRefName")
        data class DefaultName(override val fqName: FqName) : DataTypeRef.Name {
            override fun toString(): String = fqName.simpleName
        }
    }
    
    
    val DataType.ref: DataTypeRef
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/c/kernels/bitcast_op.cc

    //   * an attribute named "type" containing the TF_DataType of the output tensor
    //
    // Given an input tensor of shape [...], if the input DataType "T" is larger
    // than the output DataType "type", then the shape changes from [...]
    // to [..., sizeof(T)/sizeof(type)].
    //
    // If "T" is smaller than "type", the operator requires that the rightmost
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 31 03:28:11 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/saved_model/saved_model.h

      llvm::ArrayRef<llvm::StringRef> input_names;
      llvm::ArrayRef<
          std::pair<tensorflow::DataType, tensorflow::PartialTensorShape>>
          input_specs;
      llvm::ArrayRef<llvm::StringRef> input_devices;
    
      // The following are metadata for outputs.
      llvm::ArrayRef<llvm::StringRef> output_names;
      llvm::ArrayRef<
          std::pair<tensorflow::DataType, tensorflow::PartialTensorShape>>
          output_specs;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 17:42:41 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/analysis/analysis.proto

      bool ref_variable = 2;
      bool incompatible_variable = 3;
      bool incompatible_attribute = 4;
      bool control_flow_v1 = 5;
      string method_name = 6;
    
      // TODO(chky): add more checks, eg. tensor datatypes.
    }
    
    message CompatibilityAnalysisProto {
      CompatibilityAnalysisReportProto summary = 1;
    
      message OpInfo {
        int32 count = 1;
    
        CompatibilityAnalysisReportProto report = 2;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 20:56:11 UTC 2021
    - 533 bytes
    - Viewed (0)
  5. tensorflow/c/experimental/gradients/tape/tape_operation.cc

    }
    Status TapeOperation::SetAttrTypeList(const char* attr_name,
                                          const DataType* values, int num_values) {
      forward_op_.attrs.Set(attr_name,
                            gtl::ArraySlice<const DataType>(values, num_values));
      return parent_op_->SetAttrTypeList(attr_name, values, num_values);
    }
    Status TapeOperation::SetAttrBoolList(const char* attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 06:16:45 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

     public:
      explicit MlirTensor(Value value)
          : TracingTensorHandle(kMlir), value_(value) {}
    
      tensorflow::DataType DataType() const override {
        tensorflow::DataType type;
        Status s = ConvertToDataType(value_.getType(), &type);
        if (!s.ok()) {
          return tensorflow::DT_INVALID;
        }
        return type;
      }
    
      tensorflow::Status Shape(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. tensorflow/c/tf_tensor_internal.h

      static TensorBuffer* Buffer(const Tensor& tensor) { return tensor.buf_; }
      static Tensor MakeTensor(TF_DataType type, const TensorShape& shape,
                               TensorBuffer* buf) {
        return Tensor(static_cast<DataType>(type), shape, buf);
      }
    };
    
    // Allocates tensor data buffer using specified allocator.
    // `operation` is a name for this operation.
    void* allocate_tensor(const char* operation, size_t len, Allocator* allocator);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 20:38:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/gradients/tape/tape_operation.h

      Status SetAttrFloat(const char* attr_name, float value) override;
      Status SetAttrBool(const char* attr_name, bool value) override;
      Status SetAttrType(const char* attr_name, DataType value) override;
      Status SetAttrShape(const char* attr_name, const int64_t* dims,
                          const int num_dims) override;
      Status SetAttrFunction(const char* attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 23:12:39 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  9. migrator/migrator.go

    func (m Migrator) DataTypeOf(field *schema.Field) string {
    	fieldValue := reflect.New(field.IndirectFieldType)
    	if dataTyper, ok := fieldValue.Interface().(GormDataTypeInterface); ok {
    		if dataType := dataTyper.GormDBDataType(m.DB, field); dataType != "" {
    			return dataType
    		}
    	}
    
    	return m.Dialector.DataTypeOf(field)
    }
    
    // FullDataTypeOf returns field's db full data type
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  10. tensorflow/c/tf_tensor.cc

      std::vector<int64_t> dimvec(num_dims);
      for (int i = 0; i < num_dims; ++i) {
        dimvec[i] = static_cast<int64_t>(dims[i]);
      }
    
      Tensor ret(static_cast<tensorflow::DataType>(dtype),
                 tensorflow::TensorShape(dimvec), buf);
      buf->Unref();
      size_t elem_size = TF_DataTypeSize(dtype);
      if (elem_size > 0 && len < (elem_size * ret.NumElements())) {
        return nullptr;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top