Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getIpr (0.11 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.idea.model.IdeaProject.getDisplayName()> does not have raw return type assignable to org.gradle.api.provider.Provider in (IdeaProject.java:0)
    Method <org.gradle.plugins.ide.idea.model.IdeaProject.getIpr()> does not have raw return type assignable to org.gradle.api.provider.Provider in (IdeaProject.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      TF_RETURN_IF_ERROR(importer.ImporterBase::ConvertDeferredFunctions());
    
      // Mark main function public, others private.
      for (auto function : module.get().getOps<mlir::func::FuncOp>()) {
        auto visibility = function.getName() == graph_func_name
                              ? mlir::func::FuncOp::Visibility::Public
                              : mlir::func::FuncOp::Visibility::Private;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Verify that module has a function named main.
      FuncOp main_fn = module.lookupSymbol<FuncOp>("main");
      if (!main_fn) {
        int entry_func_count = 0;
        for (auto fn : module.getOps<FuncOp>()) {
          auto attrs = fn->getAttrOfType<mlir::DictionaryAttr>("tf.entry_function");
          if (attrs && !attrs.empty()) {
            ++entry_func_count;
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          if (failed(failure_or_converged) || !failure_or_converged.value())
            return failure_or_converged;
        }
        context.enqueue(main);
      }
      for (auto func : module.getOps<func::FuncOp>()) context.enqueue(func);
      // Arbitrarily upper bound the maximum number of functions that get processed
      // just to avoid pathological cases.
      auto max_iteration = context.QueueSize() * 4;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top