Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,264 for minline (0.12 sec)

  1. src/runtime/symtab_test.go

    	// an inline tree.
    	inlined()
    	inlined()
    
    	// Acquire a PC in this function.
    	pc, _, _, ok := runtime.Caller(0)
    	if !ok {
    		t.Fatalf("Caller(0) got ok false, want true")
    	}
    
    	return pc
    }
    
    // Test that CallersFrames handles PCs in the alignment region between
    // functions (int 3 on amd64) without crashing.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. src/runtime/pprof/proto.go

    // Here's an example of how Go 1.17 writes out inlined functions, compiled for
    // linux/amd64. The disassembly of main.main shows two levels of inlining: main
    // calls b, b calls a, a does some work.
    //
    //   inline.go:9   0x4553ec  90              NOPL                 // func main()    { b(v) }
    //   inline.go:6   0x4553ed  90              NOPL                 // func b(v *int) { a(v) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/inlining.mlir

    // CHECK-LABEL: func @inline_simple(
    func.func @inline_simple() -> tensor<2xi32> {
      // CHECK-NEXT: %[[CST:.*]] = "tf.Const"
      // CHECK-NEXT: return %[[CST]]
      %result = "tf.StatefulPartitionedCall"() {config = "", config_proto = "", executor_type = "", f = @simple_callee} : () -> tensor<2xi32>
      func.return %result : tensor<2xi32>
    }
    
    // Test that functions with 'tf._noinline' are not inlined.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/trieval.go

    // table size significantly.
    //
    // The per-rune values have the following format:
    //
    //	if mapped {
    //	  if inlinedXOR {
    //	    15..13 inline XOR marker
    //	    12..11 unused
    //	    10..3  inline XOR mask
    //	  } else {
    //	    15..3  index into xor or mapping table
    //	  }
    //	} else {
    //	    15..14 unused
    //	    13     mayNeedNorm
    //	    12..11 attributes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 04:45:15 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractor.kt

        private
        fun MethodMember.isInline() = inlineFunctions.contains(this.binarySignature())
    }
    
    
    internal
    class CompileAvoidanceException(message: String) : GradleException(message) {
    
        companion object Factory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. test/fixedbugs/bug392.dir/one.go

    // license that can be found in the LICENSE file.
    
    // Functions that the inliner exported incorrectly.
    
    package one
    
    type T int
    
    // Issue 2678
    func F1(T *T) bool { return T == nil }
    
    // Issue 2682.
    func F2(c chan int) bool { return c == (<-chan int)(nil) }
    
    // Use of single named return value.
    func F3() (ret []int) { return append(ret, 1) }
    
    // Call of inlined method with blank receiver.
    func (_ *T) M() int { return 1 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 851 bytes
    - Viewed (0)
  7. src/cmd/internal/obj/inl.go

    }
    
    // InnermostPos returns the innermost position corresponding to xpos,
    // that is, the code that is inlined and that inlines nothing else.
    // In the example for InlTree above, the code for println within h
    // would have an innermost position with line number 12, whether
    // h was not inlined, inlined into g, g-then-f, or g-then-f-then-main.
    // This corresponds to what someone debugging main, f, g, or h might
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/convert_tpu_model_to_cpu.mlir

    // RUN: tf-quant-opt %s -quant-convert-tpu-model-to-cpu -inline -quant-cast-bf16-ops-to-f32 -split-input-file | \
    // RUN: FileCheck %s
    
    // Remove TPU related ops.
    func.func @tpu_conv(%arg0: tensor<1x3x4x3xf32>) -> tensor<1x3x2x2xf32> {
      %0 = "tf.TPUOrdinalSelector"() {device = ""} : () -> tensor<?xi32>
      %1 = "tf.TPUPartitionedCall"(%arg0, %0) {autotuner_thresh = 0 : i64, device = "", f = @tpu_func_0_optim0} : (tensor<1x3x4x3xf32>, tensor<?xi32>) -> tensor<1x3x2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateLaunchToDeviceAttributePass());
    
      // Note that the region-based control-flow produced here still contains
      // function call ops which get inlined by the subsequent inliner pass.
      pm.addPass(mlir::TF::CreateTFFunctionalControlFlowToRegions());
      pm.addPass(mlir::createInlinerPass());
      pm.addNestedPass<FuncOp>(
          mlir::TF::CreateDropWhileShapeInvariantInDeviceClusterPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
Back to top