Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for next_itr (0.39 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.cc

    namespace mlir {
    namespace TF {
    
    llvm::SmallVector<ResourceHandleValueAndId, 4>
    _TfrtGetResourceOp::GetResourceHandleValueAndIdList(
        llvm::SmallDenseMap<ResourceHandle, int64_t> &resource_handle_id_map,
        int64_t &next_id) {
      llvm::SmallVector<ResourceHandleValueAndId, 4> resource_vec;
      llvm::StringRef device = GetDeviceOrEmpty(getOperation());
    
      for (const auto &iter : llvm::enumerate(getResults())) {
        auto index = iter.index();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics.proto

    syntax = "proto3";
    
    package tensorflow.calibrator;
    
    option cc_enable_arenas = true;
    
    // Calibration algorithm's collecting statistics.
    // NEXT_ID: 4
    message CalibrationStatistics {
      message MinMaxStatistics {
        // global minimum of all sample datasets.
        float global_min = 1;
    
        // global maximum of all sample datasets.
        float global_max = 2;
      }
    
      message AverageMinMaxStatistics {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/shape_inference.cc

          // directly.
          auto iter = merge_to_next_iteration.find(n);
          if (iter != merge_to_next_iteration.end()) {
            const Node *next_iter = iter->second, *node = next_iter;
            do {
              TF_RETURN_IF_ERROR(node->input_node(0, &node));
            } while (node->IsIdentity());
            const Node* switch_input;
            bool is_loop_invariant = node->IsSwitch() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

          llvm::SmallDenseMap<mlir::TF::ResourceHandle, int64_t>&
              resource_handle_id_map,
          int64_t& next_id) {
        llvm::SmallVector<mlir::TF::ResourceHandleValueAndId> resource_vec;
        for (Value resource :
             mlir::tf_type::filter_resources(this->getOperation()->getResults())) {
          resource_vec.push_back({resource, next_id++});
        }
        return resource_vec;
      }
    };
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

          return !queue.isEmpty();
        }
    
        @Override
        @ParametricNullness
        public T next() {
          PeekingIterator<T> nextIter = queue.remove();
          T next = nextIter.next();
          if (nextIter.hasNext()) {
            queue.add(nextIter);
          }
          return next;
        }
      }
    
      private static class ConcatenatedIterator<T extends @Nullable Object> implements Iterator<T> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterators.java

          return !queue.isEmpty();
        }
    
        @Override
        @ParametricNullness
        public T next() {
          PeekingIterator<T> nextIter = queue.remove();
          T next = nextIter.next();
          if (nextIter.hasNext()) {
            queue.add(nextIter);
          }
          return next;
        }
      }
    
      private static class ConcatenatedIterator<T extends @Nullable Object> implements Iterator<T> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        // yield.
        SmallVector<Value, 4> new_results(old_num_operands);
        int next_idx = 0;
        for (int op_idx : llvm::seq<int>(0, old_num_operands))
          if (!removed_operand.test(op_idx))
            new_results[op_idx] = new_while_op.getResult(next_idx++);
    
        rewriter.replaceOp(while_op, new_results);
        return success();
      }
    };
    
    }  // anonymous namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top