Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 997 for central (3.92 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    func.func @invalid_yield(%arg0: tensor<*xf32>, %ctl: !tf_executor.control) {
      tf_executor.graph {
        "tf_executor.island"() ({
          "tf_executor.yield"(%arg0, %ctl) : (tensor<*xf32>, !tf_executor.control) -> ()
    // expected-error@-1 {{'tf_executor.yield' op unexpected control type for operand #1}}
        }) : () -> (tensor<*xf32>, !tf_executor.control, !tf_executor.control)
      }
      func.return
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  2. cmd/postpolicyform.go

    // 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
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. LICENSE

          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

      }
    
      if (auto is_stateless = op->getAttrOfType<BoolAttr>("is_stateless")) {
        return !is_stateless.getValue();
      }
      return false;
    }
    
    // Add control dependencies from stateful control-flow ops to graph fetch op.
    // This is needed to avoid that such control-flow ops get pruned because of a
    // bug in common runtime (see b/185483669).
    void AddStatefulControlFlowDependencies(tf_executor::GraphOp graph_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  5. cmd/generic-handlers.go

    // 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
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/sccp.go

    func (t *worklist) propagate(block *Block) {
    	switch block.Kind {
    	case BlockExit, BlockRet, BlockRetJmp, BlockInvalid:
    		// control flow ends, do nothing then
    		break
    	case BlockDefer:
    		// we know nothing about control flow, add all branch destinations
    		t.edges = append(t.edges, block.Succs...)
    	case BlockFirst:
    		fallthrough // always takes the first branch
    	case BlockPlain:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

    // ```
    //
    // `%merged_control` is a NoOp control barrier in this case.
    //
    // Checks if the value `control` is a NoOp control barrier.
    bool IsNoOpControlBarrier(Value control) {
      if (!mlir::isa<ControlType>(control.getType())) return false;
    
      auto control_island = dyn_cast_or_null<IslandOp>(control.getDefiningOp());
      if (!control_island) return false;
    
      // All islands perfectly wrap a single op is an invariant of this pass and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// Possible usages are:
    	// e.g. In a cluster with more than one control plane instances, this field should be
    	// assigned the address of the external load balancer in front of the
    	// control plane instances.
    	// e.g.  in environments with enforced node recycling, the ControlPlaneEndpoint
    	// could be used for assigning a stable DNS to the control plane.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. src/runtime/mstats.go

    //
    // The world must be stopped.
    func readmemstats_m(stats *MemStats) {
    	assertWorldStopped()
    
    	// Flush mcaches to mcentral before doing anything else.
    	//
    	// Flushing to the mcentral may in general cause stats to
    	// change as mcentral data structures are manipulated.
    	systemstack(flushallmcaches)
    
    	// Calculate memory allocator stats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/flags.h

      // we do not do deadness related safety checks.  This is unsound in general,
      // but can be used as a debugging aid.
      bool tf_xla_disable_deadness_safety_checks_for_debugging;
    
      // If tf_xla_disable_resource_variable_safety_checks_for_debugging is set to
      // true then we do not do safety checks to preserve TensorFlow's resource
      // variable concurrency semantics.  This is unsound in general, but can be
      // used as a debugging aid.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top