Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AsStablehloReduceWindowOptions (0.6 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

            "dimensions",
            BuildVhloTensorV1Attr({static_cast<int64_t>(op->dimensions.size())},
                                  op->dimensions, builder)));
        return;
      }
      if (const auto* op = op_union.AsStablehloReduceWindowOptions()) {
        if (!op->window_dimensions.empty()) {
          attributes.emplace_back(builder.getNamedAttr(
              "window_dimensions",
              BuildVhloTensorV1Attr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            mlir::SymbolRefAttr::get(builder.getContext(), func_names.at(body_idx));
    
        op_state.addAttribute("body", body_attr);
    
        return absl::OkStatus();
      }
      if (auto* opts = op.builtin_options_2.AsStablehloReduceWindowOptions()) {
        int32_t body_idx = opts->body_subgraph_index;
        if (body_idx >= func_names.size()) {
          return absl::AbortedError("subgraph with index not found: " +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      }
      tflite::StablehloReduceWindowOptionsT *AsStablehloReduceWindowOptions() {
        return type == BuiltinOptions2_StablehloReduceWindowOptions ?
          reinterpret_cast<tflite::StablehloReduceWindowOptionsT *>(value) : nullptr;
      }
      const tflite::StablehloReduceWindowOptionsT *AsStablehloReduceWindowOptions() const {
        return type == BuiltinOptions2_StablehloReduceWindowOptions ?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top