Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for Uncommon (0.15 sec)

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

      if (axis_attr.getNumElements() != 1) return failure();
      int64_t axis =
          axis_attr.getSplatValue<IntegerAttr>().getValue().getSExtValue();
      // TODO(ezhulenev): Compute axis from rank. e.g. It might be common to concat
      // on the channels dim for NCHW layout as axis=-2.
      if (axis < 0) return failure();
    
      // All concat operands must be defined by ops of the same kind (e.g. tf.Mul),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	"sync"
    	"testing"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/minio-go/v7/pkg/set"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/pkg/v3/policy"
    )
    
    // API suite container common to both ErasureSD and Erasure.
    type TestSuiteCommon struct {
    	serverType string
    	testServer TestServer
    	endPoint   string
    	accessKey  string
    	secretKey  string
    	signer     signerType
    	secure     bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return fmt.Sprintf("%*s%sBuiltinType: %s", indent, "", field, bt.Name)
    }
    
    func (bt *BuiltinType) prec() precedence {
    	return precPrimary
    }
    
    // printBase is common print code for types that are printed with a
    // simple suffix.
    func printBase(ps *printState, qual, base AST) {
    	ps.inner = append(ps.inner, qual)
    	ps.print(base)
    	if len(ps.inner) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      //   %pack   = tf.Pack(dim0, ...) { axis = 0 }   // [? x ...]
      //
      // Where `...` are some statically known dimensions. In this case %pack can be
      // replace with a %shape. This is a common pattern in models with a dynamic
      // batch size.
    
      // Test Rank 2
      // CHECK: %[[SHAPE0:.*]] = "tf.Shape"
      %3 = "tf.Shape"(%arg0) : (tensor<?x1xf32>) -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      addInterfaces<TensorFlowLiteInlinerInterface,
                    TensorFlowLiteDialectFoldInterface>();
      addTypes<ControlType>();
    }
    
    //===----------------------------------------------------------------------===//
    // Common support logic
    //===----------------------------------------------------------------------===//
    
    namespace {
    
    // Returns true if the dimensions in `a` is a suffix of the ones in `b`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	klet.runner = runtime
    
    	runtimeCache, err := kubecontainer.NewRuntimeCache(klet.containerRuntime, runtimeCacheRefreshPeriod)
    	if err != nil {
    		return nil, err
    	}
    	klet.runtimeCache = runtimeCache
    
    	// common provider to get host file system usage associated with a pod managed by kubelet
    	hostStatsProvider := stats.NewHostStatsProvider(kubecontainer.RealOS{}, func(podUID types.UID) string {
    		return getEtcHostsPath(klet.getPodDir(podUID))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	}
    	return "no Go files in " + e.Package.Dir
    }
    
    // setLoadPackageDataError presents an error found when loading package data
    // as a *PackageError. It has special cases for some common errors to improve
    // messages shown to users and reduce redundancy.
    //
    // setLoadPackageDataError returns true if it's safe to load information about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    import os
    from typing import Mapping, Optional, Sequence, Tuple, Union
    
    from absl.testing import parameterized
    import numpy as np
    import tensorflow  # pylint: disable=unused-import
    
    from tensorflow.compiler.mlir.quantization.common.python import testing
    from tensorflow.compiler.mlir.quantization.stablehlo import quantization_config_pb2 as stablehlo_quant_config_pb2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	// That could potentially last until other goroutines become ready
    	// to run. That said, we need to find a way to hedge
    	//
    	// Calling wakep() here is the best bet, it will do nothing in the
    	// common case (no racing on `sched.npidle`), while it could wake one
    	// more P to execute G's, which might end up with >1 P's: the first one
    	// wakes another P and so forth until there is no more work, but this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    </p>
    
    
    <h3 id="Appending_and_copying_slices">Appending to and copying slices</h3>
    
    <p>
    The built-in functions <code>append</code> and <code>copy</code> assist in
    common slice operations.
    For both functions, the result is independent of whether the memory referenced
    by the arguments overlaps.
    </p>
    
    <p>
    The <a href="#Function_types">variadic</a> function <code>append</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top