Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,090 for gather (0.14 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	}
    
    	// Correlate the symbols from the binary with the profile samples.
    	for _, s := range syms {
    		sns := symNodes[s]
    
    		// Gather samples for this symbol.
    		flatSum, cumSum := sns.Sum()
    
    		// Get the function assembly.
    		insts, err := obj.Disasm(s.sym.File, s.sym.Start, s.sym.End, o.IntelSyntax)
    		if err != nil {
    			return err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

    func.func @testGather(%arg0 : tensor<?xf32>, %arg1 : tensor<?xi32>) -> tensor<?xf32> {
      %0 = "tfl.gather"(%arg0, %arg1) {axis = 1 : i32}: (tensor<?xf32>,tensor<?xi32>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: testGather
    func.func @testGather(%arg0 : tensor<2xf32>, %arg1 : tensor<2xi32>) -> tensor<2xf32> {
      %0 = "tfl.gather"(%arg0, %arg1) {axis = 1 : i32}: (tensor<2xf32>,tensor<2xi32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. src/math/rand/v2/rand_test.go

    					}
    					r.Shuffle(n, func(i, j int) { p[i], p[j] = p[j], p[i] })
    					return encodePerm(p)
    				}},
    			}
    
    			for _, test := range tests {
    				t.Run(test.name, func(t *testing.T) {
    					// Gather chi-squared values and check that they follow
    					// the expected normal distribution given n!-1 degrees of freedom.
    					// See https://en.wikipedia.org/wiki/Pearson%27s_chi-squared_test and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. RELEASE.md

            during the python Dataset object creation instead doing it during
            Iterator creation time.
        *   Add `batch_dims` argument to `tf.gather`.
        *   The behavior of `tf.gather` is now correct when `axis=None` and
            `batch_dims<0`.
        *   Update docstring for gather to properly describe the non-empty
            `batch_dims` case.
        *   Removing of dtype in the constructor of initializers and partition_info
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      func.return %0 : tensor<7xi64>
    
      // CHECK-LABEL: scatter_nd_add
      // CHECK:  %[[GATHER:.*]] = "tf.GatherNd"(%arg0, %arg1) <{bad_indices_policy = ""}> : (tensor<7xi64>, tensor<1x1xi32>) -> tensor<1xi64>
      // CHECK:  %[[ADD:.*]] = "tf.Add"(%arg2, %[[GATHER]]) : (tensor<1xi64>, tensor<1xi64>) -> tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	var sfiles []string
    	for _, fname := range pass.OtherFiles {
    		if strings.HasSuffix(fname, ".s") {
    			sfiles = append(sfiles, fname)
    		}
    	}
    	if sfiles == nil {
    		return nil, nil
    	}
    
    	// Gather declarations. knownFunc[name][arch] is func description.
    	knownFunc := make(map[string]map[string]*asmFunc)
    
    	for _, f := range pass.Files {
    		for _, decl := range f.Decls {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Res<TF_Tensor, [{Values from `params` gathered from indices given by `indices`, with
    shape `indices.shape[:-1] + params.shape[indices.shape[-1]:]`.}]>:$output
      );
    
      TF_DerivedOperandTypeAttr Tindices = TF_DerivedOperandTypeAttr<1>;
      TF_DerivedOperandTypeAttr Tparams = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_GatherV2Op : TF_Op<"GatherV2", [Pure]> {
      let summary = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

          .add<XlaCallModuleOpToCallOp<QuantizeWeightOnlyOpPattern<DotGeneralOp>>>(
              ctx, enable_per_channel_quantized_weight);
      // TODO: b/307620772 - Per-channel quantization for gather.
      patterns.add<XlaCallModuleOpToCallOp<QuantizeSingularOpPattern<GatherOp>>>(
          ctx, /*enable_per_channel_quantized_weight=*/false);
      // Populate pattern for quantization of ops with regions such as
      // `stablehlo.reduce_window` op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. src/testing/fuzz.go

    				break
    			}
    
    			tctx := newTestContext(*parallel, m)
    			tctx.deadline = deadline
    			fctx := &fuzzContext{deps: deps, mode: seedCorpusOnly}
    			root := common{w: os.Stdout} // gather output in one place
    			if Verbose() {
    				root.chatty = newChattyPrinter(root.w)
    			}
    			for _, ft := range fuzzTests {
    				if shouldFailFast() {
    					break
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top