Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 382 for solve (0.15 sec)

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

    }
    
    void LocalizeVarHandlesPass::runOnOperation() {
      auto module = getOperation();
    
      DataFlowSolver solver;
      solver.load<dataflow::DeadCodeAnalysis>();
      solver.load<dataflow::SparseConstantPropagation>();
      TF::LoadResourceDataflowAnalysis(solver);
      if (failed(solver.initializeAndRun(module))) return signalPassFailure();
    
      OpBuilder globalBuilder(module.getBodyRegion());
    
      module.walk(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_variable_ops_to_ml_program.cc

      }
      void runOnOperation() override {
        auto module = getOperation();
    
        DataFlowSolver solver;
        solver.load<dataflow::DeadCodeAnalysis>();
        solver.load<dataflow::SparseConstantPropagation>();
        TF::LoadResourceDataflowAnalysis(solver);
        if (failed(solver.initializeAndRun(module))) return signalPassFailure();
    
        SymbolTable symbol_table(module);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

      auto module = getOperation();
      if (!tf_saved_model::HasTfSavedModelSemantics(module)) return;
    
      DataFlowSolver solver;
      solver.load<dataflow::DeadCodeAnalysis>();
      solver.load<dataflow::SparseConstantPropagation>();
      TF::LoadResourceDataflowAnalysis(solver);
      if (failed(solver.initializeAndRun(module))) return signalPassFailure();
    
      DenseSet<GlobalTensorOp> remaining_global_tensor_ops;
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/colocate_tpu_copy_with_dynamic_shape.cc

      Operation *module = getOperation();
    
      SymbolTableCollection symbolTables;
    
      DataFlowSolver solver;
      solver.load<dataflow::DeadCodeAnalysis>();
      solver.load<dataflow::SparseConstantPropagation>();
      solver.load<DeviceDataflowAnalysis>(symbolTables);
      if (failed(solver.initializeAndRun(module))) return signalPassFailure();
    
      module->walk([&](TF::TPUCopyWithDynamicShapeOp op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 00:30:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			// sorts them by Timestamps if they have the same Pod Priority).
    			// Using a fake clock for the queue and incrementing it after each added Pod will
    			// solve this issue on Windows unit test runs.
    			// For more details on the Windows clock resolution issue, see: https://github.com/golang/go/issues/8687
    			for _, p := range test.initialPods {
    				q.Add(logger, p)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.cc

        setAllToEntryStates(results);
      }
      ~IsCompositeDataflowAnalysis() override = default;
    };
    
    void LoadResourceDataflowAnalysis(DataFlowSolver &solver) {
      solver.load<ResourceDataflowAnalysis>();
    }
    
    void LoadIsCompositeDataflowAnalysis(DataFlowSolver &solver) {
      solver.load<IsCompositeDataflowAnalysis>();
    }
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      }
    }
    
    void ConvertControlToDataOutputsPass::runOnOperation() {
      ModuleOp module = getOperation();
    
      DataFlowSolver solver;
      solver.load<dataflow::DeadCodeAnalysis>();
      solver.load<dataflow::SparseConstantPropagation>();
      TF::LoadIsCompositeDataflowAnalysis(solver);
      if (failed(solver.initializeAndRun(module))) return signalPassFailure();
    
      // This pass assumes that all functions are suitable for export i.e., each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. RELEASE.md

            as in the back prop though `tf.gather` into a dense embedding). See
            issue [39751](https://github.com/tensorflow/tensorflow/issues/39751)
            which this change addresses, but does not solve. This exception-throwing
            behavior can be disabled by setting the environment variable
            `TF_DISABLE_SEGMENT_REDUCTION_OP_DETERMINISM_EXCEPTIONS` to `"true"` or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.h

    };
    
    typedef dataflow::Lattice<ResourceConstructingOps> ResourceDataflowState;
    typedef dataflow::Lattice<IsComposite> IsCompositeDataflowState;
    
    void LoadResourceDataflowAnalysis(DataFlowSolver &solver);
    void LoadIsCompositeDataflowAnalysis(DataFlowSolver &solver);
    
    }  // namespace TF
    }  // namespace mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. build-logic/buildquality/build.gradle.kts

        implementation("org.codenarc:CodeNarc") {
            exclude(group = "org.apache.groovy")
            exclude(group = "org.codehaus.groovy")
        }
        implementation("com.github.javaparser:javaparser-symbol-solver-core") {
            exclude(group = "com.google.guava")
        }
        implementation("org.gradle.kotlin:gradle-kotlin-dsl-conventions")
        implementation(kotlin("gradle-plugin"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top