Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,547 for refined (0.14 sec)

  1. src/cmd/compile/internal/typecheck/universe.go

    	okforeq[types.TMAP] = true    // nil only; refined in typecheck
    	okforeq[types.TFUNC] = true   // nil only; refined in typecheck
    	okforeq[types.TSLICE] = true  // nil only; refined in typecheck
    	okforeq[types.TARRAY] = true  // only if element type is comparable; refined in typecheck
    	okforeq[types.TSTRUCT] = true // only if all struct fields are comparable; refined in typecheck
    
    	types.IsOrdered[types.TSTRING] = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/telemetry/README.md

    - The [x/telemetry/config](https://pkg.go.dev/pkg/golang.org/x/telemetry/config)
      package defines the subset of telemetry data that has been approved for
      uploading by the telemetry proposal process.
    - The [x/telemetry/godev](https://pkg.go.dev/pkg/golang.org/x/telemetry/godev) directory defines
      the services running at [telemetry.go.dev](https://telemetry.go.dev).
    
    ## Contributing
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmLanguageSourceDirectoryBuilder.java

        /**
         * Assumes that this source set will contain Java sources and therefore creates a Java
         * compile task which configuration can be refined using the provided action configuration.
         * Implicitly calls {@link #includeInAllJava()}
         * @param compilerConfiguration the configuration of the compile task
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:44:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  7. src/math/big/natdiv.go

    result: compare the top n digits of u against v and fill in either a 0 or a 1.
    
    
    Refining Guesses
    
    Before we check whether u < q̂·v, we can adjust our guess to change it from
    q̂ = ⌊uₙuₙ₋₁ / vₙ₋₁⌋ into the refined guess ⌊uₙuₙ₋₁uₙ₋₂ / vₙ₋₁vₙ₋₂⌋.
    Although not mentioned above, the Good Guess Guarantee also promises that this
    3-by-2-digit division guess is more precise and at most one away from the real
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

      }
    
      // Tests where tf.Const's value needs to be refined.
    
      func.func @const_refine() -> tensor<*xi32> {
        %0 = "tf.Const"() {value = dense<[3, 2]> : tensor<2xi32>} : () -> tensor<*xi32>
        // CHECK: "tf.Const"
        // CHECK-SAME: -> tensor<2xi32>
        func.return %0 : tensor<*xi32>
      }
    
      // Tests the case where an op's shape function returns non-fully-defined shapes.
    
      // CHECK-LABEL: func @op_non_fully_defined_shape_fn
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      // CHECK-SAME: tensor<*xi32>
      func.return %1 : tensor<*xi32>
    }
    
    // If multiple types are used across reads and writes, check that the read uses
    // the most refined type. The first ReadVariable should refine the type from
    // *xi32 to ?xi32 and the assign should refine it further to 4xi32.
    // CHECK-LABEL: func @type_refinement_use_refined_type
    func.func @type_refinement_use_refined_type() -> tensor<4xi32> {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            ]
        }
    
        def "ignores badly formed define directives"() {
            when:
            sourceFile << """
    #define
    #define  // white space
    #define ()
    #define ( _
    #define ( _ )
    #define X(
    #define X(abc
    #define X( ,
    #define X( abc,
    #define X( abc, ,
    # define @(Y) Z
    """
    
            then:
            macros.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
Back to top