Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for told (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                              << range_begin << ", " << range_end
                              << "); actual value: " << axis;
      }
    
      return success();
    }
    
    OpFoldResult PackOp::fold(FoldAdaptor) {
      // Fold pack operation if it computes the input tensor shape:
      //
      //   %shape  = tf.Shape(%arg)                    // [? x ...]
      //   %dim0   = tf.StridedSlice(%shape, 0, 1, 1)  // get unknown dim0 value
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		t.Second.goString(indent+2, "Second: "),
    		t.Third.goString(indent+2, "Third: "))
    }
    
    // Fold is a C++17 fold-expression.  Arg2 is nil for a unary operator.
    type Fold struct {
    	Left bool
    	Op   AST
    	Arg1 AST
    	Arg2 AST
    }
    
    func (f *Fold) print(ps *printState) {
    	op, _ := f.Op.(*Operator)
    	printOp := func() {
    		if op != nil {
    			if ps.llvmStyle {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Move transposes pass.";
      let constructor = "TF::CreateMoveTransposesPass()";
      let options = [
        Option<"fold_transpose_in_ops_", "fold-transpose-in-ops", "bool", /*default=*/"true",
               "Whether to fold transposes in ops which can support folding.">,
        Option<"direction_", "direction", "enum MoveTransposeDirection",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

          Map<? extends K, ? extends V> map) {
        return new HashMap<>(map);
      }
    
      /**
       * Creates a {@code HashMap} instance, with a high enough "initial capacity" that it <i>should</i>
       * hold {@code expectedSize} elements without growth. This behavior cannot be broadly guaranteed,
       * but it is observed to be true for OpenJDK 1.7. It also can't be guaranteed that the method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	}
    }
    
    // casGToWaiting transitions gp from old to _Gwaiting, and sets the wait reason.
    //
    // Use this over casgstatus when possible to ensure that a waitreason is set.
    func casGToWaiting(gp *g, old uint32, reason waitReason) {
    	// Set the wait reason before calling casgstatus, because casgstatus will use it.
    	gp.waitreason = reason
    	casgstatus(gp, old, _Gwaiting)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      //
      // However we can't fold this arithmetic operation because the operand
      // shape does not match the result shape.
    
      %1 = "tf.AddV2"(%arg0, %0) : (tensor<f32>, tensor<4xf32>) -> tensor<4xf32>
      %2 = "tf.AddV2"(%0, %arg0) : (tensor<4xf32>, tensor<f32>) -> tensor<4xf32>
    
      // If operand has the same shape as a result, we can fold it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    	}
    
    	// Remove the transitioned object whose object version is being overwritten.
    	if !globalTierConfigMgr.Empty() {
    		os.Sweep()
    	}
    }
    
    // PutObjectLegalHoldHandler - set legal hold configuration to object,
    func (api objectAPIHandlers) PutObjectLegalHoldHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PutObjectLegalHold")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // the operation knows how to constant fold itself.
      bool some_unknown = false;
      for (int i = 0, e = op->getNumOperands(); i != e; ++i) {
        if (!(constant_operands[i] =
                  ComputeOutputComponent(ValuePort(op->getOperand(i)))))
          some_unknown = true;
      }
    
      // Attempt to constant fold the operation.
      auto abstract_op = op->getRegisteredInfo();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (LT (CMPWconst [0] x) yes no) => (TBNZ [31] x yes no)
    (LT (CMPconst [0] x)  yes no) => (TBNZ [63] x yes no)
    
    // fold offset into address
    (ADDconst [off1] (MOVDaddr [off2] {sym} ptr)) && is32Bit(off1+int64(off2)) =>
    	 (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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    		"internal/cpu":         // for cpu features
    		return true
    	}
    	return strings.HasPrefix(pkg, "runtime/internal/") && !strings.HasSuffix(pkg, "_test")
    }
    
    // Estimate the max size needed to hold any new trampolines created for this function. This
    // is used to determine when the section can be split if it becomes too large, to ensure that
    // the trampolines are in the same section as the function that uses them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top