Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for SSA (0.05 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    		ssa.OpPPC64MULLD, ssa.OpPPC64MULLW, ssa.OpPPC64DIVDU, ssa.OpPPC64DIVWU,
    		ssa.OpPPC64SRAD, ssa.OpPPC64SRAW, ssa.OpPPC64SRD, ssa.OpPPC64SRW, ssa.OpPPC64SLD, ssa.OpPPC64SLW,
    		ssa.OpPPC64ROTL, ssa.OpPPC64ROTLW,
    		ssa.OpPPC64MULHD, ssa.OpPPC64MULHW, ssa.OpPPC64MULHDU, ssa.OpPPC64MULHWU,
    		ssa.OpPPC64FMUL, ssa.OpPPC64FMULS, ssa.OpPPC64FDIV, ssa.OpPPC64FDIVS, ssa.OpPPC64FCPSGN,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        if ret_ssa_values:
          self.emit(ret_str + ' = ')
    
        # Before enter the loop, we use the original ssa values as the initial
        # values to the loop iteration arguments. We also create new ssa values as
        # the returns of the scf for statements. The symbol table needs to be
        # updated to these new ssa values before it enters the scope of the loop.
        out_types = []
        init_values = []
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    	TNIL
    	TBLANK
    
    	// pseudo-types used temporarily only during frame layout (CalcSize())
    	TFUNCARGS
    	TCHANARGS
    
    	// SSA backend types
    	TSSA     // internal types used by SSA backend (flags, memory, etc.)
    	TTUPLE   // a pair of types, used by SSA backend
    	TRESULTS // multiple types; the result of calling a function or method, with a memory at the end.
    
    	NTYPE
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						},
    					}},
    				// Can remove dups to make valid
    				//! Normally this woud be valid, but SSA is unable to interpret
    				// the `liveObj` in the new schema, so fails. Changing
    				// x-kubernetes-list-type from anything to a set is unsupported by SSA.
    				applyPatchOperation{
    					"remove dups to make list valid",
    					myCRDV1Beta1,
    					myCRDInstanceName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// backoff+retry, but scheduling attempts are expensive
    			// and the backoff delay would cause a (small)
    			// slowdown. Therefore we fall back to SSA here if needed.
    			//
    			// Using SSA instead of Get+Update has the advantage that
    			// there is no delay for the Get. SSA is safe because only
    			// the scheduler updates these fields.
    			spec := resourcev1alpha2apply.PodSchedulingContextSpec()
    			spec.SelectedNode = p.selectedNode
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/abt"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/dwarf"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    	"encoding/hex"
    	"fmt"
    	"internal/buildcfg"
    	"math/bits"
    	"sort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    llvm::DenseMap<int, int> MapTensorListResultToArgument(func::FuncOp func) {
      // `map_fn` will trace upwards along the use-def chain of the ssa value. It
      // starts from the last ssa value (returned by the function), and check its
      // parent op iteratively. If the root ssa value appears in the function's
      // argument list, it will return the index of the corresponding argument,
      // otherwise it will return -1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/internal/src"
    	"fmt"
    	"math"
    )
    
    type branch int
    
    const (
    	unknown branch = iota
    	positive
    	negative
    	// The outedges from a jump table are jumpTable0,
    	// jumpTable0+1, jumpTable0+2, etc. There could be an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    // SSA form. For now, we ignore this problem as remaining in strict
    // SSA form isn't needed after regalloc. We'll just leave the use
    // of x3 not dominated by the definition of x3, and the CX->BX copy
    // will have no use (so don't run deadcode after regalloc!).
    // TODO: maybe we should introduce these extra phis?
    
    package ssa
    
    import (
    	"cmd/compile/internal/base"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    		args = args[1:]
    	}
    	if action == "errorcheck" {
    		found := false
    		for i, f := range flags {
    			if strings.HasPrefix(f, "-d=") {
    				flags[i] = f + ",ssa/check/on"
    				found = true
    				break
    			}
    		}
    		if !found {
    			flags = append(flags, "-d=ssa/check/on")
    		}
    	}
    
    	tempDir := t.TempDir()
    	err = os.Mkdir(filepath.Join(tempDir, "test"), 0755)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top