Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for null_type (0.66 sec)

  1. tensorflow/c/experimental/ops/gen/model/attr_spec.h

      const string& full_type() const { return full_type_; }
      const string& base_type() const { return base_type_; }
      const AttrValue& default_value() const { return default_value_; }
      const bool is_list() const { return is_list_; }
    
     private:
      explicit AttrSpec(const OpDef::AttrDef& attr_def);
    
      string name_;
      string description_;
      string full_type_;
      string base_type_;
      AttrValue default_value_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/abstract_tensor_handle.h

      // can be used to set a FullTypeDef based on dtype in a derived class if
      // appropriate.
      virtual tensorflow::FullTypeDef FullType() const = 0;
    
      // The default debug string includes a shape, dtype and FullType.
      // Implementations are free to override it with something more informative.
      virtual std::string DebugString() const;
    
      AbstractTensorHandleKind getKind() const { return kind_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:30:36 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/stablehlo_quantizer_odml_oss.ipynb

    {
      "cells": [
        {
          "cell_type": "markdown",
          "metadata": {
            "id": "tWhm0JFMPJ5I"
          },
          "source": [
            "Copyright 2024 Google LLC.\n",
            "\n",
            "Licensed under the Apache License, Version 2.0 (the \"License\");"
          ]
        },
        {
          "cell_type": "markdown",
          "metadata": {
            "id": "RJcqTAlfPQjk"
          },
          "source": [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 12 03:40:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

        return absl::StrCat("SetAttr", toUpperCamel(attr_.full_type()));
      } else {
        return absl::StrCat("SetAttr", toUpperCamel(attr_.base_type()), "List");
      }
    }
    
    std::vector<string> AttrView::SetterArgs() const {
      if (attr_.full_type() == "string") {
        return {AttrNameString(), VariableName(), VariableStrLen()};
      } else if (attr_.full_type() == "list(string)") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/model/attr_spec.cc

      name_ = attr_def.name();
      description_ = attr_def.description();
      full_type_ = attr_def.type();
      default_value_ = attr_def.default_value();
      if (str_util::StartsWith(full_type_, "list(")) {
        is_list_ = true;
        // strip surrounding "list(%s)"
        base_type_ = full_type_.substr(5, full_type_.length() - 6);
      } else {
        is_list_ = false;
        base_type_ = full_type_;
      }
    }
    
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/DataType.kt

     */
    
    package org.gradle.declarative.dsl.schema
    
    import org.gradle.tooling.ToolingModelContract
    import java.io.Serializable
    
    
    @ToolingModelContract(subTypes = [
        DataType.NullType::class,
        DataType.UnitType::class,
        DataType.ConstantType::class,
        DataType.IntDataType::class,
        DataType.LongDataType::class,
        DataType.StringDataType::class,
        DataType.BooleanDataType::class,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/utils.kt

        is DataType.IntDataType -> right is DataType.IntDataType
        is DataType.LongDataType -> right is DataType.LongDataType
        is DataType.StringDataType -> right is DataType.StringDataType
        is DataType.NullType -> right is DataType.NullType
        is DataType.UnitType -> right is DataType.UnitType
    }
    
    
    internal
    fun TypeRefContext.getDataType(objectOrigin: ObjectOrigin): DataType = when (objectOrigin) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/TypeMirrorToType.java

    import javax.lang.model.type.ErrorType;
    import javax.lang.model.type.ExecutableType;
    import javax.lang.model.type.IntersectionType;
    import javax.lang.model.type.NoType;
    import javax.lang.model.type.NullType;
    import javax.lang.model.type.PrimitiveType;
    import javax.lang.model.type.TypeKind;
    import javax.lang.model.type.TypeMirror;
    import javax.lang.model.type.TypeVariable;
    import javax.lang.model.type.UnionType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/c/python_api.cc

    #include "tensorflow/c/python_api.h"
    
    #include <string>
    
    #include "tensorflow/c/c_api_internal.h"
    #include "tensorflow/core/framework/cpp_shape_inference.pb.h"
    #include "tensorflow/core/framework/full_type.pb.h"
    
    namespace tensorflow {
    
    // Hack to export the tensorflow::RecordMutation symbol for windows.
    // Do not delete. Do not use.
    void ExportRecordMutation(  // NOLINT: Intentionally unused function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/DataTypeInternal.kt

            override fun toString(): String = "Boolean"
            private
            fun readResolve(): Any = DefaultBooleanDataType
        }
    
        @Serializable
        @SerialName("null")
        data object DefaultNullType : DataType.NullType {
            override fun toString(): String = "Null"
            private
            fun readResolve(): Any = DefaultNullType
        }
    
        @Serializable
        @SerialName("unit")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top