Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for platformName (0.3 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/mac/platform-mac.c

    #include "platform.h"
    
    const char* platform_name = "MacOSX";
    
    int max_path_length() { return 1024; }
    
    unsigned long long max_memory() { return GB(96); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 188 bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

                                   TF_Status* const);
    
    // Registers StreamExecutor platform. `device_type` and `platform_name` are
    // output parameters.
    absl::Status InitStreamExecutorPlugin(void* dso_handle,
                                          std::string* device_type,
                                          std::string* platform_name);
    
    // Allow registering a StreamExecutor plugin using a function (used for
    // testing).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/linux/platform-linux.c

    #include "platform.h"
    
    const char* platform_name = "Linux";
    
    int max_path_length() { return -1; }
    
    unsigned long long max_memory() { return TB(128); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 186 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/headers/platform.h

    #ifndef PLATFORM_H
    #define PLATFORM_H
    
    extern const char* platform_name;
    
    int max_path_length();
    
    unsigned long long max_memory();
    
    int is_posix_like();
    
    #define KB(x) x
    #define MB(x) KB(x)*1024
    #define GB(x) MB(x)*1024
    #define TB(x) GB(x)*1024
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 267 bytes
    - Viewed (0)
  5. platforms/software/testing-base/build.gradle.kts

        testImplementation(testFixtures(projects.core))
        testImplementation(testFixtures(projects.logging))
        testImplementation(testFixtures(projects.messaging))
        testImplementation(testFixtures(projects.platformBase))
        testImplementation(testFixtures(projects.serialization))
    
        testImplementation(libs.commonsIo)
    
        testFixturesImplementation(projects.baseServices)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/stream_executor.cc

      auto init_fn = reinterpret_cast<SEInitPluginFn>(dso_symbol);
      return InitStreamExecutorPlugin(init_fn, device_type, platform_name);
    }
    
    absl::Status InitStreamExecutorPlugin(SEInitPluginFn init_fn,
                                          std::string* device_type,
                                          std::string* platform_name) {
      SE_PlatformRegistrationParams params{
          SE_PLATFORM_REGISTRATION_PARAMS_STRUCT_SIZE};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph_test.cc

        "/tensorflow/core/tf2xla/api/v1/phase2_compilation_time";
    
    static constexpr char kCompilationStatusStreamzName[] =
        "/tensorflow/core/tf2xla/api/v1/phase2_compilation_status";
    
    static constexpr char kPlatformName[] = "Host";
    constexpr char kEntryFuncName[] = "main";
    
    static constexpr char kMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top