Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for platform_ (0.19 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

    // the C API defined in stream_executor.h. A class "CSomething" represents a
    // "Something" that can be manipulated via calls in the C interface.
    class CPlatform : public Platform {
     public:
      explicit CPlatform(SP_Platform platform,
                         void (*destroy_platform)(SP_Platform*),
                         SP_PlatformFns platform_fns,
                         void (*destroy_platform_fns)(SP_PlatformFns*),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor.cc

      platform_fns_.destroy_device_fns(&platform_, &device_fns_);
      platform_fns_.destroy_stream_executor(&platform_, &stream_executor_);
      platform_fns_.destroy_timer_fns(&platform_, &timer_fns_);
      destroy_platform_(&platform_);
      destroy_platform_fns_(&platform_fns_);
    }
    
    absl::StatusOr<std::unique_ptr<DeviceDescription>>
    CPlatform::DescriptionForDevice(int ordinal) const {
      // TODO(annarev): see if we can get StreamExecutor instance
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. .github/CODEOWNERS

    platforms/jvm/testing-junit-platform/       @gradle/bt-jvm @gradle/dv-testing-team
    platforms/jvm/testing-jvm/                  @gradle/bt-jvm @gradle/dv-testing-team
    platforms/jvm/testing-jvm-infrastructure/   @gradle/bt-jvm @gradle/dv-testing-team
    
    # Software platform
    platforms/software/                         @gradle/bt-jvm
    
    # Extensibility
    platforms/extensibility/        @gradle/bt-extensibility-maintainers
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. .teamcity/subprojects.json

        "name": "persistent-cache",
        "path": "platforms/core-execution/persistent-cache",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "platform-base",
        "path": "platforms/software/platform-base",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "platform-jvm",
        "path": "platforms/jvm/platform-jvm",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

                  files=".*[/\\]platforms[/\\]jvm[/\\]war[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\]tasks[/\\]bundling[/\\][^/\\]+"/>
    
        <suppress checks="JavadocPackage"
                  files=".*[/\\]platforms[/\\]jvm[/\\]language-jvm[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\]plugins[/\\][^/\\]+"/>
        <suppress checks="JavadocPackage"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. settings.gradle.kts

                if (element is Platform) {
                    writer.platform(element)
                } else {
                    writer.element(element)
                }
            }
            println(endDiagram)
        }
    
        private fun NodeWriter.platform(platform: Platform) {
            println()
            node("subgraph ${platform.id}[\"${platform.name} platform\"]") {
                for (child in platform.children) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. platforms/jvm/java-platform/build.gradle.kts

        implementation(project(":ivy"))
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":maven"))
        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
        implementation(project(":publish"))
    
        runtimeOnly(libs.groovy)
    
        integTestImplementation(testFixtures(project(":dependency-management")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      // of small endian, as documented in the header). This will protentially break
      // when TFLite is ported to big endian platforms.
      // TODO(b/165919229): This code will need changing if/when we port to a
      // big-endian platform.
      memcpy(*buffer, &num_strings, sizeof(int32_t));
    
      // Set offset of strings.
      int32_t start = sizeof(int32_t) * (num_strings + 2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. configure.py

      pass
    
    
    def is_windows():
      return platform.system() == 'Windows'
    
    
    def is_linux():
      return platform.system() == 'Linux'
    
    
    def is_macos():
      return platform.system() == 'Darwin'
    
    
    def is_ppc64le():
      return platform.machine() == 'ppc64le'
    
    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/build.gradle.kts

        implementation(libs.netty)
        implementation(libs.opentest4j)
        // we depend on both: sshd platforms and libraries
        implementation(libs.sshdCore)
        implementation(platform(libs.sshdCore))
        implementation(libs.sshdScp)
        implementation(platform(libs.sshdScp))
        implementation(libs.sshdSftp)
        implementation(platform(libs.sshdSftp))
    
        compileOnly(project(":configuration-cache")) {
            because("""Fixes:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top