Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 419 for setchl (0.45 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands_legacy.mlir

          }) {} : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK:      [[ISLAND_0_CTRL:%.+]] = tf_executor.island {
    // CHECK:        tf_executor.yield
    // CHECK:      [[ISLAND_1_CTRL:%.+]] = tf_executor.island {
    // CHECK:        tf_executor.yield
    // CHECK:      tf_executor.fetch [[ISLAND_0_CTRL]], [[ISLAND_1_CTRL]] :
    
    
    // CHECK-LABEL: func @testDataOperandsAndResults
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "everything has convention and nothing set"        | setAll("convention", "convention") | ""                    | """id = convention\nbar = convention"""
            "everything has convention and is set"             | setAll("convention", "convention") | setAll("test", "baz") | """id = test\nbar = baz"""
        }
    
        def "sensible error when conventions are set more than once (#testCase)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/split_into_island_per_op.mlir

          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    // Test that functions' graph op must have a single island op and a single fetch
    // op, otherwise, the pass will signal failure.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/reuse_git.txt

    # clean the module cache, make sure that makes go mod download re-run git fetch, clean again
    go clean -modcache
    go mod download -x -json vcs-test.golang.org/git/hello.git@latest
    stderr 'git( .*)* fetch'
    go clean -modcache
    
    # reuse go mod download vcstest/hello result
    go mod download -reuse=hello.json -x -json vcs-test.golang.org/git/hello.git@latest
    ! stderr 'git( .*)* fetch'
    stdout '"Reuse": true'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island_legacy.mlir

          tf_executor.yield
        }
        tf_executor.fetch %1 : !tf_executor.control
      }
      func.return
    }
    
    // CHECK: %[[REPLICA_0:.*]] = tf_executor.island
    // CHECK: %[[REPLICA_1:.*]] = tf_executor.island
    // CHECK: %[[SINK:.*]] = tf_executor.island(%[[REPLICA_0]], %[[REPLICA_1]])
    // CHECK: tf_executor.fetch %[[SINK]]
    
    
    // Tests unused replica are pinned to the graph fetch.
    // CHECK-LABEL: func @unused_replica
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/executor_canonicalize.mlir

    func.func @empty_graphs(%arg0 : tensor<i1>, %arg1 : tensor<i1>) -> (tensor<i1>, tensor<i1>) {
      %0 = tf_executor.graph {
        tf_executor.fetch %arg1 : tensor<i1>
      }
      tf_executor.graph {
        tf_executor.fetch
      }
      %1 = tf_executor.graph {
        tf_executor.fetch %arg0 : tensor<i1>
      }
      func.return %0, %1 : tensor<i1>, tensor<i1>
    }
    
    // CHECK-NEXT: return %[[ARG_1]], %[[ARG_0]] : tensor<i1>, tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            target.setName(source.getName().getOrNull());
            target.setUrl(source.getUrl().getOrNull());
            return target;
        }
    
        private static License convertLicense(MavenPomLicense source) {
            License target = new License();
            target.setName(source.getName().getOrNull());
            target.setUrl(source.getUrl().getOrNull());
            target.setDistribution(source.getDistribution().getOrNull());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/RepositoriesBuilder.groovy

                }
            }
        }
    
        void maven(URI uri) {
            sections << new GenericSection({ """maven { url "$uri" }""" }, { """maven { setUrl("$uri") }""" })
        }
    
        void ivy(URI uri) {
            sections << new GenericSection({ """ivy { url "$uri" }""" }, { """ivy { setUrl("$uri") }""" })
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island.mlir

          tf_executor.yield
        }
        tf_executor.fetch %1 : !tf_executor.control
      }
      func.return
    }
    
    // CHECK: %[[REPLICA_0:.*]] = tf_executor.island
    // CHECK: %[[REPLICA_1:.*]] = tf_executor.island
    // CHECK: %[[SINK:.*]] = tf_executor.island(%[[REPLICA_0]], %[[REPLICA_1]])
    // CHECK: tf_executor.fetch %[[SINK]]
    
    
    // Tests unused replica are pinned to the graph fetch.
    // CHECK-LABEL: func @unused_replica
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

         * It is not interpreted relative the URL specified in {@link #setUrl(Object)}.
         *
         * Patterns added in this way will be in addition to any layout-based patterns added via {@link #setUrl(Object)}.
         *
         * @param pattern The artifact pattern.
         */
        void artifactPattern(String pattern);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top