Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for newResult (0.15 sec)

  1. 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)
  2. 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)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    }
                } catch (ModelBuilderException e) {
                    problems.add(Severity.FATAL, ModelProblem.Version.V40, null, e);
                }
    
                return Result.newResult(model, problems.getProblems());
            } catch (ModelBuilderException e) {
                return Result.error(problems.getProblems());
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/unwrap_xla_call_module_op.cc

            Value new_result = new_op_mapper.lookup(return_value);
    
            call_result.replaceAllUsesWith(new_result);
          }
          continue;
        }
    
        Operation& new_op = *builder.clone(op, arg_mapper);
        for (auto [result, new_result] :
             llvm::zip_equal(op.getResults(), new_op.getResults())) {
          new_op_mapper.map(result, new_result);
        }
      }
    
      call_op.erase();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/merge_fusion_with_dequantize.cc

              req_op.getLoc(), rewriter.getF32FloatAttr(6));
          new_result = rewriter.create<mlir::stablehlo::ClampOp>(
              req_op.getLoc(), min, new_result, max);
        } else if (func_name.contains("_relu_")) {
          auto min = rewriter.create<mlir::stablehlo::ConstantOp>(
              req_op.getLoc(), rewriter.getF32FloatAttr(0));
          new_result = rewriter.create<mlir::chlo::BroadcastMaxOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/decompose_hybrid_quantization.cc

        }
    
        auto newResults = rewriter
                              .create<SrcOp>(loc, newResultTys, newOperands,
                                             op->getAttrDictionary().getValue())
                              .getOperation()
                              ->getResults();
    
        SmallVector<Value> replaceResults;
        for (int i = 0; i < newResults.size(); i++) {
          Value result = newResults[i];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform.cc

          auto result_type = result.getType();
    
          Value new_result = new_op->getResult(i);
          if (IsQI8Type(result_type) || IsQUI8Type(result_type)) {
            builder->setInsertionPoint(op);
            TFL::QuantizeOp quant_op = builder->create<TFL::QuantizeOp>(
                op->getLoc(), result_type, new_result, TypeAttr::get(result_type));
            new_result = quant_op.getResult();
          }
    
          // Rewire the outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      for (Operation& op : func.getOps()) {
        if (!IsTPUOp(&op)) continue;
        op.setAttr(TF::kReplicationInfoAttr, new_group);
      }
      TF::TPUCompilationResultOp new_result = compilation_op.clone();
      new_result->setAttr(kTpuCompilationStatus, new_group);
      builder.insert(new_result);
    }
    
    template <typename OpType>
    LogicalResult FindAndExcludeOp(func::FuncOp func,
                                   const StringAttr& replication_attr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

      if (it != rewritten_values.end()) return {it->getSecond()};
    
      auto create_tuple = [&](ArrayRef<Value> operands) {
        auto new_result = CreateTuple(builder, value.getLoc(), operands);
        rewritten_values.insert({value, new_result});
        return new_result;
      };
    
      auto tuple_type = mlir::dyn_cast<TupleType>(value.getType());
      // `value` is not a tuple, create a new tuple.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    		t.SetHasShape(true)
    	}
    	return t
    }
    
    func newResults(types []*Type) *Type {
    	t := newType(TRESULTS)
    	t.extra.(*Results).Types = types
    	return t
    }
    
    func NewResults(types []*Type) *Type {
    	if len(types) == 1 && types[0] == TypeMem {
    		return TypeResultMem
    	}
    	return newResults(types)
    }
    
    func newSSA(name string) *Type {
    	t := newType(TSSA)
    	t.extra = name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top