Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for Operands (0.13 sec)

  1. src/cmd/compile/internal/types2/infer.go

    // type parameter. Otherwise the result is nil. Errors are reported through the err parameter.
    // Note: infer may fail (return nil) due to invalid args operands without reporting additional errors.
    func (check *Checker) infer(pos syntax.Pos, tparams []*TypeParam, targs []Type, params *Tuple, args []*operand, reverse bool, err *error_) (inferred []Type) {
    	// Don't verify result conditions if there's no error handler installed:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

                                      PatternRewriter& rewriter) const override; \
      }
    
    // TODO(antiagainst): Define this pattern in a table-driven manner once variadic
    // operands are properly supported in declarative rewrite rule specification.
    
    DECL_CONVERT_OP(Assert);
    DECL_CONVERT_OP(ConcatV2);
    DECL_CONVERT_OP(BatchMatMul);
    DECL_CONVERT_OP(BatchMatMulV2);
    DECL_CONVERT_OP(BatchMatMulV3);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/go/types/unify.go

    		}
    		if panicAtUnificationDepthLimit {
    			panic("unification reached recursion depth limit")
    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    	if asNamed(x) != nil || u.asBoundTypeParam(y) != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/unify.go

    		}
    		if panicAtUnificationDepthLimit {
    			panic("unification reached recursion depth limit")
    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    	if asNamed(x) != nil || u.asBoundTypeParam(y) != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/test.go

    	const want = "abcefghijklmnopqrstuvwxyzABCEFGHIJKLMNOPQRSTUVWXYZ1234567890"
    	if sinkString != want {
    		b.Fatalf("%q != %q", sinkString, want)
    	}
    }
    
    // Static (build-time) test that syntax traversal visits all operands of s[i:j:k].
    func sliceOperands(array [2000]int) {
    	_ = array[C.KILO:C.KILO:C.KILO] // no type error
    }
    
    // set in cgo_thread_lock.go init
    var testThreadLockFunc = func(*testing.T) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

        for (OpOperand& operand : op->getOpOperands()) {
          if (orig_to_new.count(operand.get())) {
            operand.assign(orig_to_new[operand.get()]);
          }
        }
        return WalkResult::advance();
      });
    
      return success();
    }
    
    void XlaBroadcast::runOnOperation() {
      FuncOp func = getOperation();
      mlir::ModuleOp module = func->getParentOfType<mlir::ModuleOp>();
      if (!module) return signalPassFailure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/go/types/stmt.go

    	valueMap  map[any][]valueType // underlying Go value -> valueType
    	valueType struct {
    		pos token.Pos
    		typ Type
    	}
    )
    
    func (check *Checker) caseValues(x *operand, values []ast.Expr, seen valueMap) {
    L:
    	for _, e := range values {
    		var v operand
    		check.expr(nil, &v, e)
    		if x.mode == invalid || v.mode == invalid {
    			continue L
    		}
    		check.convertUntyped(&v, x.typ)
    		if v.mode == invalid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

        private fun getExpectedTypeOfElvisOperand(expression: PsiElement): KaType? {
            val binaryExpression = expression.unwrapQualified<KtBinaryExpression> { binaryExpression, operand ->
                binaryExpression.operationToken == KtTokens.ELVIS && (operand == binaryExpression.left || operand == binaryExpression.right)
            } ?: return null
            if (expression !is KtExpression) return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     *   // partiallyAppliedSymbol: {
     *   //   symbol: `i`
     *   //   dispatchReceiver: null
     *   //   extensionReceiver: null
     *   // }
     *   // accessType: OpAssign {
     *   //   kind: PLUS
     *   //   operand: 1
     *   //   operationSymbol: Int.plus()
     *   // }
     *
     *   i++
     *   // partiallyAppliedSymbol: {
     *   //   symbol: `i`
     *   //   dispatchReceiver: null
     *   //   extensionReceiver: null
     *   // }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/go/types/builtins.go

    // reports whether the call is valid, with *x holding the result;
    // but x.expr is not set. If the call is invalid, the result is
    // false, and *x is undefined.
    func (check *Checker) builtin(x *operand, call *ast.CallExpr, id builtinId) (_ bool) {
    	argList := call.Args
    
    	// append is the only built-in that permits the use of ... for the last argument
    	bin := predeclaredFuncs[id]
    	if hasDots(call) && id != _Append {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top