Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for noinlines (0.12 sec)

  1. src/cmd/internal/dwarf/dwarf.go

    	InlIndex int
    
    	// Position of the inlined call site.
    	CallPos src.Pos
    
    	// Dwarf abstract subroutine symbol (really *obj.LSym).
    	AbsFunSym Sym
    
    	// Indices of child inlines within Calls array above.
    	Children []int
    
    	// entries in this list are PAUTO's created by the inliner to
    	// capture the promoted formals and locals of the inlined callee.
    	InlVars []*Var
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      ];
    }
    
    def StripNoinlineAttributePass : Pass<"tf-strip-noinline-attribute", "ModuleOp"> {
      let summary = "Strip the tf._noinline attribute from top-level functions.";
      let constructor = "TF::CreateStripNoinlineAttributePass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      %pop_result = "tf.Reshape"(%slice, %elem_size_const)
      "tf.AssignVariableOp"(%size, %new_size)
    ```
    
    The pass also works across control flow and functional calls.
    ### `-tf-strip-noinline-attribute`
    
    _Strip the tf._noinline attribute from top-level functions._
    
    ### `-tf-strip-tf-attributes`
    
    _Removes TF specific attributes_
    
    Removes attributes that are TF specific (start with "tf.") or that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/dwarf.go

    	absfn.Set(AttrDuplicateOK, true)
    	absfn.Type = objabi.SDWARFABSFCN
    	ft.ctxt.Data = append(ft.ctxt.Data, absfn)
    
    	// In the case of "late" inlining (inlines that happen during
    	// wrapper generation as opposed to the main inlining phase) it's
    	// possible that we didn't cache the abstract function sym for the
    	// text symbol -- do so now if needed. See issue 38068.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. src/internal/abi/type.go

    	}
    	return (*[1 << 16]Method)(addChecked(unsafe.Pointer(t), uintptr(t.Moff), "t.xcount > 0"))[:t.Xcount:t.Xcount]
    }
    
    // addChecked returns p+x.
    //
    // The whySafe string is ignored, so that the function still inlines
    // as efficiently as p+x, but all call sites should use the string to
    // record why the addition is safe, which is to say why the addition
    // does not cause x to advance to the very end of p's allocation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

                  partitioned_output);
            }
          }
        }
      }
    
      return std::forward_as_tuple(partitioned_outputs, erase_list);
    }
    
    // Inlines the partitioned output ops into the cluster, and updates
    // their users to point to the replicate op instead.
    Operation* BuildPartitionedOutputs(
        OpBuilder& builder, mlir::tf_device::ClusterOp cluster,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat.go

    const preallocLimbs = (preallocTarget + _W - 1) / _W
    
    // NewNat returns a new nat with a size of zero, just like new(Nat), but with
    // the preallocated capacity to hold a number of up to preallocTarget bits.
    // NewNat inlines, so the allocation can live on the stack.
    func NewNat() *Nat {
    	limbs := make([]uint, 0, preallocLimbs)
    	return &Nat{limbs}
    }
    
    // expand expands x to n limbs, leaving its value unchanged.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. cmd/erasure-object_test.go

    	err = objLayer.MakeBucket(ctx, "testbucket", MakeBucketOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Unzip sample object data to the existing disks
    	err = unzipArchive("testdata/xl-meta-inline-notinline.zip", path)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Try to read the object and check its md5sum
    	gr, err := objLayer.GetObjectNInfo(ctx, "testbucket", "file", nil, nil, ObjectOptions{})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    		if legacyPreserved {
    			s.deleteFile(dstVolumeDir, legacyDataPath, true, false)
    		}
    		return res, osErrToFileErr(err)
    	}
    	diskHealthCheckOK(ctx, err)
    
    	notInline := srcDataPath != "" && len(fi.Data) == 0 && fi.Size > 0
    	if notInline {
    		if healing {
    			// renameAll only for objects that have xl.meta not saved inline.
    			// this must be done in healing only, otherwise it is expected
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif
    
    #endif  // _MSC_VER
    
    #ifndef GTEST_API_
    # define GTEST_API_
    #endif
    
    #ifdef __GNUC__
    // Ask the compiler to never inline a given function.
    # define GTEST_NO_INLINE_ __attribute__((noinline))
    #else
    # define GTEST_NO_INLINE_
    #endif
    
    // _LIBCPP_VERSION is defined by the libc++ library from the LLVM project.
    #if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION)
    # define GTEST_HAS_CXXABI_H_ 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top