Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 201 for getIpr (0.22 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/inference/inference_metrics_pass.cc

     public:
      void runOnOperation() override;
    };
    
    void InferenceMetricsPass::runOnOperation() {
      bool has_tpu_partitioned_call = false;
      ModuleOp module = getOperation();
    
      for (auto func_op : module.getOps<func::FuncOp>()) {
        func_op->walk(
            [&](TF::TPUPartitionedCallOp op) { has_tpu_partitioned_call = true; });
    
        if (has_tpu_partitioned_call) break;
      }
    
      std::string has_tpu_partitioned_call_str =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 05 21:24:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/IvyGcsModule.groovy

            this.repositoryPath = repositoryPath
        }
    
        @Override
        GcsArtifact getIvy() {
            return new GcsArtifact(server, ivyFile, repositoryPath, bucket)
        }
    
        @Override
        GcsArtifact getJar() {
            return new GcsArtifact(server, jarFile, repositoryPath, bucket)
        }
    
        @Override
        ModuleArtifact getModuleMetadata() {
            return new GcsArtifact(server, moduleMetadataFile, repositoryPath, bucket)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/IvyS3Module.groovy

            this.repositoryPath = repositoryPath
        }
    
        @Override
        S3Artifact getIvy() {
            return new S3Artifact(server, ivyFile, repositoryPath, bucket)
        }
    
        @Override
        S3Artifact getJar() {
            return new S3Artifact(server, jarFile, repositoryPath, bucket)
        }
    
        @Override
        ModuleArtifact getModuleMetadata() {
            return new S3Artifact(server, moduleMetadataFile, repositoryPath, bucket)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppPreCompiledHeaderSourcesIntegrationTest.groovy

    class CppPreCompiledHeaderSourcesIntegrationTest extends AbstractNativePreCompiledHeaderIntegrationTest implements DirectoryBuildCacheFixture {
    
        @Override
        IncrementalHelloWorldApp getApp() {
            return new CppHelloWorldApp()
        }
    
        @ToBeFixedForConfigurationCache
        def "caching is disabled if precompiled headers are configured"() {
            writeStandardSourceFiles()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/analysis/tensor_array_side_effect_analysis.cc

      }
    
      return true;
    }
    
    TensorArraySideEffectAnalysis::TensorArraySideEffectAnalysis(
        mlir::ModuleOp module) {
      for (auto func_op : module.getOps<mlir::func::FuncOp>()) {
        if (FunctionContainsOnlyNoSideEffectOpOrTensorArrayOp(func_op)) {
          set_.insert(func_op);
        }
      }
    }
    
    }  // namespace tfrt_compiler
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 16 01:49:07 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

      // Iterates over all functions within the module to (1) create caller-callee
      // map, and (2) initialize function worklist with functions referenced from
      // device cluster ops.
      for (auto func : module.getOps<func::FuncOp>()) {
        for (auto user : symbol_map.getUsers(func)) {
          // Populate caller-callee map.
          if (func::FuncOp caller = user->getParentOfType<func::FuncOp>())
            caller_callee_map[caller].insert(func);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageParallelIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.HelloWorldApp
    
    
    class AssemblyLanguageParallelIntegrationTest extends AbstractNativeSoftwareModelParallelIntegrationTest {
    
        @Override
        HelloWorldApp getApp() {
            return new AssemblerWithCHelloWorldApp(toolChain)
        }
    
        @ToBeFixedForConfigurationCache
        def "can execute assembler tasks in parallel"() {
            given:
            withComponentForApp()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

      llvm::SmallVector<TF::VarHandleOp, 4> variables;
      // Capture list of all read only variables.
      for (auto func : module.getOps<func::FuncOp>()) {
        if (func == session_init_func) continue;
        for (auto var_handle_op : func.getOps<TF::VarHandleOp>()) {
          if (!analyzer.IsPotentiallyWritten(var_handle_op.getResource())) {
            variables.push_back(var_handle_op);
          }
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pkg/controller/daemon/update.go

    	if outerErr := err; errors.IsAlreadyExists(outerErr) {
    		logger := klog.FromContext(ctx)
    		// TODO: Is it okay to get from historyLister?
    		existedHistory, getErr := dsc.kubeClient.AppsV1().ControllerRevisions(ds.Namespace).Get(ctx, name, metav1.GetOptions{})
    		if getErr != nil {
    			return nil, getErr
    		}
    		// Check if we already created it
    		done, matchErr := Match(ds, existedHistory)
    		if matchErr != nil {
    			return nil, matchErr
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. pkg/config/schema/kubeclient/common.go

    	reg := typemap.Get[TypeRegistration[T]](registerTypes)
    	if reg != nil {
    		// This is registered type
    		tr := *reg
    		return c.Informers().InformerFor(tr.GetGVR(), opts, func() cache.SharedIndexInformer {
    			inf := cache.NewSharedIndexInformer(
    				tr.ListWatch(c, opts),
    				tr.Object(),
    				0,
    				cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc},
    			)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top