Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 736 for noinline (0.61 sec)

  1. test/typeparam/dictionaryCapture-noinline.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/mark_functions_noinline.mlir

    // RUN: tf-quant-opt %s -mark-functions-noinline='noinline-functions=noinline0' \
    // RUN:     -allow-unregistered-dialect -mlir-disable-threading \
    // RUN:     -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests that the function is marked tf._noinline = true.
    
    // CHECK-LABEL: @noinline0
    // CHECK-SAME: attributes {{{.*tf._noinline = true.*}}}
    func.func @noinline0() -> (tensor<0xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 00:02:46 UTC 2023
    - 841 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/mark_functions_noinline.cc

        return {*this, "noinline-functions",
                llvm::cl::desc(
                    "Name of the functions that should be marked "
                    "tf._noinline = true to prevent inlining. The name of the "
                    "function should exactly match to be marked noinline."),
                llvm::cl::list_init<std::string>(noinline_functions),
                llvm::cl::ZeroOrMore};
      }
    
      // Gets a set of function names from `noinline_functions_`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 18 02:52:57 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/strip_noinline.mlir

    // RUN: tf-opt %s -tf-strip-noinline-attribute | FileCheck %s
    
    // CHECK-LABEL: func @strip_simple(
    // CHECK-NOT: tf._noinline
    func.func @strip_simple() -> tensor<2xi32> attributes {tf._noinline = true} {
      // CHECK-NEXT: %[[CST:.*]] = "tf.Const"
      %cst = "tf.Const"() { value = dense<2> : tensor<2xi32> } : () -> tensor<2xi32>
      func.return %cst : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 364 bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractMultiModuleSymbolByPsiTest.kt

        }
    
        /**
         * Processes the descendants of the element using the preorder implementation of tree traversal.
         */
        private inline fun <reified T : PsiElement> PsiElement.forEachDescendantOfType(
            noinline predicate: (T) -> Boolean = { true },
            noinline action: (T) -> Unit,
        ) = this.accept(object : PsiRecursiveElementVisitor() {
            override fun visitElement(element: PsiElement) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/debug/dwarf/testdata/ranges.c

    // gcc -g -O2 -freorder-blocks-and-partition
    
    const char *arr[10000];
    const char *hot = "hot";
    const char *cold = "cold";
    
    __attribute__((noinline))
    void fn(int path) {
    	int i;
    
    	if (path) {
    		for (i = 0; i < sizeof arr / sizeof arr[0]; i++) {
    			arr[i] = hot;
    		}
    	} else {
    		for (i = 0; i < sizeof arr / sizeof arr[0]; i++) {
    			arr[i] = cold;
    		}
    	}
    }
    
    int main(int argc, char *argv[]) {
    	fn(argc);
    	return 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 14:06:09 UTC 2016
    - 415 bytes
    - Viewed (0)
  7. src/debug/dwarf/testdata/rnglistx.c

    // clang -gdwarf-5 -O2 -nostdlib
    
    __attribute__((noinline, cold))
    static int sum(int i) {
      int j, s;
    
      s = 0;
      for (j = 0; j < i; j++) {
        s += j * i;
      }
      return s;
    }
    
    int main(int argc, char** argv) {
      if (argc == 0) {
        return 0;
      }
      return sum(argc);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 17 00:54:09 UTC 2021
    - 268 bytes
    - Viewed (0)
  8. test/typeparam/valimp.dir/a.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    type Value[T any] struct {
    	val T
    }
    
    // The noinline directive should survive across import, and prevent instantiations
    // of these functions from being inlined.
    
    //go:noinline
    func Get[T any](v *Value[T]) T {
    	return v.val
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 587 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SourceControlExtensions.kt

    import org.gradle.vcs.VcsMapping
    import org.gradle.vcs.VersionControlSpec
    
    
    /**
     * Specifies the VCS location for the requested component.
     *
     * @see VcsMapping.from
     */
    inline fun <reified T : VersionControlSpec> VcsMapping.from(noinline configureAction: T.() -> Unit) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 961 bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PolymorphicDomainObjectContainerExtensions.kt

     * exists or the container does not support creating a domain object with the specified
     * type
     */
    inline fun <reified U : Any> PolymorphicDomainObjectContainer<in U>.create(
        name: String,
        noinline configuration: U.() -> Unit
    ) =
    
        this.create(name, U::class.java, configuration)
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top