Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for max_range (0.11 sec)

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

                                   x_range, x_scale);
    
        x_range =
            rewriter.create<CastOp>(loc,
                                    tensorflow::GetTypeFromTFTensorShape(
                                        {out_width_constant}, out_size_element_ty),
                                    x_range);
    
        Value x_indices = rewriter.create<ReshapeOp>(
            loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        // Create tensor type for the transpose result.
        auto filter_type = mlir::cast<RankedTensorType>(filter.getType());
        auto result_shape =
            llvm::to_vector<4>(llvm::map_range(perm, [filter_type](int64_t dim) {
              return filter_type.getDimSize(dim);
            }));
        auto elem_type = filter_type.getElementType();
        auto result_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    // wrapped in a NamedAttribute.
    mlir::NamedAttribute BuildTFEntryFunctionAttribute(
        const tflite::SubGraphT& subgraph, Builder* builder,
        const std::string& name, ArrayRef<int32_t> indices) {
      auto tensor_names = llvm::map_range(
          indices, [&](int i) { return subgraph.tensors.at(i)->name; });
      return builder->getNamedAttr(
          name, builder->getStringAttr(llvm::join(tensor_names, ",")));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top