Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 113 for OP (0.03 sec)

  1. src/go/parser/parser.go

    	var n int
    	defer func() { p.nestLev -= n }()
    	for n = 1; ; n++ {
    		incNestLev(p)
    		op, oprec := p.tokPrec()
    		if oprec < prec1 {
    			return x
    		}
    		pos := p.expect(op)
    		y := p.parseBinaryExpr(nil, oprec+1)
    		x = &ast.BinaryExpr{X: x, OpPos: pos, Op: op, Y: y}
    	}
    }
    
    // The result may be a type or even a raw type ([...]int).
    func (p *parser) parseExpr() ast.Expr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm/asm5.go

    		fixShift(&p.To)
    	}
    
    	ops := oprange[p.As&obj.AMask]
    	c1 := &xcmp[a1]
    	c3 := &xcmp[a3]
    	for i := range ops {
    		op := &ops[i]
    		if int(op.a2) == a2 && c1[op.a1] && c3[op.a3] {
    			p.Optab = uint16(cap(optab) - cap(ops) + i + 1)
    			checkSuffix(c, p, op)
    			return op
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // CHECK: return %[[CAST]] : tensor<*xf32>
      func.return %val : tensor<*xf32>
    }
    // -----
    
    // Test CaseRegion with gradient inside PartitionedCall Op. The gradient local
    // variable should be inserted before the PartitionedCall op.
    
    // CHECK-LABEL:   func @main()
    func.func @main() -> () {
      %size = "tf.Const"() {value = dense<5> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (LEA(Q|L) [c] {s} (ADD(Q|L)const [d] x)) && is32Bit(int64(c)+int64(d)) => (LEA(Q|L) [c+d] {s} x)
    (LEA(Q|L) [c] {s} (ADD(Q|L) x y)) && x.Op != OpSB && y.Op != OpSB => (LEA(Q|L)1 [c] {s} x y)
    (ADD(Q|L) x (LEA(Q|L) [c] {s} y)) && x.Op != OpSB && y.Op != OpSB => (LEA(Q|L)1 [c] {s} x y)
    
    // fold ADDQconst/ADDLconst into LEAQx/LEALx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    // Expressions
    
    func walkBinary(e *ast.BinaryExpr) (has4, has5 bool, maxProblem int) {
    	switch e.Op.Precedence() {
    	case 4:
    		has4 = true
    	case 5:
    		has5 = true
    	}
    
    	switch l := e.X.(type) {
    	case *ast.BinaryExpr:
    		if l.Op.Precedence() < e.Op.Precedence() {
    			// parens will be inserted.
    			// pretend this is an *ast.ParenExpr and do nothing.
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

                                            const char* device);
    
    // The calls to TF_AddInput and TF_AddInputList must match (in number,
    // order, and type) the op declaration.  For example, the "Concat" op
    // has registration:
    //   REGISTER_OP("Concat")
    //       .Input("concat_dim: int32")
    //       .Input("values: N * T")
    //       .Output("output: T")
    //       .Attr("N: int >= 2")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	if isDigit(c) {
    		a = st.sourceName()
    	} else if isLower(c) {
    		a, _ = st.operatorName(false)
    		if _, ok := a.(*Cast); ok {
    			isCast = true
    		}
    		if op, ok := a.(*Operator); ok && op.Name == `operator"" ` {
    			n := st.sourceName()
    			a = &Unary{Op: op, Expr: n, Suffix: false, SizeofType: false}
    		}
    	} else if c == 'D' && len(st.str) > 1 && st.str[1] == 'C' {
    		var bindings []AST
    		st.advance(2)
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

        for (auto op : pair.second) {
          ASSERT_TRUE(all_ops.contains(op));
        }
      }
    
      // Check that all registered XLA operation are in the allowlist
      // table or are known to not be in it.
    
      absl::flat_hash_set<string> known_not_in_list =
          tensorflow::testing::GetKnownXLAAllowlistOp();
      std::vector<string> unknow_op;
      for (string op : vall_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    				DynamicClient:       dynamicClient,
    				APIExtensionsClient: apiExtensionClient,
    			}
    
    			for i, op := range c.Operations {
    				t.Logf("Performing Operation: %v", op.Description())
    				if err := op.Do(ctx); err != nil {
    					t.Fatalf("failed %T operation %v: %v\n%v", op, i, err, op)
    				}
    			}
    
    			// Reset resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. tensorflow/c/kernels_test.cc

    #include "tensorflow/core/framework/kernel_def.pb.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    #include "tensorflow/core/framework/node_def_builder.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/tensor_types.h"
    #include "tensorflow/core/framework/types.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
Back to top