Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for new_results (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

        llvm::SmallVector<Type, 8>& result_types, int num_replicas) {
      Operation* result_op;
      llvm::SmallVector<Value, 8> results;
      uint64_t num_results = cluster.getNumResults();
      for (uint64_t result_id = 0; result_id < num_results; ++result_id) {
        auto search = partitioned_outputs.find(result_id);
        if (search == partitioned_outputs.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/expand_calls.go

    		// Break aggregate args passed to call into smaller pieces.
    		x.rewriteCallArgs(v, argStart)
    		v.Op = newOp
    		rts := abi.RegisterTypes(v.Aux.(*AuxCall).abiInfo.OutParams())
    		v.Type = types.NewResults(append(rts, types.TypeMem))
    	}
    
    	// Rewrite calls
    	for _, v := range calls {
    		switch v.Op {
    		case OpStaticLECall:
    			rewriteCall(v, OpStaticCall, 0)
    		case OpTailLECall:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/op.go

    func (a *AuxCall) LateExpansionResultType() *types.Type {
    	var tys []*types.Type
    	for i := int64(0); i < a.NResults(); i++ {
    		tys = append(tys, a.TypeOfResult(i))
    	}
    	tys = append(tys, types.TypeMem)
    	return types.NewResults(tys)
    }
    
    // NArgs returns the number of arguments (including receiver, if there is one).
    func (a *AuxCall) NArgs() int64 {
    	return int64(len(a.abiInfo.InParams()))
    }
    
    // String returns "AuxCall{<fn>}"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.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
    - 92.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

    import org.codehaus.plexus.interpolation.StringSearchInterpolator;
    import org.eclipse.sisu.Nullable;
    
    import static org.apache.maven.model.building.Result.error;
    import static org.apache.maven.model.building.Result.newResult;
    
    /**
     */
    @Named
    @Singleton
    public class DefaultModelBuilder implements ModelBuilder {
    
        private final ModelProcessor modelProcessor;
        private final ModelValidator modelValidator;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

    //     propagate from result #a to result #r. Generalizing, the resource ID
    //     propagation (for results which are passthrough) looks like:
    //
    //     for r in (0, num_results) : result[r] = arg[r];
    //     repeat till no change {
    //       a = passthrough arg for result #r;
    //       result[r] += result[a];
    //     }
    //
    void ResourceAliasAnalysisInfo::AnalyzeWhileLoop(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        ++func_index;
        if (!func) continue;
    
        FunctionType func_type = func.getFunctionType();
        int num_inputs = func_type.getNumInputs();
        int num_results = func_type.getNumResults();
    
        // For each argument type in function's arguments, change it to uranked
        // tensor type if it's a variant type.
        SmallVector<Type, 8> updated_argument_types;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top