Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for canMove (0.41 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/extract_tpu_copy_with_dynamic_shape_op.cc

        return failure();
      }
      return success();
    }
    
    // Check if we can move TPUCopyWithDynamicShapeOp out of a launch. This is the
    // case if its results aren't used by other ops except for the return op.
    bool CanMove(Operation* op) {
      auto launch_op = llvm::dyn_cast<tf_device::LaunchOp>(op->getParentOp());
      if (!launch_op) return false;
      for (Value result : op->getResults()) {
        for (Operation* user : result.getUsers()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. tensorflow/c/tf_tensor.cc

      if (Type() == DT_STRING && NumElements() > 0) {
        TF_TString* data = static_cast<TF_TString*>(Data());
        if (CanMove() && data != nullptr) {
          for (int64_t i = 0; i < NumElements(); ++i) {
            TF_TString_Dealloc(&data[i]);
          }
        }
      }
      delete this;
    }
    
    bool TensorInterface::CanMove() const {
      // It is safe to move the Tensor if and only if we own the unique reference to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

          setMode(IDLE);
          svg.removeEventListener('mousemove', handleScanMove);
          return;
        }
        if (mode == MOUSEPAN) panMove(e.clientX, e.clientY);
      }
    
      function handleScanEnd(e) {
        if (mode == MOUSEPAN) panMove(e.clientX, e.clientY);
        setMode(IDLE);
        svg.removeEventListener('mousemove', handleScanMove);
        if (!moved) clickHandler(e.target);
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"cancer":                               "\u264b",
    	"candle":                               "\U0001f56f\ufe0f",
    	"candy":                                "\U0001f36c",
    	"canned_food":                          "\U0001f96b",
    	"canoe":                                "\U0001f6f6",
    	"cape_verde":                           "\U0001f1e8\U0001f1fb",
    	"capital_abcd":                         "\U0001f520",
    	"capricorn":                            "\u2651",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    if(!this.args.params.layerRect){throw new Error('Missing layer rect');}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (2)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1F6F0..1F6F3  ; valid                  ;      ; NV8    # 7.0  SATELLITE..PASSENGER SHIP
    1F6F4..1F6F6  ; valid                  ;      ; NV8    # 9.0  SCOOTER..CANOE
    1F6F7..1F6F8  ; valid                  ;      ; NV8    # 10.0 SLED..FLYING SAUCER
    1F6F9         ; valid                  ;      ; NV8    # 11.0 SKATEBOARD
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top