Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for entry_func_1 (0.5 sec)

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

        return true;
      }
    
      int entry_func_count = 0;
      FuncOp entry_func = nullptr;
      for (auto fn : module.getOps<FuncOp>()) {
        auto attrs = fn->getAttrOfType<mlir::DictionaryAttr>("tf.entry_function");
        if (!attrs || attrs.empty()) continue;
        ++entry_func_count;
        entry_func = fn;
      }
    
      // We should have at least one entry function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top