Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,708 for ControlZ (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-as-function-control-ret.pbtxt

    # CHECK:         tf_executor.fetch %{{.*}}, %[[VAR_ADD_1]], %[[VAR_ADD_2]]
    
    # Test duplicate control ret node names.
    
    # UNIQUE: Control outputs must be unique
    
    # Test missing control ret node name.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-control-ret-diff-island.pbtxt

    # Verify for functions with control return values, the island with only a
    # consumed control return value has its control output added to the GraphOps
    # FetchOp.
    
    # Match the island containing the "tf.Neg", capture the output
    # CHECK:          %[[ISLAND_0:[a-z_0-9]*]], %[[ISLAND_0_control:[a-z_0-9]*]] = tf_executor.island wraps "tf.Neg"
    
    # Check that the tf.Neg control is passed to the fetch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  3. src/os/signal/signal_cgo_test.go

    	cmd.ExtraFiles = []*os.File{procTTY, controlW}
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		Setsid:  true,
    		Setctty: true,
    		Ctty:    ptyFD,
    	}
    
    	if err := cmd.Start(); err != nil {
    		t.Fatal(err)
    	}
    
    	if err := procTTY.Close(); err != nil {
    		t.Errorf("closing procTTY: %v", err)
    	}
    
    	if err := controlW.Close(); err != nil {
    		t.Errorf("closing controlW: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/block.go

    	v.Uses++
    }
    
    // ResetControls sets the number of controls for the block to 0.
    func (b *Block) ResetControls() {
    	if b.Controls[0] != nil {
    		b.Controls[0].Uses--
    	}
    	if b.Controls[1] != nil {
    		b.Controls[1].Uses--
    	}
    	b.Controls = [2]*Value{} // reset both controls to nil
    }
    
    // AddControl appends a control value to the existing list of control values.
    func (b *Block) AddControl(v *Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

    }
    // CHECK-NEXT: %[[VAR:.*]], %[[CONTROL:.*]] = tfl.control_node controls "tfl.var_handle"
    // CHECK-NEXT: return %[[VAR]]
    
    
    // CHECK-LABEL: @tfl_call_once_gets_control_node
    func.func @tfl_call_once_gets_control_node() -> () {
      "tfl.call_once"() { session_init_function = "noop" } : () -> ()
      func.return
    }
    // CHECK-NEXT: control_node controls "tfl.call_once"
    // CHECK-NEXT: return
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(tf-functional-control-flow-to-regions{allow-passthrough-args})' -split-input-file -verify-diagnostics | FileCheck %s
    
    // Simple If
    // CHECK: func private @testIf1Then{{.+}}
    // CHECK: func private @testIf1Else{{.+}}
    func.func private @testIf1Then(tensor<*xf32>) -> tensor<*xf32>
    func.func private @testIf1Else(tensor<*xf32>) -> tensor<*xf32>
    
    // CHECK-LABEL: func @testIf1Result(%arg0: tensor<i1>, %arg1: tensor<*xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

    $(document).ready(function () {
    
        // Attach controls for column groups in tables
        var controls = $("div#controls");
        var groups = [];
        var slices = [];
        $("tr.control-groups").closest("table").find("tr").each(function() {
            var row = $(this);
            if (row.hasClass('control-groups')) {
                var currentCol = 0;
                slices = [];
                row.find("th").each(function(){
                    var e = $(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/fuse_comparisons.go

    		return false
    	}
    
    	// Don't merge control values if b is likely to be bypassed anyway.
    	if p.Likely == BranchLikely && p.Succs[0].Block() != b {
    		return false
    	}
    	if p.Likely == BranchUnlikely && p.Succs[1].Block() != b {
    		return false
    	}
    
    	// Check if the control values combine to make an integer inequality that
    	// can be further optimized later.
    	bc := b.Controls[0]
    	pc := p.Controls[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/convert-tf-control-flow-to-scf.mlir

    // RUN: tf-opt -convert-tf-control-flow-to-scf %s | FileCheck %s
    
    // `tf.IfRegion` which returns values gets converted to `scf.if`.
    func.func private @test_if_then1(tensor<4xf32>) -> tensor<4xf32>
    func.func private @test_if_else1(tensor<4xf32>) -> tensor<4xf32>
    // CHECK-LABEL: func @test_supported_lowering_of_tf_if_region1
    // CHECK-SAME: (%[[ARG0:.*]]: tensor<i1>, %[[ARG1:.*]]: tensor<4xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Ascii.java

       * controls in data communication networks.
       *
       * @since 8.0
       */
      public static final byte DLE = 16;
    
      /**
       * Device Control 1. Characters for the control of ancillary devices associated with data
       * processing or telecommunication systems, more especially switching devices "on" or "off." (If a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
Back to top