Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 944 for crunch (0.21 sec)

  1. test/codegen/compare_and_branch.go

    package codegen
    
    //go:noinline
    func dummy() {}
    
    // Signed 64-bit compare-and-branch.
    func si64(x, y chan int64) {
    	// s390x:"CGRJ\t[$](2|4), R[0-9]+, R[0-9]+, "
    	for <-x < <-y {
    		dummy()
    	}
    
    	// s390x:"CL?GRJ\t[$]8, R[0-9]+, R[0-9]+, "
    	for <-x == <-y {
    		dummy()
    	}
    }
    
    // Signed 64-bit compare-and-branch with 8-bit immediate.
    func si64x8(doNotOptimize int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. Jenkinsfile.its

        buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '5'))
        timeout(time: 180, unit: 'MINUTES')
      }
      parameters {
        string( defaultValue: 'master', description: 'Core Its branch (default master)',
                name: 'ITS_BRANCH' )
      }
      stages {
        stage("Build Maven Core") {
          steps {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Dec 26 16:42:35 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

          if_region.get_elseFuncNameAttr());
    
      // Create empty then branch region.
      auto& then_branch = host_side_if.getThenBranch();
      then_branch.push_back(new Block);
      builder.setInsertionPointToEnd(&then_branch.front());
      builder.create<mlir::TF::YieldOp>(if_region.getLoc(),
                                        /*operands=*/ArrayRef<Value>{});
    
      // Create empty else branch region.
      auto& else_branch = host_side_if.getElseBranch();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/device_canonicalize.mlir

    // Test empty launch with no results is folded away.
    // CHECK-LABEL: func @empty_launch_no_results
    func.func @empty_launch_no_results() {
      "tf_device.launch"() ({
        tf_device.return
      }) {device = "device"} : () -> ()
      func.return
    }
    
    // CHECK-NOT: tf_device.launch
    
    
    // Test empty launch with some results is folded away.
    // CHECK-LABEL: func @empty_launch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ivy/IvyModuleDescriptor.java

    /**
     * The metadata about an Ivy module that acts as an input to a component metadata rule.
     */
    public interface IvyModuleDescriptor {
        /**
         * Returns the branch attribute of the info element in this descriptor.
         *
         * @return the branch for this descriptor, or null if no branch was declared in the descriptor.
         */
        @Nullable
        String getBranch();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. RELEASE_BRANCHES.md

    for publication.
    
    This document outlines getting in new features after a new branch has been cut and the process for getting a PR
    merged in before and after the first public release.
    
    # Feature Freeze
    
    One week before a release, the release branch goes into a state of code freeze. At this point only critical release
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 23:27:43 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  7. .teamcity/pom.xml

                    <configuration>
                        <format>kotlin</format>
                        <dstDir>target/generated-configs</dstDir>
                        <contextParameters>
                            <Branch>${dslContextParameter.branch}</Branch>
                        </contextParameters>
                    </configuration>
                    <dependencies>
                        <dependency>
                            <groupId>org.jetbrains.kotlin</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:44:21 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

         * }
         *
         * If when-expression has no subject, then else-branch would be reported as missing even if it is explicitly present:
         *
         * fun test() {
         *     when {
         *         true -> {}
         *         else -> {}
         *     }
         * }
         *
         * Note that this function returns the same missing cases regardless of the existence of the else branch.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryBuildTypesIntegrationTest.groovy

                }
            }
            hello(NativeLibrarySpec)
        }
        binaries {
            all {
                if (buildType == buildTypes.debug) {
                    cppCompiler.define "FRENCH" // Equate 'debug' to 'french' for this test
                }
            }
        }
    }
            """
            and:
            succeeds "installMainDebugExecutable", "installMainReleaseExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island.mlir

    // CHECK:      tf_device.parallel_execute
    // CHECK:      tf_device.launch
    // CHECK:      <{device = "/TPU:1"}>
    // CHECK:      tf.OpA
    // CHECK:      tf_device.launch
    // CHECK:      <{device = "/TPU:2"}>
    // CHECK:      tf.OpB
    // CHECK:      _parallel_execution_ids = "r0:0"
    // CHECK:      tf_executor.island
    // CHECK:      tf_device.parallel_execute
    // CHECK:      tf_device.launch
    // CHECK:      <{device = "/TPU:1"}>
    // CHECK:      tf.OpA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top