Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 830 for launches (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    class TfDevice_Op<string mnemonic, list<Trait> traits = []> :
        Op<TfDevice_Dialect, mnemonic, traits> { }
    
    def TfDevice_LaunchOp : TfDevice_Op<"launch",
        [SingleBlockImplicitTerminator<"ReturnOp">]> {
      let summary = [{
    The `tf_device.launch` op launches containing operations on target device.
      }];
    
      let description = [{
    This op captures all needed live-in values.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/launch_outlining.mlir

    }
    
    // CHECK: func private @[[LAUNCH]]
    // CHECK-SAME: () -> tensor<?xi32>
    // CHECK: %[[A_OUTPUT:[0-9]*]] = "tf.A"()
    // CHECK: return %[[A_OUTPUT]]
    
    // -----
    
    // Tests launch attributes are copied over to launch_func.
    
    // CHECK-LABEL: func @launch_attrs
    func.func @launch_attrs() -> tensor<?xi32> {
      %0 = "tf_device.launch"() ({
        %1 = "tf.A"() : () -> tensor<?xi32>
        tf_device.return %1 : tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/go/printer/performance_test.go

    	if err := (&Config{TabIndent | UseSpaces | normalizeNumbers, 8, 0}).Fprint(out, fset, node); err != nil {
    		log.Fatalf("print error: %s", err)
    	}
    }
    
    // cannot initialize in init because (printer) Fprint launches goroutines.
    func initialize() {
    	const filename = "testdata/parser.go"
    
    	src, err := os.ReadFile(filename)
    	if err != nil {
    		log.Fatalf("%s", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:10:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux_test.go

    			}
    			r <- v
    			if once {
    				break
    			}
    			runtime.UnlockOSThread()
    		}
    	}
    
    	// launches per fns member.
    	const launches = 11
    	question := make(chan uintptr)
    	response := make(chan uintptr)
    	defer close(question)
    
    	routines := 0
    	for i, v := range fns {
    		for j := 0; j < launches; j++ {
    			// Add another goroutine - the closest thing
    			// we can do to encourage more OS thread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildLauncher.java

     * <ul>
     * <li>Create an instance of {@code BuildLauncher} by calling {@link org.gradle.tooling.ProjectConnection#newBuild()}.
     * <li>Configure the launcher as appropriate.
     * <li>Call either {@link #run()} or {@link #run(ResultHandler)} to execute the build.
     * <li>Optionally, you can reuse the launcher to launch additional builds.
     * </ul>
     *
     * Example:
     * <pre class='autoTested'>
     * ProjectConnection connection = GradleConnector.newConnector()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/WrapperExecutorTest.groovy

            wrapper.configuration.networkTimeout == Download.DEFAULT_NETWORK_TIMEOUT_MILLISECONDS
            wrapper.configuration.validateDistributionUrl
        }
    
        def "execute installs distribution and launches application"() {
            def wrapper = WrapperExecutor.forWrapperPropertiesFile(propertiesFile)
            def installDir = tmpDir.file('install')
    
            when:
            wrapper.execute(['arg'] as String[], install, start)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_ops.td

      }];
    }
    
    def AsyncOp: Mlrt_Op<"async", []> {
      let summary = "Launches a function asynchronously.";
    
      let description = [{
        Launch a function asynchronously.
    
        $args: a list of arguments to be passed.
        $callee: The function to be launched. Its return op must not have operands.
    
        $handle: This op returns a handle object that manages the context of the async execution.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. cmd/admin-heal-ops.go

    		// Heal sequence explicitly stopped, remove it.
    		delete(ahs.healSeqMap, path)
    	}
    
    	b, err := json.Marshal(&hsp)
    	return b, toAdminAPIErr(GlobalContext, err)
    }
    
    // LaunchNewHealSequence - launches a background routine that performs
    // healing according to the healSequence argument. For each heal
    // sequence, state is stored in the `globalAllHealState`, which is a
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. src/go/doc/testdata/benchmark.go

    func (b *B) run() BenchmarkResult {
    	go b.launch()
    	<-b.signal
    	return b.result
    }
    
    // launch launches the benchmark function. It gradually increases the number
    // of benchmark iterations until the benchmark runs for a second in order
    // to get a reasonable measurement. It prints timing information in this form
    //		testing.BenchmarkHello	100000		19 ns/op
    // launch is run by the fun function as a separate goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue1435.go

    }
    
    // test1435 test 9 glibc implemented setuid/gid syscall functions are
    // mapped.  This test is a slightly more expansive test than that of
    // src/syscall/syscall_linux_test.go:TestSetuidEtc() insofar as it
    // launches concurrent threads from C code via CGo and validates that
    // they are subject to the system calls being tested. For the actual
    // Go functionality being tested here, the syscall_linux_test version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 21:31:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top