Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 401 for relu (0.1 sec)

  1. src/cmd/link/internal/ld/data_test.go

    	for i, test := range tests {
    		iself := len(test.rel) != 0
    		buildcfg.GOARCH = test.arch.Name
    		ctxt := setUpContext(test.arch, iself, test.ht, test.bm, test.lm)
    		foo := ctxt.loader.CreateSymForUpdate("foo", 0)
    		ctxt.loader.CreateExtSym("bar", 0)
    		AddGotSym(&ctxt.Target, ctxt.loader, &ctxt.ArchSyms, foo.Sym(), 0)
    
    		if iself {
    			rel := ctxt.loader.Lookup(test.rel, 0)
    			if rel == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 19:20:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

    namespace mlir {
    namespace odml {
    namespace {
    
    // TODO - b/330337238: Surface these to other files when needed.
    constexpr llvm::StringLiteral kCompositeNamespace = "odml.internal";
    constexpr llvm::StringLiteral kGelu = "gelu";
    
    std::string MakeCompositeName(llvm::StringRef op_name) {
      return (kCompositeNamespace + "." + op_name).str();
    }
    
    #define GEN_PASS_DEF_OUTLINECOMPOSITESPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadelf/ldelf.go

    					symIdx = int(info >> 32)
    				}
    				p = p[8:]
    				if rela != 0 {
    					add = e.Uint64(p)
    					p = p[8:]
    				}
    			} else {
    				// 32-bit rel/rela
    				rOff = int32(e.Uint32(p))
    
    				p = p[4:]
    				info := e.Uint32(p)
    				relocType = uint64(info & 0xff)
    				symIdx = int(info >> 8)
    				p = p[4:]
    				if rela != 0 {
    					add = uint64(e.Uint32(p))
    					p = p[4:]
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

      %0 = "tfl.add"(%arg0, %arg1) {fused_activation_function = "RELU6",  per_device_costs = {CPU = 5.0 : f32, GPU = 1.0 : f32}, tac.device = "GPU"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
      %1 = "tfl.mul"(%0, %arg2) {fused_activation_function = "RELU6", per_device_costs = {CPU = 5.0 : f32, GPU = 1.0 : f32}, tac.device = "GPU"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_ppc64x_linux.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    package cpu
    
    // ppc64 doesn't have a 'cpuid' equivalent, so we rely on HWCAP/HWCAP2.
    // These are initialized by archauxv and should not be changed after they are
    // initialized.
    var HWCap uint
    var HWCap2 uint
    
    // HWCAP bits. These are exposed by Linux.
    const (
    	// ISA Level
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:05:43 UTC 2022
    - 885 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

            configureProject().assertBuildScriptBodyRecompiled().assertOutputContains("bar")
        }
    
        @Test
        @UnsupportedWithConfigurationCache(because = "test rely on configuration phase output")
        fun `avoids buildscript recompilation on included build JAR rebuild`() {
    
            withDefaultSettingsIn("build-logic")
                .appendText("""rootProject.name = "build-logic"""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/FakeTicker.java

       *     href="https://github.com/google/guava#guava-google-core-libraries-for-java">flavor</a>)
       */
      @GwtIncompatible
      @J2ktIncompatible
      @CanIgnoreReturnValue
      @SuppressWarnings("Java7ApiChecker") // guava-android can rely on library desugaring now.
      @IgnoreJRERequirement // TODO: b/288085449 - Remove this once we use library-desugaring scents.
      @Beta // TODO: b/288085449 - Remove @Beta after we're sure that Java 8 APIs are safe for Android
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_patterns.td

              (variadic $inputs),
              ConstantStrAttr<StrAttr, "aten.gelu.default">, $attrs, $_, $_),
            (TFL_GeluOp $inputs, ConstBoolAttrFalse),
            [(IsStrCompositeAttribute<"approximate", "none"> $attrs)]>;
    
    def LegalizeCompositeApproximateAtenGELU : Pat<
            (MHLO_CompositeOp:$composite
              (variadic $inputs),
              ConstantStrAttr<StrAttr, "aten.gelu.default">, $attrs, $_, $_),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/dynamic_shape.mlir

      %cst = arith.constant dense<1.0> : tensor<4xf32>
      %cst_3 = arith.constant dense<2.0> : tensor<4x3x3x3xf32>
      %0 = "tfl.conv_2d"(%arg0, %cst_3, %cst) {dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, fused_activation_function = "RELU6", padding = "VALID", stride_h = 2 : i32, stride_w = 2 : i32} : (tensor<?x19x19x3xf32>, tensor<4x3x3x3xf32>, tensor<4xf32>) -> tensor<?x9x9x4xf32>
      func.return %0 : tensor<?x9x9x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 716 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/GroovyDynamicDispatchInterceptors.java

        @InterceptJvmCalls
        @CallableKind.StaticMethod(ofClass = ScriptBytecodeAdapter.class)
        public static void intercept_setGroovyObjectProperty(
            Object messageArgument,
            /* Sometimes it's null, we can't rely on it, so we still use @CallerClassName */
            Class<?> senderClass,
            GroovyObject receiver,
            String messageName,
            @CallerClassName String consumer,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top