Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 811 for platform_ (0.14 sec)

  1. 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)
  2. tensorflow/compiler/jit/xla_device.cc

    int XlaDevice::Metadata::device_ordinal() const { return device_ordinal_; }
    
    se::Platform* XlaDevice::Metadata::platform() const { return platform_; }
    
    xla::LocalClient* XlaDevice::Metadata::client() const {
      auto client = xla::ClientLibrary::GetOrCreateLocalClient(platform_);
      return client.value();
    }
    
    const DeviceType& XlaDevice::Metadata::jit_device_type() const {
      return device_type_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    By using the `belongsTo` keyword without further parameter (platform **is** virtual), we declare that all modules belong to the same _virtual platform_, which is treated specially by the engine.
    A virtual platform will not be retrieved from a repository.
    The identifier, in this case `com.fasterxml.jackson:jackson-virtual-platform`, is something you as the build author define yourself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

      TF_ASSERT_OK(status);
      absl::StatusOr<Platform*> maybe_platform =
          PlatformManager::PlatformWithName("MY_DEVICE");
      TF_ASSERT_OK(maybe_platform.status());
      Platform* platform = std::move(maybe_platform).value();
      ASSERT_EQ(platform->Name(), test_util::kDeviceName);
      ASSERT_EQ(platform->VisibleDeviceCount(), test_util::kDeviceCount);
    
      absl::StatusOr<StreamExecutor*> maybe_executor =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device.h

      // Which hardware device in the client's platform this XlaDevice controls.
      const int device_ordinal_;
      // The name/type of this XlaDevice. eg. "XLA_GPU".
      const DeviceType device_name_;
      // The name of the device that is used to compile Ops for this XlaDevice.
      const DeviceType jit_device_name_;
      // The platform for this device.
      se::Platform* const platform_;  // Not owned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho.go

    	msect      uint32
    	sect       []MachoSect
    	flag       uint32
    }
    
    // MachoPlatformLoad represents a LC_VERSION_MIN_* or
    // LC_BUILD_VERSION load command.
    type MachoPlatformLoad struct {
    	platform MachoPlatform // One of PLATFORM_* constants.
    	cmd      MachoLoad
    }
    
    type MachoLoad struct {
    	type_ uint32
    	data  []uint32
    }
    
    type MachoPlatform int
    
    /*
     * Total amount of space to reserve at the start of the file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    A dependency on a platform is created using the `platform` keyword:
    
    .Getting versions declared in a platform
    ====
    include::sample[dir="snippets/java-platform/recommender/kotlin/consumer",files="build.gradle.kts[tags=get-recommendations]"]
    include::sample[dir="snippets/java-platform/recommender/groovy/consumer",files="build.gradle[tags=get-recommendations]"]
    ====
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

      companion object {
        @Volatile private var platform = findPlatform()
    
        const val INFO = 4
        const val WARN = 5
    
        private val logger = Logger.getLogger(OkHttpClient::class.java.name)
    
        @JvmStatic
        fun get(): Platform = platform
    
        fun resetForTests(platform: Platform = findPlatform()) {
          this.platform = platform
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

            platform.name >> "SomePlatform"
            toolChain.target("SomePlatform", Mock(Action))
            toolChain.setTargets("NoPlatform")
    
            expect:
            !toolChain.select(platform).available
        }
    
        def "selected toolChain applies platform configuration action"() {
            def platform1 = Mock(NativePlatformInternal)
            def platform2 = Mock(NativePlatformInternal)
            platform1.name >> "platform1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. hack/lib/golang.sh

          parallel=false
        fi
      fi
    
      if [[ "${parallel}" == "true" ]]; then
        kube::log::status "Building go targets for {${platforms[*]}} in parallel (output will appear in a burst when complete):" "${targets[@]}"
        local platform
        for platform in "${platforms[@]}"; do (
            kube::golang::set_platform_envs "${platform}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top