Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 917 for refined (0.18 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

      // type.
      if (!updated.hasRank()) return false;
    
      // If the original type doesn't have a rank, then refine as the updated type
      // has a rank.
      if (!original.hasRank()) return true;
    
      // Both types must have the same rank.
      if (original.getRank() != updated.getRank()) return false;
    
      // Refine if the updated type is bounded.
      return IsBounded(updated);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.h

    namespace TF {
    
    // Returns whether type can be further refined.
    bool CanBeRefined(Type type);
    
    // Returns a new arg type based on the shape and element type. If there are
    // dynamic bounds attribute to the arg, update the bounds based on the shape
    // as well.
    Type GetNewArgType(Type old_arg_type, ArrayRef<int64_t> shape,
                       Type element_type, mlir::MLIRContext* context);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    using tensorflow::shape_inference::InferenceContext;
    using tensorflow::shape_inference::ShapeHandle;
    
    namespace mlir {
    namespace TF {
    namespace {
    
    // Compute a refined type between two types `lhs` and `rhs`, the result type
    // is always more refined (i.e. has more static information) than `lhs`
    // This method will actually merge the information contained in the
    // types, it is capable of refining:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      parser.emitError(parser.getNameLoc()) << "unknown TFL type: " << data_type;
      return nullptr;
    }
    
    void TFLDialect::initialize() {
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.cc.inc"
          >();
      addAttributes<
    #define GET_ATTRDEF_LIST
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_attrdefs.cc.inc"
          >();
      addInterfaces<TensorFlowLiteInlinerInterface,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. cni/pkg/install/testdata/istio-cni-prefixed.conf

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 215 bytes
    - Viewed (0)
  6. src/flag/flag.go

    		var msg string
    		if f.name == "" {
    			msg = f.sprintf("flag redefined: %s", name)
    		} else {
    			msg = f.sprintf("%s flag redefined: %s", f.name, name)
    		}
    		panic(msg) // Happens only if flags are declared with identical names
    	}
    	if pos := f.undef[name]; pos != "" {
    		panic(fmt.Sprintf("flag %s set at %s before being defined", name, pos))
    	}
    	if f.formal == nil {
    		f.formal = make(map[string]*Flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * An **engine service** as defined by the Platform Interface (see the README).
     *
     * Engine services do not need to be implemented by a platform. Quite the contrary, they are implemented by the Analysis API engine and
     * intended to support platform implementations. They are defined in the Platform Interface, as opposed to the user-facing Analysis API,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	// CAName defines the name for the CA on which this certificate depends
    	CAName string
    
    	// CABaseName defines the base name for the CA that should be used for certificate renewal
    	CABaseName string
    
    	// readwriter defines a CertificateReadWriter to be used for certificate renewal
    	readwriter certificateReadWriter
    
    	// certConfigMutators holds the mutator functions that can be applied to the input cert config object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                                A set of common keys MAY be defined by the API in the future. To avoid
                                any ambiguity, implementation-specific definitions MUST use
                                domain-prefixed names, such as `example.com/my-custom-option`.
                                Un-prefixed names are reserved for key names defined by Gateway API.
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            EnvVariableRead.getEnv("CI")                        | "null"     | "defined" | "defined"
            EnvVariableRead.getEnvGet("CI")                     | "null"     | "defined" | "defined"
            EnvVariableRead.getEnvGetOrDefault("CI", "default") | "default"  | "defined" | "defined"
            EnvVariableRead.getEnvContainsKey("CI")             | "false"    | "defined" | "true"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19710")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top