Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for fabs (0.15 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "NGCzerocarry", argLength: 1, reg: gp0flags1, typ: "UInt64", asm: "NGC"},       // -1 if borrowing, 0 otherwise.
    		{name: "FABSD", argLength: 1, reg: fp11, asm: "FABSD"},                                // abs(arg0), float64
    		{name: "FNEGS", argLength: 1, reg: fp11, asm: "FNEGS"},                                // -arg0, float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    		ins.imm = 1
    
    	case ASNEZ:
    		// SNEZ rs, rd -> SLTU rs, x0, rd
    		ins.as = ASLTU
    		ins.rs1 = REG_ZERO
    
    	case AFABSS:
    		// FABSS rs, rd -> FSGNJXS rs, rs, rd
    		ins.as = AFSGNJXS
    		ins.rs1 = uint32(p.From.Reg)
    
    	case AFABSD:
    		// FABSD rs, rd -> FSGNJXD rs, rs, rd
    		ins.as = AFSGNJXD
    		ins.rs1 = uint32(p.From.Reg)
    
    	case AFNEGS:
    		// FNEGS rs, rd -> FSGNJNS rs, rs, rd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. go.sum

    github.com/chzyer/test v1.0.0/go.mod h1:2JlltgoNkt4TW/z9V/IzDdFaMTM2JPIi26O1pF38GC8=
    github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag=
    github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I=
    github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    			// in which it was found, do that. Otherwise, we will leave it
    			// to be resolved by libdir lookup.
    			abs := filepath.Join(filepath.Dir(libpath), dep)
    			if _, err := os.Stat(abs); err == nil {
    				dep = abs
    			}
    		}
    		deps = append(deps, dep)
    	}
    
    	syms, err := f.DynamicSymbols()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/os/os_test.go

    	if err := Mkdir(linkOutDir, 0755); err != nil {
    		t.Fatalf("Mkdir: %v", err)
    	}
    
    	// First, we create the absolute symlink pointing outside.
    	outLinkFile := filepath.Join(linkOutDir, "file.abs.out.link")
    	if err := Symlink(outsideFile, outLinkFile); err != nil {
    		t.Fatalf("Symlink: %v", err)
    	}
    
    	// Then, we create the relative symlink pointing outside.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    #endif
    
    // The compiler and assembler's -spectre=ret mode rewrites
    // all indirect CALL AX / JMP AX instructions to be
    // CALL retpolineAX / JMP retpolineAX.
    // See https://support.google.com/faqs/answer/7625886.
    #define RETPOLINE(reg) \
    	/*   CALL setup */     BYTE $0xE8; BYTE $(2+2); BYTE $0; BYTE $0; BYTE $0;	\
    	/* nospec: */									\
    	/*   PAUSE */           BYTE $0xF3; BYTE $0x90;					\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      %cst = "tf.Const"() {value = dense<1.000000e+00> : tensor<3x4xf32>} : () -> tensor<3x4xf32>
      %cst_0 = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
      %0 = "tf.Abs"(%cst) {device = ""} : (tensor<3x4xf32>) -> tensor<3x4xf32>
      %1 = "tf.Max"(%0, %cst_0) {device = "", keep_dims = false} : (tensor<3x4xf32>, tensor<i32>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	st.checkChar('L')
    	if len(st.str) == 0 {
    		st.fail("expected primary expression")
    
    	}
    
    	// Check for 'Z' here because g++ incorrectly omitted the
    	// underscore until -fabi-version=3.
    	var ret AST
    	if st.str[0] == '_' || st.str[0] == 'Z' {
    		if st.str[0] == '_' {
    			st.advance(1)
    		}
    		if len(st.str) == 0 || st.str[0] != 'Z' {
    			st.fail("expected mangled name")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    func (r *resolver) performLocalQueries(ctx context.Context) {
    	for _, q := range r.localQueries {
    		q.pathOnce(q.pattern, func() pathSet {
    			absDetail := ""
    			if !filepath.IsAbs(q.pattern) {
    				if absPath, err := filepath.Abs(q.pattern); err == nil {
    					absDetail = fmt.Sprintf(" (%s)", absPath)
    				}
    			}
    
    			// Absolute paths like C:\foo and relative paths like ../foo... are
    			// restricted to matching packages in the main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Xor(32|16|8) ...) => (XOR ...)
    
    // unary ops
    (Neg(32|16|8) x) => (RSBconst [0] x)
    (Neg(32|64)F ...) => (NEG(F|D) ...)
    
    (Com(32|16|8) ...) => (MVN ...)
    
    (Sqrt ...) => (SQRTD ...)
    (Sqrt32 ...) => (SQRTF ...)
    (Abs ...) => (ABSD ...)
    
    // TODO: optimize this for ARMv5 and ARMv6
    (Ctz32NonZero ...) => (Ctz32 ...)
    (Ctz16NonZero ...) => (Ctz32 ...)
    (Ctz8NonZero ...) => (Ctz32 ...)
    
    // count trailing zero for ARMv5 and ARMv6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top