Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 197 for prebuilt (0.2 sec)

  1. testing/performance/src/templates/native-monolithic/prebuilt.gradle

    model {
        repositories {
            libs(PrebuiltLibraries) {
                <% prebuiltLibraries.times { %>
                prebuilt$it {
                    headers.with {
                        srcDir "prebuilt/lib$it/include"
                        include "**/*.h"
                    }
                    // TODO: Define library locations (and generate something?)
                }
                <% } %>
    
                commonHeaders {
                    headers.with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 735 bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-monolithic/src/prebuilt.h

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 188 bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinaryTest.groovy

        def "has useful string representation"() {
            expect:
            binary.toString() == "prebuilt static library 'lib:name'"
            binary.displayName == "prebuilt static library 'lib:name'"
            binary.linkFiles.toString() == "link files for prebuilt static library 'lib:name'"
            binary.runtimeFiles.toString() == "runtime files for prebuilt static library 'lib:name'"
        }
    
        def "can set static library file"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinaryTest.groovy

        def "has useful string representation"() {
            expect:
            binary.toString() == "prebuilt shared library 'lib:name'"
            binary.displayName == "prebuilt shared library 'lib:name'"
            binary.linkFiles.toString() == "link files for prebuilt shared library 'lib:name'"
            binary.runtimeFiles.toString() == "runtime files for prebuilt shared library 'lib:name'"
        }
    
        def "uses library file when link file not set"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

            failure.assertHasCause("Static library file not set for prebuilt static library 'hello:${NativePlatformsTestFixture.defaultPlatformName}DebugDefaultStatic'.")
        }
    
        @ToBeFixedForConfigurationCache
        def "produces reasonable error message when prebuilt library output file does not exist"() {
            given:
            buildFile << """
    apply plugin: 'cpp'
    model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltLibrary.java

            this.name = name;
            headers = objectFactory.sourceDirectorySet("headers", "headers for prebuilt library '" + name + "'");
            binaries = domainObjectCollectionFactory.newDomainObjectSet(NativeLibraryBinary.class);
        }
    
        @Override
        public String toString() {
            return "prebuilt library '" + name + "'";
        }
    
        @Override
        public String getName() {
            return name;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltLibraryTest.groovy

    package org.gradle.nativeplatform.internal.prebuilt
    
    
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class DefaultPrebuiltLibraryTest extends Specification {
        def "has useful display name"() {
            def lib = new DefaultPrebuiltLibrary("someLib", TestUtil.objectFactory(), TestUtil.domainObjectCollectionFactory())
    
            expect:
            lib.toString() == "prebuilt library 'someLib'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def prebuilt() {
            given:
            inDirectory(prebuilt.dir.file("3rd-party-lib/util"))
            run "assemble"
    
            and:
            sample prebuilt
    
            when:
            succeeds "assemble"
    
            then:
    
            executable(prebuilt.dir.file("build/exe/main/debug/main")).exec().out ==
    """Built with Boost version: 1_55
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. .github/bot_config.yml

    # Cuda Comment
    cuda_comment: >
       From the template it looks like you are installing **TensorFlow** (TF) prebuilt binaries:
          * For TF-GPU - See point 1
          * For TF-CPU - See point 2
       -----------------------------------------------------------------------------------------------
       
       **1. Installing **TensorFlow-GPU** (TF) prebuilt binaries**
       
       
       Make sure you are using compatible TF and CUDA versions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. tools/docker

    if [[ -f ${LOCAL_OUT}/docker-builder ]]; then
      CURRENT_BUILD="$(./common/scripts/report_build_info.sh | grep buildGitRevision | cut -d= -f2)"
      PREBUILT="$(${LOCAL_OUT}/docker-builder --version)"
      CODE_CHG="$(git diff HEAD -- ./tools/docker-builder)"
      if [[ "${CURRENT_BUILD}" != "${PREBUILT}" ]] || [[ -n "${CODE_CHG}" ]]; then
        GOOS=${LOCAL_GO_OS} GOARCH=${LOCAL_GO_ARCH} ./common/scripts/gobuild.sh ${LOCAL_OUT}/docker-builder ./tools/docker-builder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 07 22:50:06 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top