Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for pawn (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        core_tpu_ops.insert(&op);
      }
    
      GatherOpsForExtraction(&core_tpu_ops, merged_set, /*predecessors=*/true,
                             /*successors=*/true);
    
      // TODO(patn): Verify that all the ops here fall between the forward pass
      // and backward pass ops (i.e., not before the forward pass or after the
      // backward pass).
      return LogicalResult::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	if s.UnprotectedDebugSocket != nil {
    		go func() {
    			defer utilruntime.HandleCrash()
    			klog.Error(s.UnprotectedDebugSocket.Run(stopCh))
    		}()
    	}
    
    	// spawn a new goroutine for closing the MuxAndDiscoveryComplete signal
    	// registration happens during construction of the generic api server
    	// the last server in the chain aggregates signals from the previous instances
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/types.go

    	ContainerLogMaxSize string
    	// Maximum number of container log files that can be present for a container.
    	ContainerLogMaxFiles int32
    	// Maximum number of concurrent log rotation workers to spawn for processing the log rotation
    	// requests
    	ContainerLogMaxWorkers int32
    	// Interval at which the container logs are monitored for rotation
    	ContainerLogMonitorInterval metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/fp_test.go

    	expectUint32(t, "4294967295", F64toU32_ssa(4294967295), 4294967295)
    
    	expectInt16(t, "-32768", F64toI16_ssa(-32768), -32768)
    	expectInt16(t, "-32768", F32toI16_ssa(-32768), -32768)
    
    	// NB more of a pain to do these for 32-bit because of lost bits in Float32 mantissa
    	expectInt16(t, "32767", F64toI16_ssa(32767), 32767)
    	expectInt16(t, "32767", F32toI16_ssa(32767), 32767)
    	expectUint16(t, "32767", F64toU16_ssa(32767), 32767)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  5. configure.py

    import glob
    import json
    import os
    import platform
    import re
    import subprocess
    import sys
    
    # pylint: disable=g-import-not-at-top
    try:
      from shutil import which
    except ImportError:
      from distutils.spawn import find_executable as which
    # pylint: enable=g-import-not-at-top
    
    _DEFAULT_CUDA_VERSION = '11'
    _DEFAULT_CUDNN_VERSION = '2'
    _DEFAULT_TENSORRT_VERSION = '6'
    _DEFAULT_CUDA_COMPUTE_CAPABILITIES = '3.5,7.0'
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64.s

    	MSR	R17, OSECCR_EL1                    // 510610d5
    	MSR	R3, OSLAR_EL1                      // 831010d5
    	MRS	OSLSR_EL1, R15                     // 8f1130d5
    	MRS	PAN, R14                           // 6e4238d5
    	MSR	R0, PAN                            // 604218d5
    	MRS	PAR_EL1, R27                       // 1b7438d5
    	MSR	R3, PAR_EL1                        // 037418d5
    	MRS	PMCCFILTR_EL0, R10                 // eaef3bd5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  7. src/os/os_windows_test.go

    	cmd.Env = append(cmd.Env, "GO_WANT_HELPER_PROCESS=1")
    	cmd.Env = append(cmd.Env, "TMP="+newtmp)
    	cmd.Env = append(cmd.Env, "TEMP="+newtmp)
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("Failed to spawn child process: %v %q", err, string(output))
    	}
    	if want, have := newtmp, string(output); have != want {
    		t.Fatalf("unexpected child process output %q, want %q", have, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/arm64/asm.go

    			// to the relocation target. So it can be examined statically
    			// (e.g. go version).
    			return true
    		}
    
    		if target.IsDarwin() {
    			// Mach-O relocations are a royal pain to lay out.
    			// They use a compact stateful bytecode representation.
    			// Here we record what are needed and encode them later.
    			ld.MachoAddRebase(s, int64(r.Off()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	// This will make standard input a pipe.
    	cmd.Stdin = strings.NewReader("output")
    
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("Failed to spawn child process: %v %q", err, string(output))
    	}
    
    	// result will be like "prw-rw-rw"
    	if len(output) < 1 || output[0] != 'p' {
    		t.Fatalf("Child process reports stdin is not pipe '%v'", string(output))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. src/encoding/json/testdata/code.json.gz

    n-00-b-ag-expected.checksum","kids":[],"cl_weight":0.022222222222222223,"touches":1,"min_t":1272051317,"max_t":1272051317,"mean_t":1272051317},{"name":"t0804-c5509-padn-l-03-f-g-expected.checksum","kids":[],"cl_weight":0.022222222222222223,"touches":1,"min_t":1272051317,"max_t":1272051317,"mean_t":1272051317},{"name":"t0804-c5509-padn-l-03-f-g-expected.png","kids":[],"cl_weight":0.022222222222222223,"touches":1,"min_t":1272051317,"max_t":1272051317,"mean_t":1272051317}],"cl_weight":0.08888888888...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top