Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 514 for Advance (0.12 sec)

  1. src/main/resources/fess.xml

    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"searchOptions"</arg>
    			<arg>"searchOptions.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"advance"</arg>
    			<arg>"advance.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"help"</arg>
    			<arg>"help.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 01 06:48:48 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_inline_tpu_island.cc

      auto walk_result = getOperation().walk([&](TF::PartitionedCallOp call_op) {
        if (!call_op.getF().getRootReference().getValue().starts_with(
                kNestedModule))
          return WalkResult::advance();
        // This is a call we need to inline!
        LLVM_DEBUG(llvm::dbgs()
                   << "Found call to inline: " << *call_op.getOperation() << "\n");
    
        auto call_interface = cast<CallOpInterface>(call_op.getOperation());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tensor_device_copy_conversion.cc

        StringAttr op_device = op->getAttrOfType<StringAttr>(kDeviceAttr);
        if (should_fold_op_func(op.getOperand(), op_device)) {
          op.replaceAllUsesWith(op.getOperand());
          op.erase();
        }
        return WalkResult::advance();
      });
    
      func_op.walk([&should_fold_op_func](TF::IdentityNOp op) {
        StringAttr op_device = op->getAttrOfType<StringAttr>(kDeviceAttr);
        bool should_fold = llvm::all_of(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/passes/decompose.cc

          return WalkResult::advance();
        }
    
        // Find out the compose function
        auto compose_func_name = GetComposeFuncName(op->getName().getStringRef());
        auto compose_func = table.lookup<TFRFuncOp>(compose_func_name);
        if (!compose_func || compose_func.isExternal()) {
          // There are no decomposition methods defined for this op, skip.
          return WalkResult::advance();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

        if (auto var_handle = dyn_cast<VarHandleOp>(op)) {
          // Record VarHandleOp's device attribute.
          StringRef device_attr = GetDeviceAttr(op);
          if (device_attr.empty()) return WalkResult::advance();
          auto res = AddResourceDeviceAndEmitError(var_handle.getResource(),
                                                   device_attr, op, result);
          if (failed(res)) return WalkResult::interrupt();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/colocate_tpu_copy_with_dynamic_shape.cc

          state = solver.lookupState<Device>(result);
          if (state) break;
        }
        if (!state || !state->hasDevice()) {
          return WalkResult::advance();
        }
        op->setAttr(kDevice, state->getDevice());
        return WalkResult::advance();
      });
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateColocateTPUCopyWithDynamicShapePass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 00:30:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake.go

    // fresh one will be constructed, seeded with the current real time.
    // The clientWG can be `nil` and if not is used to let Run know about
    // additional work that has to complete before time can advance.
    func NewFake(t time.Time, fuzz time.Duration, r *rand.Rand) (*Fake, counter.GoRoutineCounter) {
    	grc := &waitGroupCounter{}
    
    	if r == nil {
    		r = rand.New(rand.NewSource(time.Now().UnixNano()))
    		r.Uint64()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      cluster->walk([&](Operation* op) {
        if (op == cluster) return WalkResult::advance();
        for (auto operand : op->getOperands()) {
          Operation* scope = operand.getParentBlock()->getParentOp();
          if (scope->isProperAncestor(replicate)) {
            bcasts.insert(operand);
          }
        }
        return WalkResult::advance();
      });
      OpBuilder builder(replicate);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

        ModuleOp module, llvm::ArrayRef<SymbolRefAttr> function_list) {
      WalkResult result =
          module.walk([&](stablehlo::CustomCallOp op) {
            if (!IsTfFuncCustomCall(op)) {
              return WalkResult::advance();
            }
    
            auto backend_config =
                op->getAttrOfType<DictionaryAttr>(kTfBackendConfigAttrName);
            if (!backend_config) {
              op->emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/internal/trace/gc.go

    	}
    	acc.resetTime()
    	for {
    		// Advance edges to time and time+window.
    		mu := (right.advance(time+int64(window)) - left.advance(time)).mean(window)
    		if acc.addMU(time, mu, window) {
    			break
    		}
    		if time == endTime {
    			break
    		}
    
    		// The maximum slope of the windowed mutator
    		// utilization function is 1/window, so we can always
    		// advance the time by at least (mu - mmu) * window
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top