Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for new_results (0.18 sec)

  1. 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)
  2. guava/src/com/google/common/cache/LocalCache.java

            // *before* returning newValue from the cache query.
            return transform(
                newValue,
                newResult -> {
                  LoadingValueReference.this.set(newResult);
                  return newResult;
                },
                directExecutor());
          } catch (Throwable t) {
            ListenableFuture<V> result = setException(t) ? futureValue : fullyFailedFuture(t);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

            // *before* returning newValue from the cache query.
            return transform(
                newValue,
                newResult -> {
                  LoadingValueReference.this.set(newResult);
                  return newResult;
                },
                directExecutor());
          } catch (Throwable t) {
            ListenableFuture<V> result = setException(t) ? futureValue : fullyFailedFuture(t);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

            pack_op.getValuesCount() != input_unpack_op.getNum())
          return failure();
    
        const int total_pack_inputs = pack_op.getNumOperands();
        const int num_results = input_unpack_op.getNumResults();
        if (total_pack_inputs != num_results) return failure();
        for (auto input_output :
             llvm::zip(pack_op.getOperands(), input_unpack_op.getResults())) {
          Value pack_input = std::get<0>(input_output);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top