Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for expandKey (0.34 sec)

  1. platforms/documentation/docs/src/docs/css/javadoc.css

        }
        button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(1) {
            transform: rotate(45deg);
            transform-origin: 10% 10%;
            width: 26px;
        }
        button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) {
            opacity: 0;
        }
        button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (!fft_len_type) return failure();
    
        auto output_type =
            mlir::dyn_cast_or_null<RankedTensorType>(rfft_op.getResult().getType());
        if (!output_type) return failure();
    
        // Expanded inputs.
        // Insert at -2 location.
        auto one_ele_type =
            tensorflow::GetTypeFromTFTensorShape({1}, rewriter.getIntegerType(32));
        auto minus_two = CreateConstOpWithSingleValue(&rewriter, rfft_op.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            ArrayRef<Value>({slice1, expanded_item, slice2}));
        return success();
      }
    
      // This function rewrites the original op into a XLA DynamicUpdateSlice op.
      // |item| is expanded to have the same dimension as input_handle and
      // |index| is expanded to [index, 0, 0, ...] as the indices to input_handle.
      // On a high level, it's doing something like:
      // def : Pat<(TensorListSetItem($input_handle, $index, $item)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. src/net/netip/netip_test.go

    		},
    		// Basic zero IPv6 address.
    		{
    			in: "::",
    			ip: MkAddr(Mk128(0, 0), Z6noz),
    		},
    		// Localhost IPv6.
    		{
    			in: "::1",
    			ip: MkAddr(Mk128(0, 1), Z6noz),
    		},
    		// Fully expanded IPv6 address.
    		{
    			in: "fd7a:115c:a1e0:ab12:4843:cd96:626b:430b",
    			ip: MkAddr(Mk128(0xfd7a115ca1e0ab12, 0x4843cd96626b430b), Z6noz),
    		},
    		// IPv6 with elided fields in the middle.
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  5. src/go/build/build.go

    		return f(root, dir)
    	}
    
    	// Try using paths we received.
    	if rel, ok = hasSubdir(root, dir); ok {
    		return
    	}
    
    	// Try expanding symlinks and comparing
    	// expanded against unexpanded and
    	// expanded against expanded.
    	rootSym, _ := filepath.EvalSymlinks(root)
    	dirSym, _ := filepath.EvalSymlinks(dir)
    
    	if rel, ok = hasSubdir(rootSym, dir); ok {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            run 'copy'
    
            then:
            executedAndNotSkipped(':copy')
            file('dest/a.txt').text == "1 + 2"
        }
    
        def "useful help message when property cannot be expanded"() {
            given:
            buildFile << """
                task copy (type: Copy) {
                    // two.a expects "one" to be defined
                    from('src/two/two.a')
                    into('dest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    // is a wildcard.
    //
    // The candidates for a given module path matching (or containing a package
    // matching) a wildcard query depend only on the initial build list, but the set
    // of modules may be expanded by other queries, so wildcard queries need to be
    // re-evaluated whenever a potentially-matching module path is added to the
    // build list.
    func (r *resolver) performWildcardQueries(ctx context.Context) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    //
    // r3 = r1 * r2
    //    = s1 (q1 - z1) * s2 (q2 - z2)
    //    = s1 s2 (q1 - z1) * (q2 - z2)
    //
    // Unlike `ComposeUniformQuantizedDotGeneralOp`, the pattern assumes that the
    // term "(q1 - z1) * (q2 - z2)" is not expanded. This is done to reduce
    // unnecessary op count. Also, the subtractions "(q - z)" are performed in i32
    // to avoid underflows.
    //
    // In StableHLO text representation, the pattern is as the following
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/math_grad.cc

                         const std::vector<Output>& grad_inputs) {
      // The partial derivative for any input along a "reduced" dimension
      // is just 1, so we only need replicate the output gradient on such a
      // dimension to its "expanded" shape.
      // Running example:
      // input is
      // [[a, b, c],
      //  [d, e, f]]
      // reduction_indices = [1]
      // Sum = [a + b + c, d + e + f]
      // if the gradient is [g1, g2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // loadFromRoots attempts to load the build graph needed to process a set of
    // root packages and their dependencies.
    //
    // The set of root packages is returned by the params.listRoots function, and
    // expanded to the full set of packages by tracing imports (and possibly tests)
    // as needed.
    func loadFromRoots(ctx context.Context, params loaderParams) *loader {
    	ld := &loader{
    		loaderParams: params,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top