Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 405 for nFront (0.11 sec)

  1. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

      new_args.reserve(extern_values.size());
      Block& block = func_region.front();
      for (Value value : extern_values) {
        auto arg = block.addArgument(value.getType(), loc);
        replaceAllUsesInRegionWith(value, arg, func_region);
        new_args.push_back(arg);
      }
    
      // Replace yield op with return.
      Operation* yield_op = outlined_func.getBody().front().getTerminator();
      OpBuilder b(yield_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_duplicate_resource_ops.cc

      auto island_op = llvm::dyn_cast_or_null<IslandOp>(op);
      if (!island_op || !island_op.getBody().hasOneBlock()) return nullptr;
      auto& island_block = island_op.getBody().front();
      if (++island_block.begin() != --island_block.end()) return nullptr;
    
      Operation* resource_op = &island_block.front();
      if (llvm::isa<TF::VarHandleOp, TF::HashTableOp, TF::HashTableV2Op,
                    TF::MutableHashTableV2Op>(resource_op)) {
        return resource_op;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 04:26:16 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/validators.cc

      if (elements.size() != 4 ||
          std::any_of(elements.begin(), elements.end(),
                      [](Attribute e) { return !mlir::isa<IntegerAttr>(e); }))
        return false;
    
      if (mlir::cast<IntegerAttr>(elements.front()).getInt() != 1 ||
          mlir::cast<IntegerAttr>(elements.back()).getInt() != 1)
        return false;
    
      Builder b(op->getContext());
      *x = b.getI32IntegerAttr(mlir::cast<IntegerAttr>(elements[1]).getInt());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/requestheader.go

    	//	It may produce different options at will.
    	CAContentProvider dynamiccertificates.CAContentProvider
    	// AllowedClientNames is a list of common names that may be presented by the authenticating front proxy.  Empty means: accept any.
    	AllowedClientNames headerrequest.StringSliceProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. src/runtime/compiler.go

    package runtime
    
    // Compiler is the name of the compiler toolchain that built the
    // running binary. Known toolchains are:
    //
    //	gc      Also known as cmd/compile.
    //	gccgo   The gccgo front end, part of the GCC compiler suite.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 410 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

        DeviceMap& devices,
        const TF::SideEffectAnalysis::Info& side_effect_analysis,
        const DataFlowSolver& solver, bool composite_tpuexecute_side_effects) {
      auto graph_op = cast<GraphOp>(func.front().front());
    
      // For each op in the graph, get the resources it uses and update the access
      // information for them.
      graph_op.walk([&](IslandOp island) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

        Block& block = op.GetBody();
        // Check if launch only has a return.
        if (&block.front() != &block.back()) return failure();
    
        // Map launch results to return operands.
        rewriter.replaceOp(op, block.front().getOperands());
    
        return success();
      }
    };
    }  // anonymous namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. releasenotes/notes/serviceregistry-order.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50968
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 214 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_save_op.cc

    SmallVector<TF::VarHandleOp> CloneVarHandleOpsIntoSaveFunc(
        func::FuncOp save_func, const ArrayRef<TF::VarHandleOp> var_handle_ops) {
      Block& save_op_block = save_func.getBody().front();
    
      IRMapping mapper{};
      SmallVector<TF::VarHandleOp> cloned_var_handle_ops = {};
      for (auto var_handle_op : var_handle_ops) {
        Operation* cloned_var_handle_op = var_handle_op->clone(mapper);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    			// Acquired the semaphore after we were canceled.
    			// Pretend we didn't and put the tokens back.
    			s.cur -= n
    			s.notifyWaiters()
    		default:
    			isFront := s.waiters.Front() == elem
    			s.waiters.Remove(elem)
    			// If we're at the front and there're extra tokens left, notify other waiters.
    			if isFront && s.size > s.cur {
    				s.notifyWaiters()
    			}
    		}
    		s.mu.Unlock()
    		return ctx.Err()
    
    	case <-ready:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top