Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 534 for setchl (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning.mlir

          tf_executor.yield %arg0 : i32
        }
        %2:2 = tf_executor.island {
          tf_executor.yield %1#0 : i32
        }
        tf_executor.fetch %2#0 : i32
      }
      func.return %0 : i32
    }
    
    // Check that an unused island that doesn't contribute to the fetch is removed.
    // CHECK-LABEL: func @dead_island(
    func.func @dead_island(%arg0 : i32) -> i32 {
    // CHECK: tf_executor.island
    // CHECK-NOT: tf_executor.island
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

                   tf_executor.yield
                 }
                 tf_executor.fetch %island : !tf_executor.control
              }
              "tf.Yield"() : () -> ()
            }) {is_stateless = false} : (tensor<i1>) -> ()
          tf_executor.yield
        }
        tf_executor.fetch %island : !tf_executor.control
      }
      func.return
    }
    
    // Test propagation through WhileRegion (inlined calls)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  9. 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)
  10. pkg/kube/krt/join_test.go

    	})
    
    	ExtraSimplePods.Set(nil)
    	assert.EventuallyEqual(t, fetch, []SimpleEndpoint{
    		{pod.Name, svc.Name, pod.Namespace, "1.2.3.4"},
    	})
    
    	pod.Status.PodIP = "1.2.3.5"
    	pc.UpdateStatus(pod)
    	assert.EventuallyEqual(t, fetch, []SimpleEndpoint{{pod.Name, svc.Name, pod.Namespace, "1.2.3.5"}})
    
    	pc.Delete(pod.Name, pod.Namespace)
    	assert.EventuallyEqual(t, fetch, nil)
    
    	pod2 := &corev1.Pod{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top