Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 335 for relu (0.06 sec)

  1. tensorflow/compiler/mlir/lite/tests/get-arithmetic-count.mlir

      // CHECK: _arithmetic_count = 230686720 : i64
      %0 = "tfl.conv_2d"(%arg0, %arg1, %arg2) {dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, padding = "SAME", stride_h = 1 : i32, stride_w = 1 : i32, fused_activation_function = "RELU6"} : (tensor<256x32x32x3xf32>, tensor<16x3x3x3xf32>, tensor<16xf32>) -> tensor<256x32x32x16xf32>
      func.return %0 : tensor<256x32x32x16xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 14 04:58:17 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  10. bin/check_samples.sh

    # limitations under the License.
    
    shopt -s globstar
    set -e
    
    SCRIPTPATH=$( cd "$(dirname "$0")" && pwd -P )
    ROOTDIR=$SCRIPTPATH/..
    cd "$ROOTDIR" || exit
    
    # rely on go build cache
    ISTIOCTL=bin/istioctl
    go build -o $ISTIOCTL ./istioctl/cmd/istioctl
    
    for f in samples/**/*.yaml; do
      if grep -q -e "{{" "$f" ; then
        echo "Skipping check for helm template $f"
        continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1010 bytes
    - Viewed (0)
Back to top