Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,056 for platform_ (0.17 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. architecture/platforms.md

    ### Extensibility platform
    
    This is a platform that builds on the core, software and JVM platforms to add support for extending Gradle by implementing and applying plugins.
    
    This platform includes the plugin publishing plugin and the plugin portal.
    
    ### Native platform
    
    This is a platform that builds on the core and software platforms to add support for developing native software.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/configure/NativeComponentRulesTest.groovy

            _ * component.targetPlatforms >> [requirement("platform1"), requirement("platform2")]
            1 * platforms.resolve(NativePlatform, requirement("platform1")) >> platform
            1 * platforms.resolve(NativePlatform, requirement("platform2")) >> platform2
    
            then:
            createdBinaries == ([
                "platform1SharedLibrary",
                "platform1StaticLibrary",
                "platform2SharedLibrary",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top