Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 405 for nFront (0.15 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelection.java

     *
     * NOTE: Eventually we want to support regular Java-like test filtering, like filtering for a set of test cases
     * or test suites that match a particular pattern.  Unfortunately, XCTest is very limited with how much up-front
     * test discovery we can do and the kind of filtering we can specify from the command-line.  This class reflects
     * those limitations.
     */
    public class XCTestSelection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h

    // variable assignments will be done via lifting variables pass by converting
    // the read-only variables to constant ops, instead. This pass removes the
    // redundant operations. This pass should be located in front of the pass for
    // lifting read-only variables.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateRemoveVariablesInSessionInitializerPass();
    
    // Creates a pass that removes duplicate 'tf_saved_model.bound_input' bindings.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/gradients.cc

        if (!reachable_nodes[out.node()->id()]) {
          queue.push_back(out.node());
          reachable_nodes[out.node()->id()] = true;
        }
      }
    
      while (!queue.empty()) {
        Node* n = queue.front();
        queue.pop_front();
        for (const Edge* e : n->in_edges()) {
          if (e->IsControlEdge()) continue;
          if (!reachable_nodes[e->src()->id()]) {
            queue.push_back(e->src());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.cc

        // same as the result type.
        if (op->hasAttr(kShardingAttr) && op.getCallTargetName() == kShardingName &&
            op.getNumOperands() == 1 && op.getNumResults() == 1 &&
            op.getOperands().front().getType() ==
                op.getResults().front().getType()) {
          rewriter.replaceOp(op, op.getOperands());
          return success();
        }
        return failure();
      }
    };
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/xla_rewrite.cc

          param.replaceAllUsesWith(callee.getArguments().back());
          removed_params.push_back(false);
        }
      }
      // Remove old resource-type parameters.
      callee.getBody().front().eraseArguments(removed_params);
      // Update function type.
      callee.setFunctionType(FunctionType::get(callee.getContext(),
                                               callee.getBody().getArgumentTypes(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

    // arguments.
    mlir::LogicalResult PromoteVarHandlesToArguments(
        func::FuncOp function, bool add_validation,
        llvm::SmallVectorImpl<std::string>* var_handle_shared_names) {
      Block& block = function.front();
      auto func_type = function.getFunctionType();
    
      auto func_arg_types = llvm::to_vector<4>(func_type.getInputs());
      llvm::SmallDenseMap<llvm::StringRef, int> var_arg_index_by_name;
      for (auto var_handle_op :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

        // TODO: b/321099943 - Support explicit padding.
        if (HasPadding(op)) return failure();
    
        // Check that the reduce-window body is a max operation.
        return success(IsMaxFunction(op.getBody().front()));
      }
    
      // Whether `block` semantically corresponds to a `stablehlo.maximum` op.
      bool IsMaxFunction(Block& block) const {
        if (block.getNumArguments() != 2) return false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    }
    
    const maxPairingDepth = 63
    
    // locateBrackets locates matching bracket pairs according to BD16.
    //
    // This implementation uses a linked list instead of a stack, because, while
    // elements are added at the front (like a push) they are not generally removed
    // in atomic 'pop' operations, reducing the benefit of the stack archetype.
    func (p *bracketPairer) locateBrackets(pairTypes []bracketType, pairValues []rune) {
    	// traverse the run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.cc

      const auto permutation_array_size = permutation_array.size();
      for (int64_t i = update_window_dims.size(); i < permutation_array_size; ++i) {
        permutation_array[i] = dim;
        ++dim;
      }
      // Move trailing indices to the front of the array.
      for (int64_t i = 0; i < update_window_dims.size(); ++i) {
        permutation_array[i] = dim;
        ++dim;
      }
    
      auto permutation_and_shape = GetPermutationAndTransposedShape(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 02:29:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/replica_id_to_device_ordinal.cc

        // set the device ordinal to 0. Note: This is for single device use case
        // (eg. pf megacore) for which `_xla_replica_id` isn't set via the
        // replicate_to_islands pass.
        Operation* op = require_device_ordinal_ops.front();
        if (op->getAttrOfType<IntegerAttr>(kDeviceOrdinalAttr).getInt() == -1) {
          OpBuilder builder(op);
          op->setAttr(kDeviceOrdinalAttr, builder.getI64IntegerAttr(0));
        }
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top