Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 280 for chrono (0.27 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/compilation_timer.h

               start_cycles;
      }
    
      int64_t ElapsedCyclesInMilliseconds() {
        std::chrono::duration<double> duration =
            tensorflow::profile_utils::CpuUtils::ConvertClockCycleToTime(
                ElapsedCycles());
    
        return std::chrono::duration_cast<std::chrono::milliseconds>(duration)
            .count();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 04:52:21 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

        return profile_utils::CpuUtils::GetCurrentClockCycle() - start_cycles;
      }
    
      int64_t ElapsedCyclesInMilliseconds() {
        std::chrono::duration<double> duration =
            profile_utils::CpuUtils::ConvertClockCycleToTime(ElapsedCycles());
    
        return std::chrono::duration_cast<std::chrono::milliseconds>(duration)
            .count();
      }
    };
    
    // Populates input_output_alias field in the HLO Module proto.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. tensorflow/cc/training/queue_runner.cc

      }
      if (coord_) {
        thread_pool_->Schedule(std::bind(&QueueRunner::Stop, this, sess));
      }
      // Wait for up to 'wait_for' milliseconds.
      if (wait_for > 0) {
        if (!counter_->WaitFor(std::chrono::milliseconds(wait_for))) {
          return Status(absl::StatusCode::kDeadlineExceeded,
                        "Queues not fed before the timeout");
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

      auto fetcher = [&counter](const string& filename, size_t offset, size_t n,
                                char* buffer, TF_Status* status) -> int64_t {
        counter.DecrementCount();
        if (!counter.WaitFor(std::chrono::seconds(10))) {
          // This avoids having the test time out, which is harder to debug.
          TF_SetStatus(status, TF_FAILED_PRECONDITION,
                       "desired concurrency not reached");
          return -1;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:57 UTC 2021
    - 23.2K bytes
    - Viewed (0)
  5. releasenotes/notes/chiron.yaml

    John Howard <******@****.***> 1679494701 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 226 bytes
    - Viewed (0)
  6. misc/chrome/gophertool/background.js

    chrome.omnibox.onInputEntered.addListener(function(t) {
      var url = urlForInput(t);
      if (url) {
        chrome.tabs.query({ "active": true, "currentWindow": true }, function(tab) {
          if (!tab) return;
          chrome.tabs.update(tab.id, { "url": url, "selected": true });
        });
      }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 18 18:14:37 UTC 2019
    - 286 bytes
    - Viewed (0)
  7. docs/chroot/README.md

    Chroot allows user based namespace isolation on many standard Linux deployments.
    
    ## 1. Prerequisites
    
    - Familiarity with [chroot](http://man7.org/linux/man-pages/man2/chroot.2.html)
    - Chroot installed on your machine.
    
    ## 2. Install MinIO in Chroot
    
    ```sh
    mkdir -p /mnt/export/${USER}/bin
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/chroot_windows.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"github.com/pkg/errors"
    )
    
    // Chroot chroot()s to the new path.
    // NB: All file paths after this call are effectively relative to
    // `rootfs`
    func Chroot(rootfs string) error {
    	return errors.New("chroot is not implemented on Windows")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 871 bytes
    - Viewed (0)
  9. misc/chrome/gophertool/README.txt

    To install:
    
    1) chrome://extensions/
    2) click "[+] Developer Mode" in top right
    3) "Load unpacked extension..."
    4) pick $GOROOT/misc/chrome/gophertool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 23 21:27:51 UTC 2011
    - 194 bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/chroot_unix.go

    import (
    	"os"
    	"path/filepath"
    	"syscall"
    
    	"github.com/pkg/errors"
    )
    
    // Chroot chroot()s to the new path.
    // NB: All file paths after this call are effectively relative to
    // `rootfs`
    func Chroot(rootfs string) error {
    	if err := syscall.Chroot(rootfs); err != nil {
    		return errors.Wrapf(err, "unable to chroot to %s", rootfs)
    	}
    	root := filepath.FromSlash("/")
    	if err := os.Chdir(root); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top