Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for Co (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

    ### Examples
    
    * To convert [microsoft/resnet-50](https://huggingface.co/microsoft/resnet-50)
    model to StableHLO with static input shape `4x3x224x224` for input argument with
    type `tensor<?x3x224x224xf32>`.
    
    ```bash
    tf-to-stablehlo-translate <saved-model-path> --input-arg-shapes=4,3,224,224
    ```
    
    * To convert
    [google-bert/bert-large-uncased](https://huggingface.co/google-bert/bert-large-uncased)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. hack/tools/tools.go

    import (
    	// linting tools
    	_ "github.com/aojea/sloppy-netparser"
    	_ "github.com/client9/misspell/cmd/misspell"
    	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
    	_ "github.com/jcchavezs/porto/cmd/porto"
    	_ "honnef.co/go/tools/cmd/staticcheck"
    	_ "sigs.k8s.io/logtools/logcheck"
    
    	// benchmarking tools
    	_ "github.com/cespare/prettybench"
    	_ "gotest.tools/gotestsum"
    
    	// mockgen
    	_ "go.uber.org/mock/mockgen"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockEntryFilterFactoryTest.groovy

            ['org:foo']             | ['org:foo:2.1']                   | ['com:bar:1.1']
            ['org:foo,']            | ['org:foo:2.1']                   | ['com:bar:1.1'] // Simply shows a trailing comma is ignored
            ['co*:ba*']             | ['com:bar:2.1']                   | ['org:foo:1.1']
            ['*:ba*']               | ['org:bar:2.1']                   | ['com:foo:1.1']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/a.out.go

    	REG_F15
    	REG_F16
    	REG_F17
    	REG_F18
    	REG_F19
    	REG_F20
    	REG_F21
    	REG_F22
    	REG_F23
    	REG_F24
    	REG_F25
    	REG_F26
    	REG_F27
    	REG_F28
    	REG_F29
    	REG_F30
    	REG_F31
    
    	// co-processor 0 control registers
    	REG_M0 // must be a multiple of 32
    	REG_M1
    	REG_M2
    	REG_M3
    	REG_M4
    	REG_M5
    	REG_M6
    	REG_M7
    	REG_M8
    	REG_M9
    	REG_M10
    	REG_M11
    	REG_M12
    	REG_M13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/apply.go

    	// Check which objects in the manifest have changed from those in the cache.
    	for _, obj := range allObjects {
    		oh := obj.Hash()
    		allObjectsMap[oh] = true
    		if co, ok := objectCache.Cache[oh]; ok && obj.Equal(co) {
    			// Object is in the cache and unchanged.
    			metrics.AddResource(obj.FullName(), obj.GroupVersionKind().GroupKind())
    			result.deployed++
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/MixedLanguageIntegrationTest.groovy

        @Override
        HelloWorldApp getHelloWorldApp() {
            return new MixedLanguageHelloWorldApp(toolChain)
        }
    
        @ToBeFixedForConfigurationCache
        def "can have all source files co-located in a common directory"() {
            given:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp {
                        source {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. docs/language_names.yml

    ba: башҡорт теле
    be: беларуская мова
    bg: български език
    bh: भोजपुरी
    bi: Bislama
    bm: bamanankan
    bn: বাংলা
    bo: བོད་ཡིག
    br: brezhoneg
    bs: bosanski jezik
    ca: Català
    ce: нохчийн мотт
    ch: Chamoru
    co: corsu
    cr: ᓀᐦᐃᔭᐍᐏᐣ
    cs: čeština
    cu: ѩзыкъ словѣньскъ
    cv: чӑваш чӗлхи
    cy: Cymraeg
    da: dansk
    de: Deutsch
    dv: Dhivehi
    dz: རྫོང་ཁ
    ee: Eʋegbe
    el: Ελληνικά
    en: English
    eo: Esperanto
    es: español
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/model/BinarySourceTransformations.java

     * - Source sets should be able to depend on other source sets, resulting in the correct task dependencies and inputs
     * - Joint-compilation should only be used in the case where sources are co-dependent.
     *
     * Currently we use joint-compilation when:
     * - We have a language transform that supports joint-compilation
     * - Binary is flagged with {@link BinarySpecInternal#hasCodependentSources()}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_colocate_composite_resource_ops.cc

    namespace mlir {
    namespace TFTPU {
    namespace {
    
    #define GEN_PASS_DEF_TPUCOLOCATECOMPOSITERESOURCEOPSPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Pass that co-locates resource ops that use composite device resources
    // (packed tensors) with the underlying physical TPU device.
    struct TPUColocateCompositeResourceOps
        : public impl::TPUColocateCompositeResourceOpsPassBase<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 17:41:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

            mainExecutable.assertExists()
            mainExecutable.exec().out == helloWorldApp.englishOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "uses headers co-located with sources"() {
            given:
            // Write headers so they sit with sources
            helloWorldApp.files.each {
                it.writeToFile(file("src/main/c/${it.name}"))
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top