Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,034 for Inline1 (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.cc

      AddShapeLegalizationPasses(pm);
      pm.addNestedPass<func::FuncOp>(
          CreateConvertCustomAggregationOpToQuantStatsPass());
      pm.addPass(createQuantizeCompositeFunctionsPass(options));
      // Add an inliner pass to inline quantized StableHLO functions.
      pm.addPass(createInlinerPass());
      if (pipeline_config.unpack_quantized_types()) {
        AddStablehloQuantToIntPasses(pm);
      }
    }
    
    void AddWeightOnlyQuantizationPasses(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/runtime/symtabinl.go

    	startLine int32 // line number of start of function (func keyword/TEXT directive)
    }
    
    // An inlineUnwinder iterates over the stack of inlined calls at a PC by
    // decoding the inline table. The last step of iteration is always the frame of
    // the physical function, so there's always at least one frame.
    //
    // This is typically used as:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/testdata/inject-config-inline-iop.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 207 bytes
    - Viewed (0)
  4. src/runtime/tracestack.go

    // pcBuf and dst should not overlap.
    //
    // fpunwindExpand checks if pcBuf contains logical frames (which include inlined
    // frames) or physical frames (produced by frame pointer unwinding) using a
    // sentinel value in pcBuf[0]. Logical frames are simply returned without the
    // sentinel. Physical frames are turned into logical frames via inline unwinding
    // and by applying the skip value that's stored in pcBuf[0].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    }
    
    type H struct {
    	A A `json:"ha"`
    	C `json:",inline"`
    }
    
    type I struct {
    	A A `json:"ia"`
    	H `json:",inline"`
    
    	UL1 UnknownLevel1 `json:"ul1"`
    }
    
    type UnknownLevel1 struct {
    	A          int64 `json:"a"`
    	InlinedAA  `json:",inline"`
    	InlinedAAA `json:",inline"`
    }
    type InlinedAA struct {
    	AA int64 `json:"aa"`
    }
    type InlinedAAA struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/css/all.css

        padding-left: 1em
    }
    
    .toc-inlined {
        padding-bottom: 1em
    }
    
    .toc-inlined .directory {
        border-left: 0
    }
    
    .toc-inlined .directory li {
        font-size: 1rem
    }
    
    .toc-inlined .directory ul {
        list-style-type: none !important;
        padding-left: 0;
        padding-bottom: 0;
        margin: 0
    }
    
    .toc-inlined .directory ul ul {
        padding-left: 1em
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

        const LayoutOptimizationPipelineOptions& options);
    
    struct StandardPipelineOptions
        : public PassPipelineOptions<StandardPipelineOptions> {
      Option<bool> enable_inliner{*this, "enable-inliner",
                                  llvm::cl::desc("Enable inliner."),
                                  llvm::cl::init(false)};
      Option<bool> form_clusters{*this, "form-clusters",
                                 llvm::cl::desc("Enable Cluster Formation pass."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. cmd/storage-datatypes.go

    	return ok
    }
    
    // InlineData returns true if object contents are inlined alongside its metadata.
    func (fi FileInfo) InlineData() bool {
    	_, ok := fi.Metadata[ReservedMetadataPrefixLower+"inline-data"]
    	// Earlier MinIO versions didn't reset "x-minio-internal-inline-data"
    	// from fi.Metadata when the object was tiered. So, tiered objects
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/parse.go

    }
    
    type Text struct {
    	Position
    	Inline []Inline
    	raw    string
    }
    
    func (b *Text) PrintHTML(buf *bytes.Buffer) {
    	for _, x := range b.Inline {
    		x.PrintHTML(buf)
    	}
    }
    
    func (b *Text) printMarkdown(buf *bytes.Buffer, s mdState) {
    	if s.prefix1 != "" {
    		buf.WriteString(s.prefix1)
    	} else {
    		buf.WriteString(s.prefix)
    	}
    	var prev Inline
    	for _, x := range b.Inline {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/dwarf.go

    	ls := s.(*LSym)
    	return ls.Size
    }
    
    // Here "from" is a symbol corresponding to an inlined or concrete
    // function, "to" is the symbol for the corresponding abstract
    // function, and "dclIdx" is the index of the symbol of interest with
    // respect to the Dcl slice of the original pre-optimization version
    // of the inlined function.
    func (c dwCtxt) RecordDclReference(from dwarf.Sym, to dwarf.Sym, dclIdx int, inlIndex int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top