Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for new_results (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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