Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 343 for compilation$ (0.26 sec)

  1. tensorflow/compiler/jit/device_compilation_cluster_signature.h

    // to a kernel. Key that uniquely identifies a compilation output.
    struct DeviceCompilationClusterSignature {
      // Name of the cluster, built from the function name and it's attributes.
      string name;
    
      // List of args (either as a TensorTypeAndShape or as a Tensor value)
      // for compile-time constant arguments to the compilation, ordered by
      // argument number. Tensors must be in host memory.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		}),
    	}
    
    	legacyregistry.MustRegister(m.compilationTime)
    	legacyregistry.MustRegister(m.evaluationTime)
    
    	return m
    }
    
    // ObserveCompilation records a CEL compilation with the time the compilation took.
    func (m *CelMetrics) ObserveCompilation(elapsed time.Duration) {
    	seconds := elapsed.Seconds()
    	m.compilationTime.Observe(seconds)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 09 23:50:48 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/classpath/DefaultClassSetAnalyzer.java

            } catch (Exception e) {
                accumulator.fullRebuildNeeded(classSet + " could not be analyzed for incremental compilation. See the debug log for more details");
                if (LOGGER.isDebugEnabled()) {
                    LOGGER.debug("Could not analyze " + classSet + " for incremental compilation", e);
                }
            }
    
            return accumulator.getAnalysis();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/groovy/crossCompilation/kotlin/settings.gradle.kts

    rootProject.name = "cross-compilation"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift5Test.groovy

                    """#if swift(>=6.0)
                            XCTFail("Compilation unit compiled with Swift 6+ instead of Swift 5.x");
                        #elseif swift(>=5.0)
                            // Do nothing
                        #else
                            XCTFail("Compilation unit compiled with Swift 4- instead of Swift 5.x");
                        #endif
                    """)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    CreateTPUClusterFormationPass(bool strict_clusters = false);
    
    // Creates a pass that extracts outside compilation (Host ops inside device
    // cluster) at head/tail of Device cluster to run before/after XLA computation.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>>
    CreateExtractHeadTailOutsideCompilationPass();
    
    // Creates a pass that extract outside compilation (Host ops inside cevice
    // cluster) ops to a separate parallel_execute region to run on CPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDoc.java

            return super.getSource();
        }
    
        /**
         * Returns the compilation outputs needed by Scaladoc filtered to include <a href="https://docs.scala-lang.org/scala3/guides/tasty-overview.html">TASTy</a> files.
         * <p>
         * NOTE: This is only useful with Scala 3 or later. Scala 2 only processes source files.
         * </p>
         * @return the compilation outputs produced from the sources
         * @since 7.3
         */
        @InputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskGroovyJavaJointIncrementalCompilationIntegrationTest.groovy

        boolean useJar = false
    
        def setup() {
            configureGroovyIncrementalCompilation()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/22531")
        def 'incremental compilation does not fail on api change referenced via static property when affected class is #bCompileStatic#bSuffix'() {
            given:
            // A is a private dependency of B1 and B1 is referenced in E1.isCacheEnabled through inheritance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
            outputContains("Groovy compilation avoidance is an incubating feature")
    
            when:
            configurationCacheRun("compileGroovy", "--rerun-tasks")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("Groovy compilation avoidance is an incubating feature")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

            when:
            succeeds ':compileJava' // the internal class can be accessed
    
            then:
            javaClassFile('consumer/MainModule.class').exists()
        }
    
        def "fails module compilation for missing requires"() {
            given:
            publishJavaModule('moda')
            consumingModuleInfo()
            consumingModuleClass('moda.ModaClass')
    
            when:
            fails ':compileJava'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top