Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for x_data (0.12 sec)

  1. tensorflow/cc/framework/gradient_checker.cc

          Tensor y_data = (*y_datas)[y_idx];
          if (y_data.SharesBufferWith((*x_datas)[x_idx])) {
            // Create copies of outputs that share a buffer with any inputs since
            // the underlying buffer of the input Tensors are not copied for some
            // operations (i.e. Identity), which can lead to incorrect results for
            // the centered difference calculation.
            (*y_datas)[y_idx] = tensor::DeepCopy(y_data);
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	data[len(prefix)+1] = 0
    	if ctxt.Arch.ByteOrder == binary.BigEndian {
    		data[len(prefix)+1] = 1
    	}
    	data[len(prefix)+1] |= 2 // signals new pointer-free format
    	data = appendString(data, strdata["runtime.buildVersion"])
    	data = appendString(data, strdata["runtime.modinfo"])
    	// MacOS linker gets very upset if the size os not a multiple of alignment.
    	for len(data)%16 != 0 {
    		data = append(data, 0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. src/cmd/link/internal/loader/loader_test.go

    		if ldr.SymType(mi) != tp.expKind {
    			t.Errorf("testing Loader.%s: expected kind %s got %s",
    				tp.which, tp.expKind, ldr.SymType(mi))
    		}
    		if !bytes.Equal(ldr.Data(mi), tp.expData) {
    			t.Errorf("testing Loader.%s: expected data %v got %v",
    				tp.which, tp.expData, ldr.Data(mi))
    		}
    		relocs := ldr.Relocs(mi)
    		if !sameRelocSlice(&relocs, tp.expRel) {
    			t.Fatalf("testing Loader.%s: got relocslice %+v wanted %+v",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/codegen.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  5. src/crypto/md5/md5block_arm.s

    	DATA	·table+0x48(SB)/4, $0x265e5a51
    	DATA	·table+0x4c(SB)/4, $0xe9b6c7aa
    	DATA	·table+0x50(SB)/4, $0xd62f105d
    	DATA	·table+0x54(SB)/4, $0x02441453
    	DATA	·table+0x58(SB)/4, $0xd8a1e681
    	DATA	·table+0x5c(SB)/4, $0xe7d3fbc8
    	DATA	·table+0x60(SB)/4, $0x21e1cde6
    	DATA	·table+0x64(SB)/4, $0xc33707d6
    	DATA	·table+0x68(SB)/4, $0xf4d50d87
    	DATA	·table+0x6c(SB)/4, $0x455a14ed
    	DATA	·table+0x70(SB)/4, $0xa9e3e905
    	DATA	·table+0x74(SB)/4, $0xfcefa3f8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/internal/trace/generation.go

    		}
    		if g.freq != 0 {
    			return fmt.Errorf("found multiple frequency events")
    		}
    		g.freq = freq
    	case b.exp != event.NoExperiment:
    		if g.expData == nil {
    			g.expData = make(map[event.Experiment]*ExperimentalData)
    		}
    		if err := addExperimentalData(g.expData, b); err != nil {
    			return err
    		}
    	default:
    		g.batches[b.m] = append(g.batches[b.m], b)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/debug/elf/file.go

    	}
    
    	// The first entry is all zeros.
    	data = data[Sym32Size:]
    
    	symbols := make([]Symbol, len(data)/Sym32Size)
    
    	i := 0
    	var sym Sym32
    	for len(data) > 0 {
    		sym.Name = f.ByteOrder.Uint32(data[0:4])
    		sym.Value = f.ByteOrder.Uint32(data[4:8])
    		sym.Size = f.ByteOrder.Uint32(data[8:12])
    		sym.Info = data[12]
    		sym.Other = data[13]
    		sym.Shndx = f.ByteOrder.Uint16(data[14:16])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  8. prow/lib.sh

        CA_DATA=$(kubectl get secret "${SECRET_NAME}" -n istio-system-multi -o "jsonpath={.data['ca\\.crt']}")
        TOKEN=$(kubectl get secret "${SECRET_NAME}" -n istio-system-multi -o "jsonpath={.data['token']}" | base64 --decode)
    
        cat <<EOF > "${filename}"
          apiVersion: v1
          clusters:
             - cluster:
                 certificate-authority-data: ${CA_DATA}
                 server: ${SERVER}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/upgrade/node/data.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    // Data is the interface to use for kubeadm upgrade node phases.
    // The "nodeData" type from "cmd/upgrade/node.go" must satisfy this interface.
    type Data interface {
    	EtcdUpgrade() bool
    	RenewCerts() bool
    	DryRun() bool
    	Cfg() *kubeadmapi.UpgradeConfiguration
    	InitCfg() *kubeadmapi.InitConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. pkg/controlplane/storageversionhashdata/data.go

    Alexander Zielenski <******@****.***> 1716482549 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top