Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for OP (0.07 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    			break // unary expr
    		}
    		switch x.Op {
    		case Mul:
    			if name, _ := x.X.(*Name); name != nil && (force || isTypeElem(x.Y)) {
    				// x = name *x.Y
    				op := *x
    				op.X, op.Y = op.Y, nil // change op into unary *op.Y
    				return name, &op
    			}
    		case Or:
    			if name, lhs := extractName(x.X, force || isTypeElem(x.Y)); name != nil && lhs != nil {
    				// x = name lhs|x.Y
    				op := *x
    				op.X = lhs
    				return name, &op
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    			continue
    		}
    
    		mustBeFirst := func(v *Value) bool {
    			return v.Op == OpPhi || v.Op.isLoweredGetClosurePtr() ||
    				v.Op == OpArgIntReg || v.Op == OpArgFloatReg
    		}
    
    		blockPrologComplete := func(v *Value) bool {
    			if b.ID != state.f.Entry.ID {
    				return !opcodeTable[v.Op].zeroWidth
    			} else {
    				return v.Op == OpInitMem
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK-SAME: _replication_info = "foo"
    // CHECK: "tf.AssignAddVariableOp"([[VAR]], [[CONST]])
    
    // Preceding user is using resource updated by the cluster within a nested op.
    // Resource is updated by a cluster op, and opA (not in cluster) is using the
    // resource in a nested op. We expect opA to be after the cluster.
    // CHECK-LABEL: func @cluster_nested_op_using_resource
    func.func @cluster_nested_op_using_resource() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (ANDWload  [off1] {sym} x (ADDconst [off2] ptr) mem) && ptr.Op != OpSB && is20Bit(int64(off1)+int64(off2)) => (ANDWload  [off1+off2] {sym} x ptr mem)
    (ORload    [off1] {sym} x (ADDconst [off2] ptr) mem) && ptr.Op != OpSB && is20Bit(int64(off1)+int64(off2)) => (ORload    [off1+off2] {sym} x ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

          quantized_func->emitError() << "At least one op is expected in the "
                                      << kQuantizedOpsAttribute << " attribute.";
          return failure();
        }
    
        // Use the first op as the representative name.
        return mlir::cast<StringAttr>(quantized_ops.front()).getValue();
      }
    
      bool IsInCompsiteFunction(Operation* op) {
        func::FuncOp parent = op->getParentOfType<func::FuncOp>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        the attribute value of the op.
    
        Args:
          nodes: Iterable of NodeDefs.
          op_name: Name of the op to match.
          attr_name: Name of the attribute of the op to match.
          attr_val: Value of the attr_name to check.
          get_op_name: If set True, checks node.name rather than node.op.
    
        Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

      std::vector<Predicate*> simplified_ops;
      for (Predicate* op : operands) {
        // Simplify A&A => A and  A|A => A.
        if (!simplified_ops_set.insert(op).second) {
          continue;
        }
    
        if (op->kind() == pred_kind) {
          // "Inline" the operands of an inner And/Or into the parent And/Or.
          for (Predicate* subop : op->GetOperands()) {
            if (simplified_ops_set.insert(subop).second) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

        TF_DeleteStatus(status);
        ASSERT_EQ(TF_OK, code) << status_msg;
    
        // Test op list.
        TF_Buffer op_list_buf = TF_GetOpList(lib);
        tensorflow::OpList op_list;
        EXPECT_TRUE(op_list.ParseFromArray(op_list_buf.data, op_list_buf.length));
        ASSERT_EQ(op_list.op_size(), 1);
        EXPECT_EQ("TestCApi1", op_list.op(0).name());
        TF_DeleteLibraryHandle(lib);
      }
    #endif  // !defined(TENSORFLOW_NO_SHARED_OBJECTS)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm.go

    		}
    		a3--
    	}
    
    	ops := oprange[p.As&obj.AMask]
    	c1 := &xcmp[a1]
    	c4 := &xcmp[a4]
    	for i := range ops {
    		op := &ops[i]
    		if (int(op.reg) == a2) && int(op.from3) == a3 && c1[op.from1] && c4[op.to1] && (int(op.to2) == a5) {
    			p.Optab = uint16(cap(optab) - cap(ops) + i + 1)
    			return op
    		}
    	}
    
    	c.ctxt.Diag("illegal combination %v %v %v %v %v %v", p.As, DRconv(a1), DRconv(a2), DRconv(a3), DRconv(a4), DRconv(a5))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  10. src/math/big/float_test.go

    				yy.SetFloat64(y)
    				var (
    					op string
    					z  float64
    					f  func(z, x, y *Float) *Float
    				)
    				switch i {
    				case 0:
    					op = "+"
    					z = x + y
    					f = (*Float).Add
    				case 1:
    					op = "-"
    					z = x - y
    					f = (*Float).Sub
    				case 2:
    					op = "*"
    					z = x * y
    					f = (*Float).Mul
    				case 3:
    					op = "/"
    					z = x / y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top