Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for static_size (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

          f=tpu_subgraph,
          device_ordinal=[0])
    
    static_shape = tf.placeholder(tf.int32, shape=([3]), name='static_size')
    
    w = tf.Variable(tf.constant([[1.0], [2.0], [3.0]]), name='w')
    
    w_dyn = tf.SetDynamicDimensionBounds(w, static_size])
    tpu_call([w_dyn])
    }];
      let arguments = (ins
        TF_Tensor:$input,
        TF_I32OrI64Tensor:$static_shape
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

      const int state_size =
          reduce_dataset->getAttrOfType<ArrayAttr>("Tstate").size();
      for (int i = 0; i < state_size; ++i) {
        body_returns.push_back(dataset_if.getResult(i));
      }
      // Copy the arguments but skip the states and the loop condition
      // which are updated in while body.
      for (int i = state_size + 1; i < body_args.size(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.cc

          return rewriter.notifyMatchFailure(op, "missing resource subtype");
        }
    
        int counter_size = tensorflow::GetCounterSize(alg);
        int state_size = counter_size + tensorflow::RNG_KEY_SIZE;
        RankedTensorType res_type =
            RankedTensorType::get({state_size}, state_element_type);
        if (res_type != GetResourceSubtype(rng_op.getResource())) {
          return rewriter.notifyMatchFailure(op, "unexpected resource subtype");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	STATX_MNT_ID_UNIQUE                         = 0x4000
    	STATX_MODE                                  = 0x2
    	STATX_MTIME                                 = 0x40
    	STATX_NLINK                                 = 0x4
    	STATX_SIZE                                  = 0x200
    	STATX_TYPE                                  = 0x1
    	STATX_UID                                   = 0x8
    	STATX__RESERVED                             = 0x80000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                                                      : input_type.getDimSize(1);
        const int state_size = cell_state.getNumElements();
    
        // Check if the dimension of the inputs matches.
        if ((output_state_size != n_batch * n_output) ||
            (state_size != n_batch * n_cell) ||
            (input_to_output_weights.getDimSize(1) != n_input) ||
    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. RELEASE.md

            (SavedModelEstimator).
        *   Adds leaf index modes as an argument.
        *   Allow a different output shape from the input in
            tf.contrib.image.transform.
        *   Change the state_size order of the StackedRNNCell to be natural order.
            To keep the existing behavior, user can add reverse_state_order=True
            when constructing the StackedRNNCells.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top