Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for get_memory_bandwidth (0.33 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

          if (numa_node >= 0) {
            builder.set_numa_node(numa_node);
          }
        }
    
        if (device_fns_->get_memory_bandwidth != nullptr) {
          int64_t memory_bandwidth = device_fns_->get_memory_bandwidth(&device_);
          if (memory_bandwidth >= 0) {
            builder.set_memory_bandwidth(memory_bandwidth);
          }
        }
        // TODO(annarev): Add gflops field in DeviceDescription and set it here.
    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/c/experimental/stream_executor/stream_executor_test.cc

        params->device->device_vendor = vendor;
        params->device->pci_bus_id = pci_bus_id;
      };
    
      device_fns_.get_numa_node = [](const SP_Device* device) { return 123; };
      device_fns_.get_memory_bandwidth = [](const SP_Device* device) -> int64_t {
        return 54;
      };
      device_fns_.get_gflops = [](const SP_Device* device) -> double { return 32; };
    
      StreamExecutor* executor = GetExecutor(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor.h

      // Device's memory bandwidth in bytes/sec.  (This is for reads/writes to/from
      // the device's own memory, not for transfers between the host and device.)
      // Negative values are treated as "unset".
      int64_t (*get_memory_bandwidth)(const SP_Device* device);
    
      // [Optional]
      // Estimate of average number of floating point operations per second for
      // this device * 10e-9.
      // Negative values are treated as "unset".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
Back to top