Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for L1 (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

       //   (multiply_linear_by_lr ? clamp(-l1 * lr, linear, l1 * lr)
       //                            clamp(-l1, linear, l1)) - linear
       (TF_SubOp:$linear_clipped_minus_linear
         (ConstAttrIfThenElse
           $multiply_linear_by_lr,
           (Clamp $src_op,
             (TF_NegOp (TF_MulOp $l1, $lr)),
             (CreateTFReadVariableOp $src_op, $l1, $linear),
             (TF_MulOp $l1, $lr)
           ),
           (Clamp $src_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/fe_amd64.s

    	MOVQ AX, R10
    	MOVQ DX, R9
    
    	// r2 += l1×l1
    	MOVQ 8(CX), AX
    	MULQ 8(CX)
    	ADDQ AX, R10
    	ADCQ DX, R9
    
    	// r2 += 38×l3×l4
    	MOVQ   24(CX), AX
    	IMUL3Q $0x26, AX, AX
    	MULQ   32(CX)
    	ADDQ   AX, R10
    	ADCQ   DX, R9
    
    	// r3 = 2×l0×l3
    	MOVQ (CX), AX
    	SHLQ $0x01, AX
    	MULQ 24(CX)
    	MOVQ AX, R12
    	MOVQ DX, R11
    
    	// r3 += 2×l1×l2
    	MOVQ   8(CX), AX
    	IMUL3Q $0x02, AX, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/assign.go

    func appendSlice(n *ir.CallExpr, init *ir.Nodes) ir.Node {
    	walkAppendArgs(n, init)
    
    	l1 := n.Args[0]
    	l2 := n.Args[1]
    	l2 = cheapExpr(l2, init)
    	n.Args[1] = l2
    
    	var nodes ir.Nodes
    
    	// var s []T
    	s := typecheck.TempAt(base.Pos, ir.CurFunc, l1.Type())
    	nodes.Append(ir.NewAssignStmt(base.Pos, s, l1)) // s = l1
    
    	elemtype := s.Type().Elem()
    
    	// Decompose slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue48951.go

    package p
    
    type (
            A1[P any] [10]A1 /* ERROR "invalid recursive type" */ [P]
            A2[P any] [10]A2 /* ERROR "invalid recursive type" */ [*P]
            A3[P any] [10]*A3[P]
    
            L1[P any] []L1[P]
    
            S1[P any] struct{ f S1 /* ERROR "invalid recursive type" */ [P] }
            S2[P any] struct{ f S2 /* ERROR "invalid recursive type" */ [*P] } // like example in issue
            S3[P any] struct{ f *S3[P] }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 822 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/BuildActionCrossVersionSpec.groovy

            assert action1 != Action1
            def action2 = cl.loadClass(Action2.name)
            assert action2 != Action2
    
            expect:
            def l1 = withConnection {
                it.action(action1.getConstructor().newInstance())
                    .run()
            }
            l1 == ["not broken 1"]
            def l2 = withConnection {
                it.action(action2.getConstructor().newInstance())
                    .run()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/runtime/mranges.go

    // diff returns the amount of bytes in between the
    // two offAddrs.
    func (l1 offAddr) diff(l2 offAddr) uintptr {
    	return l1.a - l2.a
    }
    
    // lessThan returns true if l1 is less than l2 in the offset
    // address space.
    func (l1 offAddr) lessThan(l2 offAddr) bool {
    	return (l1.a - arenaBaseOffset) < (l2.a - arenaBaseOffset)
    }
    
    // lessEqual returns true if l1 is less than or equal to l2 in
    // the offset address space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. operator/pkg/util/yaml.go

    		return res
    	}
    
    	return res + "\n" + diff
    }
    
    func diffStringList(l1, l2 []string) string {
    	var maxLen int
    	var minLen int
    	var l1Max bool
    	res := ""
    	if len(l1)-len(l2) > 0 {
    		maxLen = len(l1)
    		minLen = len(l2)
    		l1Max = true
    	} else {
    		maxLen = len(l2)
    		minLen = len(l1)
    		l1Max = false
    	}
    
    	for i := 0; i < maxLen; i++ {
    		d := ""
    		if i >= minLen {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. src/net/unixsock_test.go

    	})
    
    	t.Run("FileListener/SetUnlinkOnClose(true)", func(t *testing.T) {
    		l := listen(t)
    		f, _ := l.File()
    		l1, _ := FileListener(f)
    		checkExists(t, "after FileListener")
    		l1.(*UnixListener).SetUnlinkOnClose(true)
    		f.Close()
    		checkExists(t, "after File close")
    		l1.Close()
    		checkNotExists(t, "after FileListener close")
    		l.Close()
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/MetadataProbe.java

            mv.visitVarInsn(ALOAD, 0);
            mv.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V", false);
            mv.visitInsn(RETURN);
            Label l1 = new Label();
            mv.visitLabel(l1);
            mv.visitLocalVariable("this", "LJavaProbe;", null, l0, l1, 0);
            mv.visitMaxs(1, 1);
            mv.visitEnd();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/math/log_amd64.s

    	// s4 := s2 * s2
    	MOVAPD  X4, X5 // x1= k, x2= f, x3= s, x4= s2
    	MULSD   X5, X5 // x1= k, x2= f, x3= s, x4= s2, x5= s4
    	// t1 := s2 * (L1 + s4*(L3+s4*(L5+s4*L7)))
    	MOVSD   $L7, X6
    	MULSD   X5, X6
    	ADDSD   $L5, X6
    	MULSD   X5, X6
    	ADDSD   $L3, X6
    	MULSD   X5, X6
    	ADDSD   $L1, X6
    	MULSD   X6, X4 // x1= k, x2= f, x3= s, x4= t1, x5= s4
    	// t2 := s4 * (L2 + s4*(L4+s4*L6))
    	MOVSD   $L6, X6
    	MULSD   X5, X6
    	ADDSD   $L4, X6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top