Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for ifat (0.05 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/ifrt/sink_variable_as_named_array.mlir

    // RUN: tf-tfrt-opt -split-input-file -tf-device-decompose-resource-ops -sink-variable-as-named-array %s | FileCheck %s
    
    // -----
    // Basic test: all variables tensors are for devices and sinked as named ifrt arrays
    //
    //
    // CHECK-LABEL:  func.func @serving_default(%arg0: tensor<1x3xf32>) -> tensor<1x1xf32> {
    // CHECK-NEXT:   [[HANDLE2:%.*]] = "tf.VarHandleOp"
    // CHECK-NEXT:   [[KEY:%.*]], [[FUTURE:%.*]] = "tf.IfrtLoadVariable"([[HANDLE2]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 15:33:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/BUILD

    package_group(
        name = "friends",
        packages = [
            "//tensorflow/compiler/...",
            "//tensorflow/core/tfrt/experimental/data/...",
            "//tensorflow/core/tfrt/graph_executor/...",
            "//tensorflow/core/tfrt/ifrt/...",
            "//tensorflow/core/tfrt/kernels/...",
            "//tensorflow/core/tfrt/mlrt/...",
            "//tensorflow/core/tfrt/saved_model/...",
            "//tensorflow/core/tfrt/tfrt_session/...",
        ] + if_google([
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriberTest.groovy

                .attribute(Attribute.of('dummy', String), 'value')
    
            then:
            describer.describeAttributeSet(attributes.asMap()) == "samples, and its dependencies bundled (fat jar), as well as attribute 'dummy' with value 'value'"
        }
    
        def "uses the generic 'component' term when category isn't set"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 17:05:19 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/walk.go

    		return typecheck.LookupRuntime(name, t.Elem(), t.Elem())
    	}
    	base.Fatalf("chanfn %d", n)
    	return nil
    }
    
    func mapfn(name string, t *types.Type, isfat bool) ir.Node {
    	if !t.IsMap() {
    		base.Fatalf("mapfn %v", t)
    	}
    	if mapfast(t) == mapslow || isfat {
    		return typecheck.LookupRuntime(name, t.Key(), t.Elem(), t.Key(), t.Elem())
    	}
    	return typecheck.LookupRuntime(name, t.Key(), t.Elem(), t.Elem())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/buildship.gradle

    import java.util.zip.ZipEntry
    import java.util.zip.ZipInputStream
    
    tasks.register("buildshipEclipseProject", CreateBuildshipEclipseProjectTask) {
        description = "Creates an Eclipse plug-in project from the Tooling API fat jar"
        toolingApiShadedJar = tasks.named('toolingApiShadedJar').flatMap { it.jarFile }
        projectVersion = project.version
        projectDirectory = layout.buildDirectory.dir("buildshipProject").get().asFile
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. security/tools/jwt/samples/gen-jwt.py

                fout.write("]}")
            fout.close
    
        now = int(time.time())
        payload = {
            # expire in one hour.
            "exp": now + args.expire,
            "iat": now,
        }
        if args.iss:
            payload["iss"] = args.iss
        if args.sub:
            payload["sub"] = args.sub
        else:
            payload["sub"] = args.iss
    
        if args.aud:
            if "," in args.aud:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    		$2 ~ /^LINUX_REBOOT_CMD_/ ||
    		$2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||
    		$2 !~ "NLA_TYPE_MASK" &&
    		$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P)_/ ||
    		$2 ~ /^SIOC/ ||
    		$2 ~ /^TIOC/ ||
    		$2 !~ "RTF_BITS" &&
    		$2 ~ /^(IFF|IFT|NET_RT|RTM|RTF|RTV|RTA|RTAX)_/ ||
    		$2 ~ /^BIOC/ ||
    		$2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/ifrt/lower_to_ifrt_restore_variable.mlir

    // RUN: tf-tfrt-opt -split-input-file -verify-diagnostics -lower-to-ifrt-restore-variable %s | FileCheck %s
    
    
    // -----
    // single variable
    
    // CHECK-LABEL:   func.func @restore_single() {
    // CHECK-NEXT:     [[PREFIX:%.*]] = "tf.Const"() <{value = dense<"restore_ariables"> : tensor<!tf_type.string>}> : () -> tensor<!tf_type.string>
    // CHECK-NEXT:     [[SLICE:%.*]] = "tf.Const"() <{value = dense<""> : tensor<1x!tf_type.string>}> : () -> tensor<1x!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar_fiat.go

    // Code generated by Fiat Cryptography. DO NOT EDIT.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  10. src/net/listen_test.go

    			return true, nil // not implemented yet
    		}
    	}
    	ift, err := Interfaces()
    	if err != nil {
    		return false, err
    	}
    	for _, ifi := range ift {
    		ifmat, err := ifi.MulticastAddrs()
    		if err != nil {
    			return false, err
    		}
    		for _, ifma := range ifmat {
    			if ifma.(*IPAddr).IP.Equal(ip) {
    				return true, nil
    			}
    		}
    	}
    	return false, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
Back to top