Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 214 for Advance (0.37 sec)

  1. src/runtime/mgcsweep.go

    				if msanenabled && !s.isUserArenaChunk {
    					msanfree(unsafe.Pointer(x), size)
    				}
    				if asanenabled && !s.isUserArenaChunk {
    					asanpoison(unsafe.Pointer(x), size)
    				}
    			}
    			mbits.advance()
    			abits.advance()
    		}
    	}
    
    	// Check for zombie objects.
    	if s.freeindex < s.nelems {
    		// Everything < freeindex is allocated and hence
    		// cannot be zombies.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

    mlir::LogicalResult IsValidGraph(mlir::ModuleOp module) {
      auto result = module.walk([&](Operation* op) {
        return IsControlFlowV1Op(op) ? mlir::WalkResult::interrupt()
                                     : mlir::WalkResult::advance();
      });
      if (result.wasInterrupted()) {
        mlir::TFL::AttachErrorCode(
            module.emitError(
                "The graph has Control Flow V1 ops. TFLite converter doesn't "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

        int skipped = advance(iterator, position);
        if (!iterator.hasNext()) {
          throw new IndexOutOfBoundsException(
              "position ("
                  + position
                  + ") must be less than the number of elements that remained ("
                  + skipped
                  + ")");
        }
        return iterator.next();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterators.java

        int skipped = advance(iterator, position);
        if (!iterator.hasNext()) {
          throw new IndexOutOfBoundsException(
              "position ("
                  + position
                  + ") must be less than the number of elements that remained ("
                  + skipped
                  + ")");
        }
        return iterator.next();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_regions.cc

              op->emitOpError() << "failed to convert to region form";
              return WalkResult::interrupt();
            }
          }
        }
        return WalkResult::advance();
      });
      if (result.wasInterrupted()) return signalPassFailure();
    }
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFFunctionalControlFlowToRegions() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/internal/trace/trace_test.go

    			if ev.Kind() == trace.EventRegionEnd && ev.Region().Type == "special" {
    				delete(gs, ev.Goroutine())
    			}
    			// Track state transitions for goroutines we care about.
    			//
    			// The goroutines we care about will advance through the state machine
    			// of entered -> blocked -> runnable -> running. If in the running state
    			// we block, then we have a futile wakeup. Because of the runtime.Gosched
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        list.add("b");
        Iterator<String> iterator = list.iterator();
        advance(iterator, 1);
        assertEquals("b", iterator.next());
      }
    
      public void testAdvance_pastEnd() {
        List<String> list = newArrayList();
        list.add("a");
        list.add("b");
        Iterator<String> iterator = list.iterator();
        advance(iterator, 5);
        assertFalse(iterator.hasNext());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

                cluster_dependent_ops.contains(candidate_op)) {
              other_op = candidate_op;
              return WalkResult::interrupt();
            }
          }
        }
        return WalkResult::advance();
      });
      return other_op;
    }
    
    // Collects ops that need to be moved behind the cluster due to data or control
    // dependencies.
    mlir::FailureOr<llvm::SmallSetVector<Operation*, 8>> CollectClusterSuccessorOps(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

        auto walk_res = module->walk([&](Operation* op) -> WalkResult {
          if (!IsOpSupported(op) || IsNonTensorListVariantOp(op)) {
            return WalkResult::interrupt();
          }
          return WalkResult::advance();
        });
        if (walk_res.wasInterrupted()) {
          llvm::errs() << "Tried legalizing to tfl custom tensorlist ops, but not "
                          "all can be supported."
                       << "\n";
          return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

              unscheduled_ops.count(producer_in_block)) {
            // Found an operand that isn't scheduled yet, interrupt the walk.
            return WalkResult::interrupt();
          }
        }
        return WalkResult::advance();
      });
      return ready_to_schedule.wasInterrupted();
    }
    
    bool HasControlDependencyWithUnscheduledOp(
        Operation& op, Block* block, SmallPtrSet<Operation*, 16>& unscheduled_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top