Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for unroll (0.16 sec)

  1. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/TaskReportContainerTest.groovy

    import org.gradle.api.tasks.Nested
    import org.gradle.api.tasks.TaskPropertyTestUtils
    import org.gradle.internal.reflect.Instantiator
    import org.gradle.testfixtures.ProjectBuilder
    import spock.lang.Specification
    import spock.lang.Unroll
    
    class TaskReportContainerTest extends Specification {
    
        final Project project = ProjectBuilder.builder().build()
        final TestTask task = project.task("testTask", type: TestTask)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.h

    };
    
    // Unroll split into a bunch of slice ops.
    struct UnrollSplit : public OpRewritePattern<TFL::SplitOp> {
      using OpRewritePattern<TFL::SplitOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TFL::SplitOp split_op,
                                    PatternRewriter& rewriter) const override;
    };
    
    // Unroll splitv into a bunch of slice ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 03 16:37:16 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/core/util/matmul_bcast.h"
    
    namespace mlir {
    namespace TF {
    
    // Populate patterns to unroll tf.BatchMatMulV2 op into a sequence of TF ops.
    // Since TFLite does not support BatchMatMul operation, it unrolls a BatchMatMul
    // op into tf.Reshape, tf.Slice, tf.MatMul, tf.Pack, and tf.Reshape ops.
    void PopulateUnrollTfBatchMatMul(MLIRContext* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 27 15:05:02 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeaturePublishingIntegrationTest.groovy

    package org.gradle.java
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.test.fixtures.maven.AbstractMavenModule
    import org.gradle.test.fixtures.maven.MavenFileRepository
    import spock.lang.Unroll
    
    class JavaLibraryFeaturePublishingIntegrationTest extends AbstractIntegrationSpec {
        MavenFileRepository publishRepo
        AbstractMavenModule module
    
        def setup() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/BuildInvocationsBuilderTest.groovy

    import org.gradle.util.TestUtil
    import org.gradle.util.UsesNativeServices
    import org.junit.ClassRule
    import spock.lang.Shared
    import spock.lang.Specification
    import spock.lang.Unroll
    
    @UsesNativeServices
    @CleanupTestDirectory
    class BuildInvocationsBuilderTest extends Specification {
        @Shared
        @ClassRule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopySpecInternal.java

            int getAdditionIndex();
    
            CopySpecAddress append(CopySpecInternal spec, int additionIndex);
    
            CopySpecAddress append(CopySpecAddress relativeAddress);
    
            CopySpecResolver unroll(StringBuilder path);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. testing/performance/docs/performance-bisect.md

    We modify `RealWorldNativePluginPerformanceTest` to only include the test we are interested in:
    ```java
        @Ignore
        @Unroll("Project '#testProject' measuring incremental build speed")
        def "build real world native project"() {
    ...
    }
    
        @Unroll('Project #buildSize native build #changeType')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Protocol.kt

         *
         * @throws IOException if `protocol` is unknown.
         */
        @JvmStatic
        @Throws(IOException::class)
        fun get(protocol: String): Protocol {
          // Unroll the loop over values() to save an allocation.
          @Suppress("DEPRECATION")
          return when (protocol) {
            HTTP_1_0.protocol -> HTTP_1_0
            HTTP_1_1.protocol -> HTTP_1_1
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/inline/inlheur/function_properties.go

    // the properties are guaranteed to be true in 100% of cases. For this
    // reason, properties should only be used to drive always-safe
    // optimization decisions (e.g. "should I inline this call", or
    // "should I unroll this loop") as opposed to potentially unsafe IR
    // alterations that could change program semantics (e.g. "can I delete
    // this variable" or "can I move this statement to a new location").
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/unfold.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package schema
    
    // Unfold expands vendor extensions of a structural schema.
    // It mutates the receiver.
    func (s *Structural) Unfold() *Structural {
    	if s == nil {
    		return nil
    	}
    
    	mapper := Visitor{
    		Structural: func(s *Structural) bool {
    			if !s.XIntOrString {
    				return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 11 16:10:43 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top