Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for MoveBefore (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      builder.restoreInsertionPoint(insertion_point);
      auto caller = MakeFuncCaller(builder, module.getLoc(), new_func, inputs);
    
      Block* block = new_func.addEntryBlock();
    
      for (Operation* op : topological_order) op->moveBefore(block, block->end());
    
      // Replace the 'inputs' values with the new function's arguments.
      for (auto p : llvm::zip(inputs, new_func.getArguments()))
        replaceAllUsesInRegionWith(std::get<0>(p), std::get<1>(p),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                                   inputs.getArrayRef(), flag_for_inlining);
    
      Block* block = new_func.addEntryBlock();
      for (Operation* op : topological_order) op->moveBefore(block, block->end());
    
      // Replace the 'inputs' values with the new function's arguments.
      for (auto p : llvm::zip(inputs, new_func.getArguments()))
        replaceAllUsesInRegionWith(std::get<0>(p), std::get<1>(p),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*List).Init", Method, 0},
    		{"(*List).InsertAfter", Method, 0},
    		{"(*List).InsertBefore", Method, 0},
    		{"(*List).Len", Method, 0},
    		{"(*List).MoveAfter", Method, 2},
    		{"(*List).MoveBefore", Method, 2},
    		{"(*List).MoveToBack", Method, 0},
    		{"(*List).MoveToFront", Method, 0},
    		{"(*List).PushBack", Method, 0},
    		{"(*List).PushBackList", Method, 0},
    		{"(*List).PushFront", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.2.txt

    pkg compress/zlib, method (*Writer) Reset(io.Writer)
    pkg container/heap, func Fix(Interface, int)
    pkg container/list, method (*List) MoveAfter(*Element, *Element)
    pkg container/list, method (*List) MoveBefore(*Element, *Element)
    pkg crypto, type PublicKey interface {}
    pkg crypto/cipher, func NewGCM(Block) (AEAD, error)
    pkg crypto/cipher, type AEAD interface { NonceSize, Open, Overhead, Seal }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top