Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for input_num (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        const auto& tensor_info = iter.second;
    
        TF_ASSIGN_OR_RETURN(std::string name,
                            GetDenseTensorNameFromTensorInfo(tensor_info));
    
        VLOG(1) << "Importing Signature Input: input_name = " << iter.first
                << ", tensor_info = " << tensor_info.DebugString();
    
        ArrayInfo array_info;
        array_info.imported_dtype = tensor_info.dtype();
    
        if (tensor_info.has_tensor_shape()) {
    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