Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 234 for eraseOp (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

      // corresponding VarHandleOps.
      CreateAssignVariableOps(const_op_name_map, session_init_func);
    
      // Erase the ConstOps that are replaced by VarHandleOps.
      absl::c_for_each(target_const_ops, [](auto const_op) { const_op.erase(); });
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateUnfreezeConstantsPass() {
      return std::make_unique<UnfreezeConstantsPass>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ArrayTable.java

       * are valid.
       *
       * @param rowKey row key of mapping to be erased
       * @param columnKey column key of mapping to be erased
       * @return the value previously associated with the keys, or {@code null} if no mapping existed
       *     for the keys
       */
      @CanIgnoreReturnValue
      @CheckForNull
      public V erase(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/tfl_to_std.cc

          dq.getOutput().replaceAllUsesWith(dcast);
          dq.erase();
        } else if (auto q = llvm::dyn_cast<QuantizeOp>(op)) {
          auto qcast = b.create<quantfork::QuantizeCastOp>(
              q.getLoc(), q.getOutput().getType(), q.getInput());
          q.getOutput().replaceAllUsesWith(qcast);
          q.erase();
        } else if (auto q = llvm::dyn_cast<ConstOp>(op)) {
          auto value = q.getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 02:50:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ArrayTable.java

       * are valid.
       *
       * @param rowKey row key of mapping to be erased
       * @param columnKey column key of mapping to be erased
       * @return the value previously associated with the keys, or {@code null} if no mapping existed
       *     for the keys
       */
      @CanIgnoreReturnValue
      @CheckForNull
      public V erase(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

                1 * ansi.eraseLine(Ansi.Erase.ALL)
                1 * ansi.cursorDown(1)
                1 * ansi.eraseLine(Ansi.Erase.ALL)
                1 * ansi.cursorDown(1)
                1 * ansi.eraseLine(Ansi.Erase.ALL)
    
                // Parking
                1 * ansi.cursorDown(1)
                1 * ansi.eraseLine(Ansi.Erase.ALL)
    
                1 * ansi.cursorUp(absoluteDeltaRowToAreaTop)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

        new_outputs.push_back(it->getSecond().size);
      }
      OpBuilder(old_terminator)
          .create<TerminatorOp>(old_terminator->getLoc(), new_outputs);
      old_terminator->erase();
      return output_buffer_to_size;
    }
    
    // Adds the corresponding sizes of tensor list buffers in func's return values
    // to the list of return values. Returns the mapping from the buffer indices to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_while_results.cc

        if (candidate_result == body_yield_operand) continue;
        if (!candidate_result.use_empty()) return false;
      }
    
      // Now we know that it is safe to erase the candidate op along with `result`
      // and the corresponding operand. Here we only erase the op and replace its
      // result usage with the corresponding block argument, the result and operand
      // will be removed later in a canonicalization pattern.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 16 01:49:07 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache.h

          ABSL_EXCLUSIVE_LOCKS_REQUIRED(mu_) {
        auto it = cache_.find(key);
        if (it == cache_.end()) {
          return false;
        }
        lru_list_.erase(it->second.lru_iterator);
        if (timer_seconds_() - it->second.timestamp > max_age_) {
          cache_.erase(it);
          return false;
        }
        *value = it->second.value;
        lru_list_.push_front(it->first);
        it->second.lru_iterator = lru_list_.begin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 19:31:22 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          }
    
          read_variable_op.erase();
          continue;
        }
    
        if (auto assign_variable_op = dyn_cast<TF::AssignVariableOp>(&op)) {
          Value resource = assign_variable_op.getResource();
          auto last_store = resource_handle_to_last_store_op[resource];
          // Previous store ops to same resource can be erased.
          if (last_store) last_store.erase();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/cpp_generator_test.cc

      TF_CHECK_OK(ReadFileToString(env, source_file_name, &expected_source));
    
      // Remove carriage returns (for Windows)
      expected_header.erase(
          std::remove(expected_header.begin(), expected_header.end(), '\r'),
          expected_header.end());
      expected_source.erase(
          std::remove(expected_source.begin(), expected_source.end(), '\r'),
          expected_source.end());
    
      EXPECT_EQ(expected_header, generated_header);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 18 17:02:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top