Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for ResultList (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.td

        $explicit_paddings, IsDataFormatNHWC:$data_format, $dilations),
      (LiftAsTFPartitionedCall<"composite_conv2d_fn">
        (ArgumentList $input, $filter),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"strides"> $strides),
          (NamedAttr<"use_cudnn_on_gpu"> $use_cudnn_on_gpu),
          (NamedAttr<"padding"> $padding),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.td

        (ArgumentList $x, $y),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"adj_x"> $adj_x),
          (NamedAttr<"adj_y"> $adj_y))),
      [(IsNotInLiftedFunc $res)], [], (addBenefit 1)>;
    
    def LiftEinsum : Pat<
      (TF_EinsumOp:$res $input, $equation),
      (LiftAsTFPartitionedCall<"composite_einsum_fn">
        (ArgumentList $input),
        (ResultList $res),
        (NamedAttributeList
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_simple.td

          $lhs_dilation, $rhs_dilation, $window_reversal, $dimension_numbers,
          $feature_group_count, $batch_group_count, $precision_config),
      (LiftAsTFXlaCallModule<"composite_conv_fn">
        (ArgumentList $lhs, $rhs),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"window_strides"> (DefaultOrNullAttr $window_strides)),
          (NamedAttr<"padding"> (DefaultOrNullAttr $padding)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_fusion.td

        (StableHLO_DotGeneralOp
            $lhs, $rhs, $dot_dimension_numbers, $precision_config),
        $bias),
      (LiftAsTFXlaCallModule<"composite_dot_general_with_bias_same_shape_fn">
        (ArgumentList $lhs, $rhs, $bias),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"dot_dimension_numbers"> $dot_dimension_numbers),
          (NamedAttr<"precision_config"> (DefaultOrNullAttr $precision_config)))),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            }
            final List<Future<SearchResult>> resultList = new ArrayList<>();
            for (int i = 0; i < searchers.length; i++) {
                final SearchRequestParams reqParams = new SearchRequestParamsWrapper(params, 0, i == 0 ? windowSize : size);
                final RankFusionSearcher searcher = searchers[i];
                resultList.add(executorService.submit(() -> {
                    try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.td

    // The list of arguments of the composite function.
    def ArgumentList : NativeCodeCall<"llvm::SmallVector<Value>{$0...}">;
    
    // The list of results of the composite function.
    def ResultList : NativeCodeCall<"llvm::SmallVector<Value>{$0...}">;
    
    // Creates a list of NamedAttributes. An example usage would be:
    // (NamedAttributeList (NamedAttr<"transpose_a"> $transpose_a))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 00:32:20 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/positions.go

    				continue
    			}
    			m = n.Name
    		case *InterfaceType:
    			if l := lastField(n.MethodList); l != nil {
    				m = l
    				continue
    			}
    			return n.Pos()
    		case *FuncType:
    			if l := lastField(n.ResultList); l != nil {
    				m = l
    				continue
    			}
    			if l := lastField(n.ParamList); l != nil {
    				m = l
    				continue
    			}
    			return n.Pos()
    		case *MapType:
    			m = n.Value
    		case *ChanType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/walk.go

    	case *Field:
    		if n.Name != nil {
    			w.node(n.Name)
    		}
    		w.node(n.Type)
    
    	case *InterfaceType:
    		w.fieldList(n.MethodList)
    
    	case *FuncType:
    		w.fieldList(n.ParamList)
    		w.fieldList(n.ResultList)
    
    	case *MapType:
    		w.node(n.Key)
    		w.node(n.Value)
    
    	case *ChanType:
    		w.node(n.Elem)
    
    	// statements
    	case *EmptyStmt: // nothing to do
    
    	case *LabeledStmt:
    		w.node(n.Label)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/nodes.go

    		node
    	}
    
    	// interface { MethodList[0]; MethodList[1]; ... }
    	InterfaceType struct {
    		MethodList []*Field
    		expr
    	}
    
    	FuncType struct {
    		ParamList  []*Field
    		ResultList []*Field
    		expr
    	}
    
    	// map[Key]Value
    	MapType struct {
    		Key, Value Expr
    		expr
    	}
    
    	//   chan Elem
    	// <-chan Elem
    	// chan<- Elem
    	ChanType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. src/go/internal/gccgoimporter/parser.go

    		default:
    			p.errorf("internal error: %T on nlist", n)
    		}
    	}
    }
    
    // NamedType = TypeName [ "=" ] Type { Method } .
    // TypeName  = ExportedName .
    // Method    = "func" "(" Param ")" Name ParamList ResultList [InlineBody] ";" .
    func (p *parser) parseNamedType(nlist []any) types.Type {
    	pkg, name := p.parseExportedName()
    	scope := pkg.Scope()
    	obj := scope.Lookup(name)
    	if obj != nil && obj.Type() == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top