Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for GOT (0.03 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            RankedTensorType::get({}, IntegerType::get(op->getContext(), 1)));
        if (callee_type != expected_callee_type) {
          return op.emitOpError()
                 << "called_computation type does not match the expected type. Got "
                 << callee_type << " expected " << expected_callee_type;
        }
        if (!MatchTopKComparator<mlir::func::ReturnOp>(callee.getBody())) {
          return op.emitOpError() << "only match for GT comparator";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          error_handler.emitError()
              << '\'' << op << "' should produce value of tensor type instead of "
              << value.getType();
          return false;
        }
        error_handler.emitError("expected tensor type, got ") << value.getType();
        return false;
      }
    
      Type element_type = type.getElementType();
      auto status = GetTFLiteType(element_type);
      if (!status.ok()) {
        return error_handler.emitError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    	 (MOVDaddr [int32(off1)+off2] {sym} ptr)
    
    // fold address into load/store.
    // Do not fold global variable access in -dynlink mode, where it will
    // be rewritten to use the GOT via REGTMP, which currently cannot handle
    // large offset.
    (MOVBload [off1] {sym} (ADDconst [off2] ptr) mem) && is32Bit(int64(off1)+off2)
    	&& (ptr.Op != OpSB || !config.ctxt.Flag_dynlink) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    goog
    
    // google : 2014-07-24 Charleston Road Registry Inc.
    google
    
    // gop : 2014-01-16 Republican State Leadership Committee, Inc.
    gop
    
    // got : 2014-12-18 Amazon Registry Services, Inc.
    got
    
    // grainger : 2015-05-07 Grainger Registry Services, LLC
    grainger
    
    // graphics : 2013-09-13 Binky Moon, LLC
    graphics
    
    // gratis : 2014-03-20 Binky Moon, LLC
    gratis
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      //
      // TODO(b/184679394): Add unit test for this check.
      TF_RET_CHECK(tensor_info.encoding_case() == tensorflow::TensorInfo::kName)
          << "Only dense tensor is supported, but got encoding case "
          << tensor_info.encoding_case();
      return tensor_info.name();
    }
    
    // This class is used to generate new MLIR function name strings that are both
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        %strides = "tf.Const"() {value = dense<[3, 1, 1]> : tensor<3xi32>} : () -> tensor<3xi32>
        // expected-error @below {{'tf.XlaConvV2' op feature_group_count must be a positive number, got -1}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    	for id, rl := range rMap {
    		if !rl.Expiration.IsNull() || !rl.NoncurrentVersionExpiration.IsNull() {
    			if _, ok := newRMap[id]; !ok {
    				// if rule getting removed was pure expiry rule (may be got to this site
    				// as part of replication of expiry rules), remove it. Otherwise remove
    				// only the expiry part of it
    				if rl.Transition.IsNull() && rl.NoncurrentVersionTransition.IsNull() {
    					delete(rMap, id)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    				// It's important that we write this *after* we know whether we
    				// lost our P or not (determined by exitsyscallfast).
    				trace.GoSysExit(lostP)
    				if lostP {
    					// We lost the P at some point, even though we got it back here.
    					// Trace that we're starting again, because there was a traceGoSysBlock
    					// call somewhere in exitsyscallfast (indicating that this goroutine
    					// had blocked) and we're about to start running again.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top