Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 776 for launches (0.24 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/registry/flowcontrol/rest/storage_flowcontrol.go

    	return storage, nil
    }
    
    // GroupName returns group name of the storage
    func (p RESTStorageProvider) GroupName() string {
    	return flowcontrol.GroupName
    }
    
    // PostStartHook returns the hook func that launches the config provider
    func (p RESTStorageProvider) PostStartHook() (string, genericapiserver.PostStartHookFunc, error) {
    	bce := &bootstrapConfigurationEnsurer{
    		informersSynced: []cache.InformerSynced{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

    }
    
    def ExtractHeadTailOutsideCompilationPass : Pass<"tf-extract-head-tail-outside-compilation", "ModuleOp"> {
      let summary = "Extracts head or tail outside compilation to separate host launches before/after device cluster.";
    
      let description = [{
        This pass extracts a CPU computation cluster with `_xla_outside_compilation`
        annotation from the head or tail of a Device cluster.
    
        For example:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    					<-ch
    					done.Done()
    				}()
    				for j := 0; j < i; j++ {
    					// Spin for longer and longer as the test goes on. This
    					// goroutine will do O(N^2) work with the number of
    					// goroutines it launches. This should be slow relative to
    					// the work involved in collecting a goroutine profile,
    					// which is O(N) with the high-water mark of the number of
    					// goroutines in this process (in the allgs slice).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top