Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for GatherNd (0.21 sec)

  1. src/cmd/compile/internal/types2/object.go

    	// 2) internally created but not yet type-checked.
    	// For case 1) we can't do anything; the client must know what they are doing.
    	// For case 2) we can use the information gathered by the resolver.
    	return obj.hasPtrRecv_
    }
    
    func (*Func) isDependency() {} // a function may be a dependency of an initialization expression
    
    // A Label represents a declared label.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. src/go/types/object.go

    	// 2) internally created but not yet type-checked.
    	// For case 1) we can't do anything; the client must know what they are doing.
    	// For case 2) we can use the information gathered by the resolver.
    	return obj.hasPtrRecv_
    }
    
    func (*Func) isDependency() {} // a function may be a dependency of an initialization expression
    
    // A Label represents a declared label.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    ```
    
    where
    
    * `params =
       ragged.from_nested_row_splits(params_dense_values, params_nested_splits)`
       provides the values that should be gathered.
    * `indices` ia a dense tensor with dtype `int32` or `int64`, indicating which
       values should be gathered.
    * `output =
       ragged.from_nested_row_splits(output_dense_values, output_nested_splits)`
       is the output tensor.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

        rhs_remove_idx.insert(v);
      }
    
      // Gather shapes for output.
      for (auto v : ddn.lhs_batch_dimensions()) {
        output_shape.push_back(lhs_shape[v]);
      }
    
      // Batch dimension is gathered from the right side.
      if (output_shape.empty()) {
        for (auto v : ddn.rhs_batch_dimensions()) {
          output_shape.push_back(rhs_shape[v]);
        }
      }
    
      // Gather remaining dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. src/runtime/mgcsweep.go

    // bytes of the ultimately allocated span will be available for object
    // allocation.
    //
    // deductSweepCredit is the core of the "proportional sweep" system.
    // It uses statistics gathered by the garbage collector to perform
    // enough sweeping so that all pages are swept during the concurrent
    // sweep phase between GC cycles.
    //
    // mheap_ must NOT be locked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    	endpointUpdateResult := proxier.endpointsMap.Update(proxier.endpointsChanges)
    
    	deletedUDPClusterIPs := serviceUpdateResult.DeletedUDPClusterIPs
    	// merge stale services gathered from EndpointsMap.Update
    	for _, svcPortName := range endpointUpdateResult.NewlyActiveUDPServices {
    		if svcInfo, ok := proxier.svcPortMap[svcPortName]; ok && svcInfo != nil && svcInfo.Protocol() == v1.ProtocolUDP {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		nc.podUpdateQueue.AddRateLimited(podItem)
    		return
    	}
    
    	nodeName := pod.Spec.NodeName
    
    	nodeHealth := nc.nodeHealthMap.getDeepCopy(nodeName)
    	if nodeHealth == nil {
    		// Node data is not gathered yet or node has been removed in the meantime.
    		return
    	}
    
    	_, err = nc.nodeLister.Get(nodeName)
    	if err != nil {
    		logger.Info("Failed to read node", "node", klog.KRef("", nodeName), "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    		// See runtime/unsafepoint_test.go.
    		pmain.Internal.OmitDebug = false
    	}
    
    	if !cfg.BuildN {
    		// writeTestmain writes _testmain.go,
    		// using the test description gathered in t.
    		if err := os.WriteFile(testDir+"_testmain.go", *pmain.Internal.TestmainGo, 0666); err != nil {
    			return nil, nil, nil, err
    		}
    	}
    
    	// Set compile objdir to testDir we've already created,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top