Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 211 for getIpr (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_globals_to_ml_program.cc

    }
    
    static LogicalResult convertTFGlobals(ModuleOp module) {
      OpBuilder globalBuilder(module.getBodyRegion());
      DenseMap<Operation *, std::string> opToName;
      for (auto globalTensor : module.getOps<tf_saved_model::GlobalTensorOp>()) {
        auto exportedNames = tf_saved_model::GetExportedNames(globalTensor);
        std::string name;
        if (exportedNames.empty()) {
          name = "global_ml_" + globalTensor.getSymName().str();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/DirectoryTree.java

     */
    public interface DirectoryTree {
        /**
         * Returns the base directory of this tree.
         * @return The base dir, never returns null.
         */
        File getDir();
    
        /**
         * Returns the patterns which select the files under the base directory.
         *
         * @return The patterns, never returns null.
         */
        PatternSet getPatterns();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/ClassloaderIsolatedCompilerWorkerExecutor.java

            return new IsolatedClassLoaderWorkerRequirement(daemonForkOptions.getJavaForkOptions().getWorkingDir(), projectCacheDir.getDir(), daemonForkOptions.getClassLoaderStructure());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeLibrarySpec.java

         */
        NativeLibraryRequirement getStatic();
    
        /**
         * Converts this library to a native library requirement that uses the api library linkage.
         */
        NativeLibraryRequirement getApi();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/force_xla_constants_on_host_pass.cc

      auto pflr = std::make_unique<ProcessFunctionLibraryRuntime>(
          nullptr, options.session_options->env, /*config=*/nullptr,
          TF_GRAPH_DEF_VERSION, options.flib_def, opts);
      FunctionLibraryRuntime* flr =
          pflr->GetFLR(ProcessFunctionLibraryRuntime::kDefaultFLRDevice);
    
      for (Node* node : graph->nodes()) {
        if (CanCreateXlaKernel(node->def())) {
          const FunctionBody* fbody = nullptr;
          std::vector<int> constant_arg_indices;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/analysis/test_tensor_array_side_effect_analysis.cc

      }
      void runOnOperation() override {
        auto module = getOperation();
        TensorArraySideEffectAnalysis tensor_array_side_effect_analysis(module);
    
        for (auto func_op : module.getOps<mlir::func::FuncOp>()) {
          func_op.emitRemark() << "HasAtMostTensorArrayEffect: "
                               << tensor_array_side_effect_analysis
                                      .HasAtMostTensorArrayEffect(func_op);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 10 21:32:05 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

        return failure();
      }
    
      // Fetch all VarHandleOp.
      llvm::StringSet<> variable_names;
      llvm::SmallVector<TF::VarHandleOp, 4> var_ops;
      for (auto func_op : module.getOps<func::FuncOp>()) {
        for (auto var_handle_op : func_op.getOps<TF::VarHandleOp>()) {
          auto variable_name = GetVariableName(var_handle_op);
          if (variable_names.count(variable_name)) continue;
          var_ops.emplace_back(var_handle_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/VersionSpecificCacheDirectory.java

            this.dir = Preconditions.checkNotNull(dir, "dir must not be null");
            this.version = Preconditions.checkNotNull(version, "version must not be null");
        }
    
        public File getDir() {
            return dir;
        }
    
        public GradleVersion getVersion() {
            return version;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 02 10:42:01 UTC 2018
    - 2K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileTree.java

            return patternSet;
        }
    
        @Override
        public DefaultConfigurableFileTree setDir(Object dir) {
            from(dir);
            return this;
        }
    
        @Override
        public File getDir() {
            if (dir == null) {
                throw new InvalidUserDataException("A base directory must be specified in the task or via a method argument!");
            }
            return resolver.resolve(dir);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/tasks/GradleBuild.java

        }
    
        /**
         * Returns the project directory for the build. Defaults to the project directory.
         *
         * @return The project directory. Never returns null.
         */
        @Internal
        public File getDir() {
            return getStartParameter().getCurrentDir();
        }
    
        /**
         * Sets the project directory for the build.
         *
         * @param dir The project directory. Should not be null.
         * @since 4.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top