Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for canonicalized (0.29 sec)

  1. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

      for (int i = 0; i < num_inputs; ++i) {
        signature->add_input_arg();
      }
      for (int i = 0; i < num_outputs; ++i) {
        signature->add_output_arg();
      }
      return func;
    }
    
    // A SavedConcreteFunction whose canonicalized input signature
    // has less inputs than its corresponding FunctionDef should cause an error.
    TEST_F(SavedConcreteFunctionLoadingTest, TooFewInputsInSavedConcreteFunction) {
      // `saved` has 1 input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/language.go

    		}
    	}
    	if c&DeprecatedRegion != 0 {
    		if r := t.RegionID.Canonicalize(); r != t.RegionID {
    			changed = true
    			t.RegionID = r
    		}
    	}
    	return t, changed
    }
    
    // Canonicalize returns the canonicalized equivalent of the tag.
    func (c CanonType) Canonicalize(t Tag) (Tag, error) {
    	// First try fast path.
    	if t.isCompact() {
    		if _, changed := canonicalize(c, compact.Tag(t).Tag()); !changed {
    			return t, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/language/match.go

    //   - creating a per-language map, which includes data for the raw base language
    //     and its canonicalized variant (if applicable),
    //   - expanding entries for the equivalence classes defined in CLDR's
    //     languageMatch data.
    // The per-language map ensures that typically only a very small number of tags
    // need to be considered. The pre-expansion of canonicalized subtags and
    // equivalence classes reduces the amount of map lookups that need to be done at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. src/net/http/cookiejar/jar.go

    	}
    
    	if modified {
    		if len(submap) == 0 {
    			delete(j.entries, key)
    		} else {
    			j.entries[key] = submap
    		}
    	}
    }
    
    // canonicalHost strips port from host if present and returns the canonicalized
    // host name.
    func canonicalHost(host string) (string, error) {
    	var err error
    	if hasPort(host) {
    		host, _, err = net.SplitHostPort(host)
    		if err != nil {
    			return "", err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            fixture.overlappingOutputsAreStillPresent()
    
            where:
            overlappingOutputDir << ['build/outputs', 'build/outputs/child', 'build', 'build/other-output']
        }
    
        def "relative paths canonicalized for cleanup registry"() {
            def fixture = new StaleOutputFixture(buildDir: 'build/../some-dir')
            buildScript(fixture.buildScript)
            fixture.createInputs()
            fixture.createStaleOutputs()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

                 << "found unexpected type " << operand.get().getType()
                 << " of operand #" << operand.getOperandNumber()
                 << ", resource type operands are expected to have been "
                    "canonicalized away for region based control flow ops";
        }
      }
      for (OpResult result : op.getResults()) {
        if (mlir::isa<TF::ResourceType>(getElementTypeOrSelf(result.getType()))) {
          return op.emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

      if (legalize_chlo) {
        chlo::populateChloToHloPatterns(context, &hlo_converter, &patterns);
      }
      // ConstantLike op is convenient to create splat constants, but is
      // canonicalized to plain HLO constant if statically shaped. Add the
      // canonicalization pattern to pattern list to enable multi-hop lowering.
      chlo::ConstantLikeOp::getCanonicalizationPatterns(patterns, context);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

       * assertNull(getEffectiveTldPlusOne("com"));
       * assertNull(getEffectiveTldPlusOne("localhost"));
       * assertNull(getEffectiveTldPlusOne("mymacbook"));
       * ```
       *
       * @param domain A canonicalized domain. An International Domain Name (IDN) should be punycode
       *     encoded.
       */
      fun getEffectiveTldPlusOne(domain: String): String? {
        // We use UTF-8 in the list so we need to convert to Unicode.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

              (TF_AddV2Op (TF_SqrtOp $new_accum), $epsilon)
            )
          ),
          (TF_AssignVariableOp $accum_resource, $new_accum, (CreateConstBoolAttrFalse)),
        ]
      >;
    
    // ResourceApplyAdagrad op can be canonicalized to ResourceApplyAdagradV2 with
    // zero epsilon and then decomposed using DecomposeResourceApplyAdagradV2
    // pattern.
    def DecomposeResourceApplyAdagrad :
      Pattern<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      // expected-error @+1 {{found unexpected type 'tensor<!tf_type.resource<tensor<10xf32>>>' of operand #0, resource type operands are expected to have been canonicalized away for region based control flow ops}}
      %1:2 = "tf.WhileRegion"(%stack, %max_size) ({
        ^bb0 (%carg0: tensor<!tf_type.resource>, %carg1: tensor<i32>):
        %pred = "tf._SomeOp"(%carg1) : (tensor<i32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
Back to top