Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getGeneric (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

      using OpConversionPattern::OpConversionPattern;
    
      LogicalResult matchAndRewrite(
          tfg::GraphFuncOp graph_func, OpAdaptor adaptor,
          ConversionPatternRewriter &rewriter) const final {
        assert(!graph_func.getGeneric());
        Location loc = graph_func.getLoc();
        FunctionType ftype = graph_func.getFunctionType();
    
        func::FuncOp func = rewriter.create<func::FuncOp>(
            graph_func.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. src/sort/gen_sort_variants.go

    				},
    			},
    		},
    	}
    )
    
    func main() {
    	genGeneric := flag.Bool("generic", false, "generate generic versions")
    	genExp := flag.Bool("exp", false, "generate x/exp/slices versions")
    	flag.Parse()
    
    	var variants []Variant
    	if *genExp {
    		variants = expVariants
    	} else if *genGeneric {
    		variants = genericVariants
    	} else {
    		variants = traditionalVariants
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top