Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,561 for fanout (0.12 sec)

  1. src/cmd/compile/internal/ssa/layout.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    // layout orders basic blocks in f with the goal of minimizing control flow instructions.
    // After this phase returns, the order of f.Blocks matters and is the order
    // in which those blocks will appear in the assembly output.
    func layout(f *Func) {
    	f.Blocks = layoutOrder(f)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/adjust-layout.mlir

    func.func @infeed_dequeue_tuple() -> (tensor<1x8x4x4xi32>, tensor<1x100x1xf32>) {
      // CHECK: [[TOKEN:%.*]] = mhlo.create_token : !mhlo.token
      %0 = "mhlo.create_token"() : () -> !mhlo.token
    
      // CHECK:               [[INFEED:%.*]]:3 = "mhlo.infeed"([[TOKEN]]) <{
      // CHECK-SAME{LITERAL}:   infeed_config = "", layout = [[1, 3, 2, 0], [1, 2, 0]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 817 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu-dynamic-layout-pass.mlir

    // RUN: tf-opt %s -split-input-file -tf-tpu-dynamic-layout-pass | FileCheck %s
    
    // Tests that the pass can transform non-replicated execution.
    
    // CHECK: func @non_replicated(%[[ARG0:.*]]: tensor<*x!tf_type.resource> {tf.device = "/device:CPU:0"}) -> tensor<i32>
    func.func @non_replicated(%arg0: tensor<*x!tf_type.resource> {tf.device = "/device:CPU:0"}) -> tensor<i32> {
      // CHECK: %[[COMPILE:.*]]:2 = "tf_device.launch"
      // CHECK-NEXT: "tf._TPUCompileMlir"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

            expect:
            def layout = locator.getLayoutFor(currentDir, tmpDir.testDirectory)
            layout.rootDirectory == currentDir
            layout.settingsDir == currentDir
            layout.settingsFile == new File(currentDir, "settings.gradle") // this is the current behaviour
            layout.buildDefinitionMissing
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

                println "build dir: " + project.buildDir
                layout.buildDirectory.convention(layout.projectDirectory.dir("out"))
                println "build dir 2: " + project.buildDir
                layout.buildDirectory = layout.projectDirectory.dir("target")
                println "build dir 3: " + project.buildDir
                layout.buildDirectory.convention(layout.projectDirectory.dir("out"))
                println "build dir 4: " + project.buildDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/services/kotlin/settings.gradle.kts

    import org.gradle.initialization.layout.BuildLayout
    
    rootProject.name = "services"
    
    // tag::build-layout[]
    println("Root Directory: ${settings.layout.rootDirectory}")
    println("Settings Directory: ${settings.layout.settingsDirectory}")
    // end::build-layout[]
    
    // tag::build-layout-inject[]
    abstract class MyBuildLayoutPlugin @Inject constructor(private val buildLayout: BuildLayout) : Plugin<Settings> {
        override fun apply(settings: Settings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 559 bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/LayoutToPropertiesConverterTest.groovy

            when:
            def properties = properties()
            def layout = layout(properties)
            gradleHome.file("gradle.properties") << "foo=bar"
    
            then:
            converter.convert(properties, layout).properties.foo == null
        }
    
        def "configures from installation home dir"() {
            when:
            def properties = properties()
            def layout = layout(properties)
            rootDir.file("settings.gradle") << ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/copy/kotlin/build.gradle.kts

    tasks.register<Copy>("copyReportsForArchiving") {
        from(layout.buildDirectory.file("reports/my-report.pdf"), layout.projectDirectory.file("src/docs/manual.pdf"))
        into(layout.buildDirectory.dir("toArchive"))
    }
    // end::copy-multiple-files-example[]
    
    // tag::copy-multiple-files-with-flat-filter-example[]
    tasks.register<Copy>("copyPdfReportsForArchiving") {
        from(layout.buildDirectory.dir("reports"))
        include("*.pdf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. src/time/format.go

    			if len(layout) >= i+2 && '1' <= layout[i+1] && layout[i+1] <= '6' {
    				return layout[0:i], std0x[layout[i+1]-'1'], layout[i+2:]
    			}
    			if len(layout) >= i+3 && layout[i+1] == '0' && layout[i+2] == '2' {
    				return layout[0:i], stdZeroYearDay, layout[i+3:]
    			}
    
    		case '1': // 15, 1
    			if len(layout) >= i+2 && layout[i+1] == '5' {
    				return layout[0:i], stdHour, layout[i+2:]
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. pkg/ctrlz/fw/context.go

    	JSONRouter() *mux.Router
    
    	// Layout is the template used as the primary layout for the topic's HTML content.
    	Layout() *template.Template
    }
    
    type context struct {
    	htmlRouter *mux.Router
    	jsonRouter *mux.Router
    	layout     *template.Template
    }
    
    // NewContext creates a new TopicContext.
    func NewContext(htmlRouter *mux.Router, jsonRouter *mux.Router, layout *template.Template) TopicContext {
    	return context{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top