Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 92 for const2 (0.32 sec)

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

        }
      }
    
      const DimensionVector& batch_dimensions() const { return batch_dimensions_; }
      const DimensionVector& contracting_dimensions() const {
        return contracting_dimensions_;
      }
      // Out dimensions are any dimensions that are neither batch nor contracting
      // dimensions, hence will be propagated to output shape.
      const DimensionVector& out_dimensions() const { return out_dimensions_; }
    
    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/transforms/optimize.cc

    }
    
    bool CanFuseConvOrDepthwiseConvShapes(const ArrayRef<int64_t> filter_shape,
                                          const ArrayRef<int64_t> elements_shape,
                                          bool is_depthwise) {
      // Val tensor must be a scalar or of a shape [1, ... , 1, elements_depth].
      const int elements_rank = elements_shape.size();
      for (int i = 0; i < elements_rank - 1; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // `high` if `high` is less than `val`; otherwise returns `val`.
    template <class T>
    constexpr const T &Clamp(const T &val, const T &low, const T &high) {
      assert(!(high < low));
      return (val < low) ? low : (high < val) ? high : val;
    }
    
    // Checks if the `index` bit of `val` is set.
    template <class T>
    constexpr bool IsSet(const T &val, unsigned index) {
      return (val & (1 << index)) != 0;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %feature_group_count = "tf.Const"() {value = dense<1> : tensor<2xi32>} : () -> tensor<2xi32>
      %lhs_dilation = "tf.Const"() {value = dense<[4, 1, 1]> : tensor<3xi32>} : () -> tensor<3xi32>
      %rhs_dilation = "tf.Const"() {value = dense<1> : tensor<3xi32>} : () -> tensor<3xi32>
      %padding = "tf.Const"() {value = dense<0> : tensor<3x2xi32>} : () -> tensor<3x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        llvm::SmallVectorImpl<ShapedTypeComponents>& inferredReturnShapes) {
      const int64_t num_spatial_dims = std::is_same<OpT, Conv2DOpAdaptor>() ? 2 : 3;
      const int64_t num_dims = 2 + num_spatial_dims;
      const Value input = op.getInput();
      const Value filter = op.getFilter();
      const TensorType input_ty = mlir::cast<TensorType>(input.getType());
      const TensorType filter_ty = mlir::cast<TensorType>(filter.getType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	EI_PAD        = 9  /* Start of padding (per SVR4 ABI). */
    	EI_NIDENT     = 16 /* Size of e_ident array. */
    )
    
    // Initial magic number for ELF files.
    const ELFMAG = "\177ELF"
    
    // Version is found in Header.Ident[EI_VERSION] and Header.Version.
    type Version byte
    
    const (
    	EV_NONE    Version = 0
    	EV_CURRENT Version = 1
    )
    
    var versionStrings = []intName{
    	{0, "EV_NONE"},
    	{1, "EV_CURRENT"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    func testTransportGzip(t *testing.T, mode testMode) {
    	if mode == http2Mode {
    		t.Skip("https://go.dev/issue/56020")
    	}
    	const testString = "The test string aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
    	const nRandBytes = 1024 * 1024
    	ts := newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		if req.Method == "HEAD" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    }
    
    func TestHeadBody(t *testing.T) {
    	const identityMode = false
    	const chunkedMode = true
    	run(t, func(t *testing.T, mode testMode) {
    		t.Run("identity", func(t *testing.T) { testHeadBody(t, mode, identityMode, "HEAD") })
    		t.Run("chunked", func(t *testing.T) { testHeadBody(t, mode, chunkedMode, "HEAD") })
    	})
    }
    
    func TestGetBody(t *testing.T) {
    	const identityMode = false
    	const chunkedMode = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    import "golang.org/x/text/internal/tag"
    
    // CLDRVersion is the CLDR version from which the tables in this package are derived.
    const CLDRVersion = "32"
    
    const NumLanguages = 8798
    
    const NumScripts = 261
    
    const NumRegions = 358
    
    type FromTo struct {
    	From uint16
    	To   uint16
    }
    
    const nonCanonicalUnd = 1201
    const (
    	_af  = 22
    	_am  = 39
    	_ar  = 58
    	_az  = 88
    	_bg  = 126
    	_bn  = 165
    	_ca  = 215
    	_cs  = 250
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %cst = arith.constant dense<0> : tensor<i32> loc("Const")
      %0 = "tfl.greater"(%arg0, %cst) : (tensor<*xi32>, tensor<i32>) -> tensor<i1>
      func.return %0 : tensor<i1>
    }
    
    func.func @WhileOp_body(%arg0: tensor<*xi32>, %arg1: tensor<*xf32>) -> (tensor<*xi32>, tensor<*xf32>) {
      %cst = arith.constant dense<1> : tensor<i32> loc("Const1")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top