Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,635 for Koop (0.05 sec)

  1. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

      func.return %arg0 : tensor<1xf32>
    }
    
    func.func @noop()->() {
      func.return
    }
    
    // CHECK-LABEL: @tf_if_gets_control_node
    func.func @tf_if_gets_control_node(%arg0: tensor<1xi1>)->() {
     "tf.If"(%arg0) {_lower_using_switch_merge = true, _read_only_resource_inputs = [], device = "", else_branch = @noop, is_stateless = false, output_shapes = [#tf_type.shape<>], then_branch = @noop} : (tensor<1xi1>) -> ()
     func.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)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/FactoryNamedDomainObjectContainerSpec.groovy

        def usesFactoryToCreateContainerElements() {
            def container = new FactoryNamedDomainObjectContainer<String>(String.class, instantiator, namer, factory, MutationGuards.identity(), CollectionCallbackActionDecorator.NOOP)
    
            when:
            def result = container.create('a')
    
            then:
            result == 'element a'
            1 * factory.create('a') >> 'element a'
            0 * _._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  3. src/internal/bytealg/indexbyte_arm.s

    //  R1: data length
    //  R2: byte to find
    //  R5: address to put result
    TEXT indexbytebody<>(SB),NOSPLIT,$0-0
    	MOVW	R0, R4		// store base for later
    	ADD	R0, R1		// end
    
    loop:
    	CMP	R0, R1
    	B.EQ	notfound
    	MOVBU.P	1(R0), R3
    	CMP	R2, R3
    	B.NE	loop
    
    	SUB	$1, R0		// R0 will be one beyond the position we want
    	SUB	R4, R0		// remove base
    	MOVW	R0, (R5)
    	RET
    
    notfound:
    	MOVW	$-1, R0
    	MOVW	R0, (R5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 07:37:13 UTC 2019
    - 951 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/gotoolchain_loop.txt

    stdout go1.21.99
    
    # Toolchain target mismatch should be detected.
    env TESTGO_VERSION_SWITCH=mismatch
    ! go version
    stderr '^go: toolchain go1.21.1 invoked to provide go1.21.99$'
    
    # Toolchain loop should be detected.
    env TESTGO_VERSION_SWITCH=loop
    ! go version
    stderr -count=10 '^go: switching from go1.21.1 to go1.21.99 \[depth 9[0-9]\]$'
    stderr -count=1 '^go: switching from go1.21.1 to go1.21.99 \[depth 100\]$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/while_licm.mlir

          "tf.Yield"(%ne) : (tensor<i1>) -> ()
        },
        {
          // loop body
          ^bb0(%barg0: tensor<4xf32>, %barg1: tensor<i32>):
          %add = "tf.Add"(%barg0, %barg0) : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32>
          %one = arith.constant dense<1> : tensor<i32>
          %sub = "tf.Sub"(%barg1, %one) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    
          // Some loop invariant math
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 03:28:59 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc_test.go

    			Goto("loop"),
    		),
    		Bloc("loop",
    			Valu("memphi", OpPhi, types.TypeMem, 0, nil, "mem", "call"),
    			Valu("call", OpAMD64CALLstatic, types.TypeMem, 0, AuxCallLSym("_"), "memphi"),
    			Valu("test", OpAMD64CMPBconst, types.TypeFlags, 0, nil, "cond"),
    			Eq("test", "next", "exit"),
    		),
    		Bloc("next",
    			Goto("loop"),
    		),
    		Bloc("exit",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/math/big/arith_arm.s

    	// first word
    	MOVW.P	4(R2), R6
    	MOVW	R6>>R3, R7
    	MOVW	R6<<R4, R6
    	MOVW	R6, c+28(FP)
    	B E6
    
    	// word loop
    L6:
    	MOVW.P	4(R2), R6
    	ORR	R6<<R4, R7
    	MOVW.P	R7, 4(R1)
    	MOVW	R6>>R3, R7
    E6:
    	TEQ	R1, R5
    	BNE	L6
    
    	MOVW	R7, 0(R1)
    	RET
    
    Y6:	// copy loop, because shift 0 == shift 32
    	MOVW.P	4(R2), R6
    	MOVW.P	R6, 4(R1)
    	TEQ R1, R5
    	BNE Y6
    
    X6:
    	MOVW	$0, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/func_attr.mlir

    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 458 : i32}} {
      func.func @main() {
        tf_executor.graph {
          %control = tf_executor.island wraps "tf.NoOp"() {_f = #tf_type.func<@callee, {attr2 = true, attr3 = 8.0 : f32}>} : () -> ()
          %control_1 = tf_executor.island(%control) wraps "tf.LegacyCall"() {f = @callee} : () -> ()
          tf_executor.fetch
        }
        func.return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 16:41:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Fourth, add all the inputs to sc_forward(). These all come from the
      // while loop operands or the non_tpu() call that's in the loop body. The
      // loop operands need to be pulled from the "i" (or "2") version of the
      // inputs. The inputs coming from non_tpu() are from the same loop iteration
      // (non_tpu_res_i).
      std::vector<Value> f_operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/watch/filter.go

    	return fw.result
    }
    
    // Stop stops the upstream watch, which will eventually stop this watch.
    func (fw *filteredWatch) Stop() {
    	fw.incoming.Stop()
    }
    
    // loop waits for new values, filters them, and resends them.
    func (fw *filteredWatch) loop() {
    	defer close(fw.result)
    	for event := range fw.incoming.ResultChan() {
    		filtered, keep := fw.f(event)
    		if keep {
    			fw.result <- filtered
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top