Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 142 for other2 (0.13 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // If 'split_dim' is not a constant, there are no other checks.
      std::optional<int64_t> split_dim_opt =
          ExtractConstantIntFromTensor(op.getSplitDim());
      if (!split_dim_opt) return success();
    
      // If 'input' is not a ranked tensor, there are no other checks.
      auto input_type = op.getValue().getType().dyn_cast<RankedTensorType>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            self._input_saved_model_path,
            self._output_saved_model_path,
            quantization_options,
        )
        self.assertIsNotNone(converted_model)
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
            testing.get_size_ratio(
                self._output_saved_model_path, self._input_saved_model_path
            ),
            0.5,
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	if len(mfiles) > 0 {
    		cgoLDFLAGS = append(cgoLDFLAGS, "-lobjc")
    	}
    
    	// Likewise for Fortran, except there are many Fortran compilers.
    	// Support gfortran out of the box and let others pass the correct link options
    	// via CGO_LDFLAGS
    	if len(ffiles) > 0 {
    		fc := cfg.Getenv("FC")
    		if fc == "" {
    			fc = "gfortran"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // tf.Mul op over it and a scalar const tensor 1.0. For now this only applies to
    // float32 tensors.
    // TODO(hongm): Implement this op synthesis optimization for other dtypes if
    // needed.
    //
    // Because coefficient-wise binary operations support implicit broadcasting, we
    // should be very careful with this optimization, and do not accidentally
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    	local := globalLocalNodeName
    	if local == "" {
    		local = "127.0.0.1"
    	}
    
    	failedClients := make(map[int]struct{})
    
    	if globalIsDistErasure {
    		// Push binary to other servers
    		for idx, nerr := range globalNotificationSys.VerifyBinary(ctx, u, sha256Sum, releaseInfo, binC) {
    			if nerr.Err != nil {
    				peerResults[nerr.Host.String()] = madmin.ServerPeerUpdateStatus{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    // scalar value).
    struct ValuePort {
      PointerUnion<Operation*, BlockArgument> producer;
      SmallVector<unsigned int, 2> port;
    
      bool operator==(const ValuePort& other) const {
        return producer == other.producer && port == other.port;
      }
    
      ValuePort() = default;
    
      // Convert output value to ValuePort.
      explicit ValuePort(Value v) {
        OpResult opr = mlir::dyn_cast<OpResult>(v);
        if (opr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ld
    
    import (
    	"bytes"
    	"cmd/internal/gcprog"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    // These ops are named NonMaxSuppressionV4 & NonMaxSuppressionV5 to be
    // consistent with TensorFlow's naming. They are NOT 'versions' of NMS in the
    // sense that one is an incremental change over the other.
    // In reality NonMaxSuppressionV5 implements Soft Non Max Suppression and
    // NonMaxSuppressionV4 performs hard NMS.
    
    def TFL_NonMaxSuppressionV4Op : TFL_Op<"non_max_suppression_v4", [
      Pure,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// changes and to update pod status. On the other hand, a shorter period
    	// will cause more frequent relisting (e.g., container runtime operations),
    	// leading to higher cpu usage.
    	// Note that even though we set the period to 1s, the relisting itself can
    	// take more than 1s to finish if the container runtime responds slowly
    	// and/or when there are many container changes in one cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    							// But, the function continues to run other hints because the Pod has PendingPlugins, which can result in queueImmediately.
    							QueueingHintFn: queueHintReturnQueue,
    						},
    						{
    							PluginName: "fooPlugin2",
    							// It's interpreted as queueImmediately.
    							// The function doesn't run other hints because queueImmediately is the highest priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top