Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 201 for getIpr (0.33 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/ConstantTestKitDirProvider.java

        private final File testKitDir;
    
        public ConstantTestKitDirProvider(File testKitDir) {
            this.testKitDir = testKitDir;
        }
    
        @Override
        public File getDir() {
            return testKitDir;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 963 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedUserHomeScopeServices.java

        DefaultGlobalScopedCacheBuilderFactory createGlobalScopedCache(GlobalCacheDir globalCacheDir, UnscopedCacheBuilderFactory unscopedCacheBuilderFactory) {
            return new DefaultGlobalScopedCacheBuilderFactory(globalCacheDir.getDir(), unscopedCacheBuilderFactory);
        }
    
        @Provides
        IsolatableFactory createIsolatableFactory(
            ClassLoaderHierarchyHasher classLoaderHierarchyHasher,
            ManagedFactoryRegistry managedFactoryRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/layout/GlobalCacheDir.java

        public GlobalCacheDir(GradleUserHomeDirProvider userHomeDirProvider) {
            this.globalCacheDir = new File(userHomeDirProvider.getGradleUserHomeDirectory(), GLOBAL_CACHE_DIR_NAME);
        }
    
        public File getDir() {
            return globalCacheDir;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top