Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for strides_int (0.28 sec)

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

          (end_int < begin_int && strides_int < 0)) {
        // Extract sub-shape only if all of those dimensions are static.
        for (int64_t i = begin_int; (strides_int > 0) ? i < end_int : i > end_int;
             i += strides_int) {
          if (tensor_ty.isDynamicDim(i)) {
            return {};
          }
          sub_shape.push_back(tensor_ty.getDimSize(i));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/perception_ops_utils_test.cc

      auto pool_size_id = ::mlir::StringAttr::get(context, "pool_size");
      fields.emplace_back(pool_size_id, pool_size);
    
      auto strides_id = ::mlir::StringAttr::get(context, "strides");
      fields.emplace_back(strides_id, strides);
    
      DictionaryAttr dict = DictionaryAttr::get(context, fields);
      return TF::FuncAttr::get(context, "MaxUnpooling2D", dict);
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 21:02:21 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top