Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for Compilation (0.18 sec)

  1. tensorflow/compiler/jit/encapsulate_util.h

    // Attribute indicating that this is an IdentityN node receiving inputs for a
    // outside compilation Placeholder node (the original outside compilation node
    // is moved out of TPU computation, and we left a Placeholder node there).
    // Attribute value will be a string, which is the outside compilation cluster
    // name for the outside compilation Placeholder node.
    extern const char kXlaOutsideCompilationInputsAttrName[];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/internal/abi/compiletype.go

    // either unsafe.Sizeof and Alignof, nor runtime, reflect, or reflectlite.
    
    // CommonSize returns sizeof(Type) for a compilation target with a given ptrSize
    func CommonSize(ptrSize int) int { return 4*ptrSize + 8 + 8 }
    
    // StructFieldSize returns sizeof(StructField) for a compilation target with a given ptrSize
    func StructFieldSize(ptrSize int) int { return 3 * ptrSize }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 03:01:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileProblemsIntegrationTest.groovy

                }
            """
        }
    
        def "when doing a join compilation java problems are formatted the same as a standalone compication"() {
            given:
            file("src/main/groovy/JavaThing.java") << """\
                public class JavaThing {
                    public void badMethod() {
                        // The following line will cause a compilation error
                        return "Hello, World!"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 16:25:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/GradleCoreProblemGroup.java

            private final ProblemGroup java = new DefaultProblemGroup("java", "Java compilation", this);
            private final ProblemGroup groovy = new DefaultProblemGroup("groovy", "Groovy compilation", this);
            public ProblemGroup groovyDsl = new DefaultProblemGroup("groovy-dsl", "Groovy DSL script compilation", this);
    
            private DefaultCompilationProblemGroup(String id, String displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

    import java.io.File
    
    /**
     * In-memory compilation result returned from [KaCompilerFacility].
     *
     * Compilation fails if there are critical errors reported either on the frontend or on the backend side.
     * Keep in mind that [KaCompilationResult] is a part of Analysis API, so it should only be used inside an analysis block.
     */
    public sealed class KaCompilationResult {
        /**
         * Successful compilation result.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'compilation:java:initialization-failed' : 'Java compilation initialization error',
            'compilation:java:java-compilation-error' : 'Java compilation error',
            'compilation:java:java-compilation-failed' : 'Java compilation error',
            'compilation:java:java-compilation-warning' : 'Java compilation warning',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    	c := &Controller{}
    	if filter != nil {
    		compilation := cel.Compiler.CompileCELExpression(filter.Selector, environment.StoredExpressions)
    		if compilation.Error != nil {
    			// Shouldn't happen because of validation.
    			return nil, fmt.Errorf("compile class filter CEL expression: %w", compilation.Error)
    		}
    		c.filter = &compilation
    	}
    	for _, request := range requests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsResourceGeneratorTest.groovy

                    ) {
                    }
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
            assertThat(compilation).succeededWithoutWarnings()
            assertThat(compilation)
                .generatedFile(CLASS_OUTPUT, "META-INF/services/org.gradle.internal.classpath.intercept.FilterableCallInterceptor")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:46:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compilation_profiler.cc

                << " because it is megamorphic.";
        return false;
      }
    
      // TODO(b/255826209): Figure out if Lazy compilation is still needed given
      // that we always compile a cluster the first time it is executed (explained
      // below) regardless of compilation mode. If it is not, clean up the related
      // logic.
      // We always compile a cluster the very first time it is executed.  This is an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_compile_util.h

    #include <memory>
    #include <string>
    
    #include "tensorflow/compiler/tf2xla/xla_argument.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    // The number of compiler threads to use for asynchronous device compilation.
    inline constexpr int64_t kNumAsyncDeviceCompilerThreads = 10;
    
    enum class DeviceCompileMode {
      kLazy,
      kStrict,
      kAsync,
    };
    
    enum class DeviceCompileState {
      kUncompiled,
      kCompiling,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top