Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 780 for Compilation (0.16 sec)

  1. tensorflow/compiler/jit/device_compiler_disable_test.cc

      // Check that lazy compilation is disallowed.
      status = xla_device_compiler->CompileIfNeeded(
          XlaCompiler::Options{}, fn, args, XlaCompiler::CompileOptions{},
          DeviceCompileMode::kLazy, profiler, &compilation_result, &executable);
      EXPECT_FALSE(status.ok());
      EXPECT_TRUE(absl::StrContains(status.message(), "XLA compilation disabled"));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compilerFacility/FirIdeNormalAnalysisLibrarySourceModuleCompilerFacilityTestGenerated.java

        runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/multipleFiles.kt");
      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/simple.kt");
      }
    
      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments")
      @TestDataPath("$PROJECT_ROOT")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.h

    // host_compute_core: mapping from outside compilation cluster name to XLA
    //   device assignment.
    // fld: FunctionLibraryDefinition object.
    // host_graph: Graph object to store host side graph for all outside
    //   compilations within this XLA computation func. If there is no outside
    //   compilation, it will be empty.
    // shape_inference_graphs: a list of outside compilation shape inference
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishExternalVariantIntegrationTest.groovy

            given:
            publishes(multiCoordinateComponent {
                compilation("first")
                compilation("second") {
                    attributes = "attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, 'second'))"
                    capabilities = "capability('org:other-second:1.0')"
                }
                compilation("third") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGeneratorTest.groovy

                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
            def expectedJvmInterceptors = source """
                package my;
                public class InterceptorDeclaration_GroovyBytecodeImpl {
                }
            """
            assertThat(compilation).succeededWithoutWarnings()
            assertThat(compilation)
                .generatedSourceFile(fqName(expectedJvmInterceptors))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:48:43 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. 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)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalNativeCompilerTest.groovy

        def "updates spec for incremental compilation"() {
            def spec = Mock(NativeCompileSpec)
            def newSource = temporaryFolder.file("new")
            def removedSource = temporaryFolder.file("removed")
    
            def compilation = Mock(IncrementalCompilation)
    
            when:
            compilation.getRecompile() >> [newSource]
            compilation.getRemoved() >> [removedSource]
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/types/InstrumentedTypesResourceGeneratorTest.groovy

                        return "";
                    }
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
            assertThat(compilation).succeededWithoutWarnings()
            assertThat(compilation)
                    .generatedFile(CLASS_OUTPUT, "META-INF/gradle/instrumentation/instrumented-classes.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/jit/device_compilation_profiler_test.cc

      constexpr int64_t kDefaultCompilationThreshold = 2;
    
      // Should allow compilation since this is the first execution.
      profiler->RegisterExecution(function);
      EXPECT_TRUE(
          profiler->ShouldCompileCluster(function, DeviceCompileMode::kLazy, 0));
    
      // Shouldn't allow compilation until compilation has been requested at least
      // kDefaultCompilationThreshold times.
      profiler->RegisterExecution(function);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 22 21:06:33 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top