Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,595 for junctions (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // Creates a pass that moves & merges initializer function's ops into the @main
    // function. This pass should be run on a valid tf_executor dialect. The control
    // output of the initializer function for non-variable resource initialization
    // will be passed on as a dependency to a new `tf.NoOp`, whose control output
    // will be merged into the main function's FetchOp. The initializer functions
    // will be removed.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

      }
      return bytecode;
    }
    
    // Serializes the stablehlo functions called by XlaCallModuleOp to bytecode
    // and embeds the bytecode in XlaCallModuleOp's `module` attribute.
    //
    // The stablehlo functions include the function referred by XlaCallModuleOp's
    // `_entry_function` attribute, and any stablehlo functions called transitively
    // from the entry function.
    LogicalResult SerializeXlaCallModule(SymbolTableCollection& symbol_table,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/DeferredUtil.java

        }
    
        private static boolean isKotlinFunction0Deferrable(@Nullable Object value) {
            return value instanceof kotlin.jvm.functions.Function0;
        }
    
        @Nullable
        private static Object unpackKotlinFunction0(Object value) {
            return ((kotlin.jvm.functions.Function0) value).invoke();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-defs.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -o - | FileCheck %s
    
    # Verify that we properly import call site function attributes.
    # CHECK: tf.If
    # CHECK-SAME: then_branch = @
    # CHECK-SAME: then_branch.how_many = 32
    # CHECK-SAME: then_branch.ping = "ack"
    
    node {
      name: "Placeholder"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/xla_call_module_attrs.h

    namespace mlir {
    namespace TF {
    
    // The main function's name in the serialized stablehlo module embedded in
    // XlaCallModule's `module` attribute.
    constexpr llvm::StringRef kStablehloMainFunctionName = "main";
    
    // After deserializing the stablehlo functions from XlaCallModule,
    // this XlaCallModule attribute refers to the deserialized stablehlo main
    // function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 22:08:10 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

      // Iterate over the sorted list of functions to keep order deterministic.
      for (func::FuncOp func : GetSortedFunctions(module_op)) {
        if (failed(applyPatternsAndFoldGreedily(func, frozen_patterns))) {
          func.emitError()
              << "quant-stablehlo-lift-quantizable-spots-as-functions failed.";
          signalPassFailure();
        }
      }
    
      // Remove all attr_map attributes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. test-site/activator-launch-1.3.2.jar

    abstract boolean isEmpty(); public final boolean isDefined(); public abstract Object get(); public final Object getOrElse(Function0); public final Option map(Function1); public final Option flatMap(Function1); public final Option filter(Function1); public final Option$WithFilter withFilter(Function1); public final boolean forall(Function1); public final Option orElse(Function0); public final collection.immutable.List toList(); public void Option(); } scala/Option$WithFilter.class package scala; public...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  8. src/cmd/compile/internal/ir/func.go

    	// For ABIs other than this function's definition ABI, the
    	// compiler generates ABI wrapper functions. This is only tracked
    	// within a package.
    	ABIRefs obj.ABISet
    
    	NumDefers  int32 // number of defer calls in the function
    	NumReturns int32 // number of explicit returns in the function
    
    	// NWBRCalls records the LSyms of functions called by this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/math/bits/bits.go

    //go:generate go run make_tables.go
    
    // Package bits implements bit counting and manipulation
    // functions for the predeclared unsigned integer types.
    //
    // Functions in this package may be implemented directly by
    // the compiler, for better performance. For those functions
    // the code in this package will not be used. Which
    // functions are implemented by the compiler depends on the
    // architecture and the Go release.
    package bits
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/KotlinTypeStringTest.kt

        @Test
        fun `#kotlinTypeStringFor Kotlin function type`() {
            assertThat(
                kotlinTypeStringFor(typeOf<(String) -> String>()),
                equalTo("kotlin.jvm.functions.Function1<String, String>")
            )
        }
    
        @Test
        fun `#kotlinTypeStringFor Java function type`() {
            assertThat(
                kotlinTypeStringFor(typeOf<java.util.function.Function<String, String>>()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top