Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 403 for Tperm (0.04 sec)

  1. src/math/rand/race_test.go

    				seed += int64(Intn(Int()))
    				seed += int64(Int31n(Int31()))
    				seed += int64(Int63n(Int63()))
    				seed += int64(NormFloat64())
    				seed += int64(Uint32())
    				seed += int64(Uint64())
    				for _, p := range Perm(10) {
    					seed += int64(p)
    				}
    				Read(buf)
    				for _, b := range buf {
    					seed += int64(b)
    				}
    				Seed(int64(i*j) * seed)
    			}
    		}(i)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 28 16:06:21 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/bench_test.go

    //go:noinline
    func fn(a, b int) bool {
    	c := false
    	if a > 0 {
    		if b < 0 {
    			d = d + 1
    		}
    		c = true
    	}
    	return c
    }
    
    func BenchmarkPhioptPass(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		a := rand.Perm(i/10 + 10)
    		for i := 1; i < len(a)/2; i++ {
    			fn(a[i]-a[i-1], a[i+len(a)/2-2]-a[i+len(a)/2-1])
    		}
    	}
    }
    
    type Point struct {
    	X, Y int
    }
    
    //go:noinline
    func sign(p1, p2, p3 Point) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 02:36:06 UTC 2023
    - 835 bytes
    - Viewed (0)
  3. src/os/removeall_at.go

    	}
    
    	// EISDIR means that we have a directory, and we need to
    	// remove its contents.
    	// EPERM or EACCES means that we don't have write permission on
    	// the parent directory, but this entry might still be a directory
    	// whose contents need to be removed.
    	// Otherwise just return the error.
    	if err != syscall.EISDIR && err != syscall.EPERM && err != syscall.EACCES {
    		return &PathError{Op: "unlinkat", Path: base, Err: err}
    	}
    	uErr := err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/gofmt/gofmt_unix_test.go

    	"strings"
    	"testing"
    	"time"
    )
    
    func TestPermissions(t *testing.T) {
    	if os.Getuid() == 0 {
    		t.Skip("skipping permission test when running as root")
    	}
    
    	dir := t.TempDir()
    	fn := filepath.Join(dir, "perm.go")
    
    	// Create a file that needs formatting without write permission.
    	if err := os.WriteFile(filepath.Join(fn), []byte("  package main"), 0o400); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 12:52:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. pkg/volume/util/subpath/subpath_unsupported.go

    	return subPath.Path, nil, errUnsupported
    }
    
    func (sp *subpath) CleanSubPaths(podDir string, volumeName string) error {
    	return errUnsupported
    }
    
    func (sp *subpath) SafeMakeDir(pathname string, base string, perm os.FileMode) error {
    	return errUnsupported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

            return transpose_op.emitOpError(
                "perm tensor elements size is not equal to input tensor rank");
          }
        }
    
        // Get permutation axes of the TransposeOp
        DenseIntElementsAttr perm;
        if (!matchPattern(transpose_op.getPerm(), m_Constant(&perm))) {
          return failure();
        }
    
        SmallVector<int64_t, 4> axes;
        for (const auto& axis_int : perm.getValues<APInt>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_permissions.txt

    func main() {
    	for _, name := range []string{"go.mod", "go.sum"} {
    		fi, err := os.Stat(name)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "%s: %v\n", err)
    			continue
    		}
    		fmt.Printf("%s: 0%o\n", name, fi.Mode().Perm())
    	}
    }
    -- go.mod --
    module TODO
    
    go 1.14
    -- go.sum --
    -- go.mod.want --
    module golang.org/issue/34634
    
    go 1.14
    
    require rsc.io/sampler v1.99.99
    -- go.sum.want --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. src/math/rand/v2/race_test.go

    				seed += int64(IntN(Int()))
    				seed += int64(Int32N(Int32()))
    				seed += int64(Int64N(Int64()))
    				seed += int64(NormFloat64())
    				seed += int64(Uint32())
    				seed += int64(Uint64())
    				for _, p := range Perm(10) {
    					seed += int64(p)
    				}
    			}
    			_ = seed
    		}(i)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 14:31:46 UTC 2023
    - 1005 bytes
    - Viewed (0)
  9. src/math/rand/v2/rand.go

    // from the default Source.
    func Float32() float32 { return globalRand.Float32() }
    
    // Perm returns, as a slice of n ints, a pseudo-random permutation of the integers
    // in the half-open interval [0,n) from the default Source.
    func Perm(n int) []int { return globalRand.Perm(n) }
    
    // Shuffle pseudo-randomizes the order of elements using the default Source.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_move_transposes_end.mlir

    func.func @fold_into_pad_with_extra_uses(%arg0: tensor<1x2x4x4x3xf32>) -> (tensor<1x2x3x4x4xf32>, tensor<1x2x3x6x6xf32>) {
    
      // CHECK: %[[PERM:.*]] = "tf.Const"() <{value = dense<[0, 1, 4, 2, 3]> : tensor<5xi32>}>
      // CHECK: %[[TRANSPOSE_OP:[0-9]*]] = "tf.Transpose"(%arg0, %[[PERM]])
      // CHECK: %[[PADDING:.*]] = "tf.Const"() <{value = dense<{{\[\[}}0, 0], [0, 0], [1, 1], [1, 1], [0, 0]]> : tensor<5x2xi32>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top