Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for input_idx (0.47 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          indices.getType().getRank() != 1 || port[1] >= indices.getNumElements()) {
        return {};
      }
    
      int64_t input_idx = indices.getValues<IntegerAttr>()[port[1]].getInt();
      if (input_idx >= params_ty.getDimSize(0)) return {};
    
      ValuePort req(params);
      req.port.push_back(input_idx);
      return req;
    }
    
    ValuePort ComputeInputComponentFor(Operation* op, ArrayRef<unsigned int> port) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides[i])
        auto get_output_dim_for_same_padding = [](int64_t input_dim,
                                                  int64_t stride_dim) -> int64_t {
          return std::ceil(input_dim / static_cast<double>(stride_dim));
        };
        return output_height ==
                   get_output_dim_for_same_padding(input_height, stride_height) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                                     llvm::StringRef crop_b_name) -> LogicalResult {
          int64_t input_dim = input_shape[spatial_dim_index];
          int64_t output_dim = output_shape[spatial_dim_index];
          if (!static_dims(input_dim, output_dim)) return success();
    
          int64_t input_dim_pad = input_dim * block_size;
          // If crops are unknown, the maximum output spatial dim size is input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                     << "multiples[" << i << "] = " << m;
            }
    
            if (!ShapedType::isDynamic(input_dim) &&
                !ShapedType::isDynamic(output_dim) && output_dim != input_dim * m) {
              return op.emitOpError()
                     << "requires input.shape[" << i << "] (" << input_dim << ")"
                     << " * " << m << " to be equal to "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        arg_nodes->resize(inputs.size());
        ret_nodes->resize(outputs.size());
    
        for (Node* n : GetOrderedNodes()) {
          // Handle inputs/arguments.
          auto input_it = inputs.find(n->name());
          if (input_it != inputs.end()) {
            (*arg_nodes)[input_it->second] = {n, 0};
          }
    
          // Handle outputs/returns.
          if (output_node_names.contains(n->name())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top