Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 606 for launches (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. src/go/doc/testdata/testing.1.golden

    	func (b *B) StartTimer()
    
    	// StopTimer stops timing a test. This can be used to pause the ...
    	func (b *B) StopTimer()
    
    	// launch launches the benchmark function. It gradually increases ...
    	func (b *B) launch()
    
    	// log generates the output. It's always at the same stack depth. 
    	func (c *B) log(s string)
    
    	// 
    	func (b *B) nsPerOp() int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec.groovy

            when:
            withBuild { BuildLauncher launcher ->
                launcher.forLaunchables(includedSelector)
            }
    
            then:
            thrown(BuildException)
    
            when:
            withBuild { BuildLauncher launcher ->
                launcher.forLaunchables(includedTask)
            }
    
            then:
            thrown(BuildException)
        }
    
        def "Still can launch tasks from non-included subprojects"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/extract_tpu_copy_with_dynamic_shape_op.cc

        new_launch_op_results.remove(result);
      }
    
      return new_launch_op_results.takeVector();
    }
    
    // Create a new host launch op which contains all the old launch op body
    // except the dynamic shape copy op.
    tf_device::LaunchOp CreateNewHostLaunchOpWithNewResult(
        tf_device::LaunchOp* old_launch_op,
        llvm::SmallVector<Value, 4>& new_launch_op_results) {
      OpBuilder builder(*old_launch_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top