Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,122 for check$1 (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.td

    def ConvertTFEinsumToXLADotV2Op : Pat<
      (TF_EinsumOp:$einsum
        $args, $equation),
      (CreateXlaDotV2OpFromTfEinsumOp
        $equation, $args, $einsum),
      [(IsInt32ElementType $einsum),
       // Constraint to check:
       // 1. The einsum has two inputs and one output.
       // 2. The einsum is not created by the convert function itself.
       // 3. Both inputs are int32 tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. src/log/slog/logger_test.go

    	SetDefault(logger)
    
    	// Calls to check must be one line apart.
    	// Determine line where calls start.
    	f, _ := runtime.CallersFrames([]uintptr{callerPC(2)}).Next()
    	startLine = f.Line + 4
    	// Do not change the number of lines between here and the call to check(0).
    
    	logger.Log(ctx, LevelInfo, "")
    	check(0)
    	logger.LogAttrs(ctx, LevelInfo, "")
    	check(1)
    	logger.Debug("")
    	check(2)
    	logger.Info("")
    	check(3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. src/go/types/check.go

    	// start with a clean slate (check.Files may be called multiple times)
    	check.files = nil
    	check.imports = nil
    	check.dotImportMap = nil
    
    	check.firstErr = nil
    	check.methods = nil
    	check.untyped = nil
    	check.delayed = nil
    	check.objPath = nil
    	check.cleaners = nil
    
    	// determine package name and collect valid files
    	pkg := check.pkg
    	for _, file := range files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    }
    
    // CHECK-LABEL:   func @shift_left(
    // CHECK-SAME:                     %[[VAL_0:.*]]: tensor<4xi32>,
    // CHECK-SAME:                     %[[VAL_1:.*]]: tensor<4xi32>) -> tensor<4xi32> {
    // CHECK:           %[[VAL_2:.*]] = "tf.LeftShift"(%[[VAL_0]], %[[VAL_1]]) : (tensor<4xi32>, tensor<4xi32>) -> tensor<4xi32>
    // CHECK:           return %[[VAL_2]] : tensor<4xi32>
    // CHECK:         }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/check.go

    // via action.describef for debugging, if desired.
    func (check *Checker) later(f func()) *action {
    	i := len(check.delayed)
    	check.delayed = append(check.delayed, action{f: f})
    	return &check.delayed[i]
    }
    
    // push pushes obj onto the object path and returns its index in the path.
    func (check *Checker) push(obj Object) int {
    	check.objPath = append(check.objPath, obj)
    	return len(check.objPath) - 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. src/runtime/memclr_riscv64.s

    	BGE	X11, X9, loop64
    	BEQZ	X11, done
    
    check32:
    	MOV	$32, X9
    	BLT	X11, X9, check16
    zero32:
    	MOV	ZERO, 0(X10)
    	MOV	ZERO, 8(X10)
    	MOV	ZERO, 16(X10)
    	MOV	ZERO, 24(X10)
    	ADD	$32, X10
    	SUB	$32, X11
    	BEQZ	X11, done
    
    check16:
    	MOV	$16, X9
    	BLT	X11, X9, check8
    zero16:
    	MOV	ZERO, 0(X10)
    	MOV	ZERO, 8(X10)
    	ADD	$16, X10
    	SUB	$16, X11
    	BEQZ	X11, done
    
    check8:
    	MOV	$8, X9
    	BLT	X11, X9, check4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert-tf-quant-types.mlir

      } : (tensor<1xf32>, tensor<f32>, tensor<i32>) -> tensor<1x!tf_type.qint8>
    
      // CHECK: %1 = "tf.Cast"(%0) <{Truncate = false}> : (tensor<1x!tf_type.qint8>) -> tensor<1xi8>
      // CHECK: %2 = "tf.Cast"(%1) <{Truncate = false}> : (tensor<1xi8>) -> tensor<1xi32>
      %1 = "tf.Cast"(%0) {Truncate = false} : (tensor<1x!tf_type.qint8>) -> tensor<1x!tf_type.qint32>
    
      // CHECK: return %2 : tensor<1xi32>
      func.return %1 : tensor<1x!tf_type.qint32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/checker.go

    //  limitations under the License.
    
    package echo
    
    var noChecker Checker = func(_ CallResult, err error) error {
    	return err
    }
    
    // Checker inspects echo call results for errors.
    type Checker func(CallResult, error) error
    
    func (c Checker) Check(result CallResult, err error) error {
    	return c(result, err)
    }
    
    // NoChecker provides a Checker that returns the original raw call error, unaltered.
    func NoChecker() Checker {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 22:50:35 UTC 2022
    - 1000 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/checks.go

    	containerRuntime := utilruntime.NewContainerRuntime(nodeReg.CRISocket)
    	if err := containerRuntime.Connect(); err != nil {
    		klog.Warningf("[preflight] WARNING: Couldn't create the interface used for talking to the container runtime: %v\n", err)
    	} else {
    		checks = append(checks, ContainerRuntimeCheck{runtime: containerRuntime})
    	}
    
    	// non-windows checks
    	checks = addSwapCheck(checks)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. tests/util/leak/check.go

    	for _, g := range leaked {
    		errString.WriteString(fmt.Sprintf("Leaked goroutine: %v\n", g.stack))
    	}
    	return errors.New(errString.String())
    }
    
    // Check adds a check to a test to ensure there are no leaked goroutines
    // To use, simply call leak.Check(t) at the start of a test; Do not call it in defer.
    // It is recommended to call this as the first step, as Cleanup is called in LIFO order; this ensures any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 10:22:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top