Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for prebuilt (0.15 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. .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)
  4. testing/performance/src/templates/native-monolithic/build.gradle

    subprojects {
        apply from: rootProject.file("common.gradle")
        apply from: rootProject.file("components.gradle")
    }
    
    apply from: file("common.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 191 bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-monolithic/components.gradle

                    // TODO: Use dependency graph builder to created a layered native build
                    <% prebuiltLibraries.times { %>
                    // TODO: Use a different linkage
                    lib project: ':', library: "prebuilt$it", linkage: 'api'
                    <% } %>
    
                    lib project: ':', library: "commonHeaders", linkage: 'api'
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeDependencyResolverServices.java

    import org.gradle.api.internal.resolve.ProjectModelResolver;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    import org.gradle.nativeplatform.internal.prebuilt.PrebuiltLibraryBinaryLocator;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class NativeDependencyResolverServices implements ServiceRegistrationProvider {
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        finalizedBy 'largeNativeBuildPrebuilt'
    }
    
    performanceTest.registerTestProject("largeNativeBuildPrebuilt", GradleBuild) {
        buildFile = file("$largeNativeBuild.outputDirectory/prebuilt/util/build.gradle")
        dir = file("$largeNativeBuild.outputDirectory/prebuilt/util")
        tasks = ['build']
    }
    
    performanceTest.registerTestProject("archivePerformanceProject", Copy) {
        into "build/$name"
        from "src/templates/$name"
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    implementation files('a.thing', additionalFile.output)
                }
            """
        }
    
        def "task input file collection can include project dependencies, external dependencies, prebuilt file dependencies and task output file dependencies"() {
            def configurationCache = newConfigurationCacheFixture()
    
            setupBuildWithEachDependencyType()
            taskTypeLogsInputFileCollectionContent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  9. RELEASE.md

    H, tkunic, Tod, vihanjain, Yan Facai (颜发才), Yin Li, Yong Tang, Yukun Chen,
    Yusuke Yamada
    
    # Release 1.6.0
    
    ## Breaking Changes
    
    *   Prebuilt binaries are now built against CUDA 9.0 and cuDNN 7.
    *   Prebuilt binaries will use AVX instructions. This may break TF on older
        CPUs.
    
    ## Major Features And Improvements
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cgo_stale_precompiled.txt

    # A missing $CC caused the C dependencies of the net
    # package to appear stale, and it could not be rebuilt due to a missing $CC.
    
    [!cgo] skip
    
    # This test may start with the runtime/cgo package already stale.
    # Explicitly rebuild it to ensure that it is cached.
    # (See https://go.dev/issue/50892.)
    #
    # If running in non-short mode, explicitly vary CGO_CFLAGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top