Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 228 for chrono (0.23 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. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/helper/UserAgentHelper.java

                        } else if (userAgent.indexOf("Firefox") >= 0) {
                            uaType = UserAgentType.FIREFOX;
                        } else if (userAgent.indexOf("Chrome") >= 0) {
                            uaType = UserAgentType.CHROME;
                        } else if (userAgent.indexOf("Safari") >= 0) {
                            uaType = UserAgentType.SAFARI;
                        } else if (userAgent.indexOf("Opera") >= 0) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. ci/devinfra/docker_windows/Dockerfile

        choco install KB2919355; \
        choco install KB2919442; \
        choco install KB2999226; \
        choco install KB3033929; \
        choco install KB3035131; \
        choco install maven; \
        choco install ninja; \
        choco install nodejs --version 9.3.0; \
        choco install nodejs.install --version 9.3.0; \
        choco install nuget.commandline; \
        choco install openjdk11; \
        choco install peazip; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. dockerscripts/docker-entrypoint.sh

    	if [ -n "${MINIO_USERNAME}" ] && [ -n "${MINIO_GROUPNAME}" ]; then
    		if [ -n "${MINIO_UID}" ] && [ -n "${MINIO_GID}" ]; then
    			chroot --userspec=${MINIO_UID}:${MINIO_GID} / "$@"
    		else
    			echo "${MINIO_USERNAME}:x:1000:1000:${MINIO_USERNAME}:/:/sbin/nologin" >>/etc/passwd
    			echo "${MINIO_GROUPNAME}:x:1000" >>/etc/group
    			chroot --userspec=${MINIO_USERNAME}:${MINIO_GROUPNAME} / "$@"
    		fi
    	else
    		exec "$@"
    	fi
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 675 bytes
    - Viewed (0)
  9. src/syscall/exec_bsd.go

    	}
    
    	// Restore the signal mask. We do this after TIOCSPGRP to avoid
    	// having the kernel send a SIGTTOU signal to the process group.
    	runtime_AfterForkInChild()
    
    	// Chroot
    	if chroot != nil {
    		_, _, err1 = RawSyscall(SYS_CHROOT, uintptr(unsafe.Pointer(chroot)), 0, 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// User and groups
    	if cred = sys.Credential; cred != nil {
    		ngroups = uintptr(len(cred.Groups))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. src/syscall/exec_libc.go

    		}
    	}
    
    	// Restore the signal mask. We do this after TIOCSPGRP to avoid
    	// having the kernel send a SIGTTOU signal to the process group.
    	runtime_AfterForkInChild()
    
    	// Chroot
    	if chroot != nil {
    		err1 = chroot1(uintptr(unsafe.Pointer(chroot)))
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// User and groups
    	if cred = sys.Credential; cred != nil {
    		ngroups = uintptr(len(cred.Groups))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top