Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fieldPtr (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          const DictValue& dict = value.dict_value();
          using FieldTy = protobuf::MapPair<std::string, StructuredValue>;
          llvm::SmallVector<const FieldTy*, 4> fields;
          for (auto& field : dict.fields()) {
            fields.push_back(&field);
          }
          llvm::sort(fields, [](const FieldTy* a, const FieldTy* b) {
            return a->first < b->first;
          });
          for (auto& field : fields) {
    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