Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 392 for Compilation (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/cpp-sourcesets-compilation.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/cpp-sourcesets-compilation.dot > src/docs/userguide/img/cpp-sourcesets-compilation.png
    digraph cppSourcesetsCompilation {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/swift-sourcesets-compilation.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/swift-sourcesets-compilation.dot > src/docs/userguide/img/swift-sourcesets-compilation.png
    digraph swiftSourcesetsCompilation {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/java-sourcesets-compilation.graffle

    java-sourcesets-compilation.graffle ApplicationVersionco.omnigroup.OmniGraffle7.MacAppStore186.9ColorProfilesdataAA/gAAAAUbWVhcwAABAwAAA+wEBAQcBDQETARkBHwElA+gIDAgwCFAIdAiYCLwI4A+wD+QQGBBMEIAQtBDsESARVB+BIwEmgSoBLYExATTBOEE+BQ0FHAUrBToFSQVYBWcF/B9IH5Qf4CAsIHwgyCEYI+EL+QwSDCoMQwxcDHUMjgynD/DpsOtg7SDu4PCQ8lD0EP/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8R+UUBhQnFEkUahSLFK0Uzh/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ3RoEG+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHC/HL/4wNTBsMKQw2zESMUoxgj/E0KzRlNJ402DUTNU01hz+ID5...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top