Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NamedAttribute (0.7 sec)

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

        auto body_attr =
            mlir::SymbolRefAttr::get(builder.getContext(), func_names.at(body_idx));
    
        return llvm::SmallVector<mlir::NamedAttribute, 4>{
            builder.getNamedAttr("cond", cond_attr),
            builder.getNamedAttr("body", body_attr)};
      }
      return llvm::SmallVector<mlir::NamedAttribute, 4>{};
    }
    
    Status ConvertSubgraphIdxToStablehloRegion(
        const tflite::OperatorT& op, const std::vector<std::string>& func_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)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

                                                        /*y=*/epsilon_value);
        }
        ::mlir::TF::RsqrtOp rsqrt_op;
        {
          ::mlir::SmallVector<::mlir::Value, 4> tblgen_values;
          ::mlir::SmallVector<::mlir::NamedAttribute, 4> tblgen_attrs;
          tblgen_values.push_back((*add_op_1.getODSResults(0).begin()));
          rsqrt_op = rewriter.create<::mlir::TF::RsqrtOp>(odsLoc, tblgen_values,
    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/tensorflow/ir/tf_ops.td

      let hasRegionVerifier = 1;
    
      let builders = [
        OpBuilder<(ins "TypeRange":$resultTypes, "ValueRange":$operands,
          "llvm::ArrayRef<::mlir::NamedAttribute>":$attributes,
          "unsigned":$numRegions),
        [{
          assert(numRegions == 2u && "mismatched number of regions");
          build($_builder, $_state, resultTypes, operands, attributes);
        }]>];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top