Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 120 for ind2 (0.08 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

      const TorchAvgPoolData pool = GetTorchAvgPoolData(op);
    
      const auto values = GetPadOpPaddingValues(pool);
    
      llvm::SmallVector<int32_t> padding_vec(8, 0);  // NHWC
      for (auto [ind, val] : llvm::enumerate(values)) {
        padding_vec[ind + 2] = val;
      }
    
      auto padding_shape = RankedTensorType::get({4, 2}, builder.getI32Type());
      return DenseIntElementsAttr::get(padding_shape, padding_vec);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/lstm_utils.h

                                        OpBuilder* builder);
    
    LogicalResult ConvertKerasLSTMLayer(mlir::func::FuncOp func_op,
                                        OpBuilder* builder, bool indy);
    
    }  // end namespace TFL
    }  // end namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. test/nilptr.go

    	var t *T
    	println(t.i) // should crash
    }
    
    type T1 struct {
    	T
    }
    
    type T2 struct {
    	*T1
    }
    
    func p11() {
    	t := &T2{}
    	p := &t.i
    	println(*p)
    }
    
    // ADDR(DOT(IND(p))) needs a check also
    func p12() {
    	var p *T = nil
    	println(*(&((*p).i)))
    }
    
    // Tests suggested in golang.org/issue/6080.
    
    func p13() {
    	var x *[10]int
    	y := x[:]
    	_ = y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. test/nilptr_aix.go

    	var t *T
    	println(t.i) // should crash
    }
    
    type T1 struct {
    	T
    }
    
    type T2 struct {
    	*T1
    }
    
    func p11() {
    	t := &T2{}
    	p := &t.i
    	println(*p)
    }
    
    // ADDR(DOT(IND(p))) needs a check also
    func p12() {
    	var p *T = nil
    	println(*(&((*p).i)))
    }
    
    // Tests suggested in golang.org/issue/6080.
    
    func p13() {
    	var x *[10]int
    	y := x[:]
    	_ = y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #define Y1    V3
    #define T0    V4
    #define T1    V5
    
    // Constants
    #define P0    V30
    #define P1    V31
    // func p256MulAsm(res, in1, in2 *p256Element)
    TEXT ·p256Mul(SB), NOSPLIT, $0-24
    	MOVD res+0(FP), res_ptr
    	MOVD in1+8(FP), x_ptr
    	MOVD in2+16(FP), y_ptr
    	MOVD $16, R16
    	MOVD $32, R17
    
    	MOVD $p256mul<>+0x00(SB), CPOOL
    
    
    	LXVD2X (R0)(x_ptr), X0
    	LXVD2X (R16)(x_ptr), X1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. pkg/controlplane/reconcilers/lease.go

    	}
    
    	if !formatCorrect || !ipCorrect {
    		// repopulate the addresses according to the expected IPs from etcd
    		e.Subsets[0].Addresses = make([]corev1.EndpointAddress, len(masterIPs))
    		for ind, ip := range masterIPs {
    			e.Subsets[0].Addresses[ind] = corev1.EndpointAddress{IP: ip}
    		}
    
    		// Lexicographic order is retained by this step.
    		e.Subsets = endpointsv1.RepackSubsets(e.Subsets)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

            groovyDependency = groovyModuleDependency("groovy", versionNumber)
        }
    
        def "compileGoodCode"() {
            if (module == "groovy-all") {
                // No groovy-all for indy variant
                Assume.assumeTrue(versionClassifier != "indy")
            }
            groovyDependency = groovyModuleDependency(module, versionNumber)
    
            expect:
            succeeds("compileGroovy")
            groovyClassFile("Person.class").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  8. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

            def comp1 = Stub(TestComponent)
            def publication1 = publication(comp1, id1)
            def id2 = DefaultModuleVersionIdentifier.newId("group", "other-2", "2")
            def comp2 = Stub(TestComponent)
            def publication2 = publication(comp2, id2)
    
            def c1 = Stub(Capability) {
                getGroup() >> 'org.test'
                getName() >> 'foo'
                getVersion() >> '1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CredentialsProviderFactoryTest.groovy

        }
    
        def "creates distinct providers for different identities"() {
            expect:
            factory.provide(PasswordCredentials, 'id') != factory.provide(PasswordCredentials, 'id2')
        }
    
        def "allows same identity for different credential types"() {
            expect:
            factory.provide(PasswordCredentials, 'id') != factory.provide(AwsCredentials, 'id')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. src/strconv/itoa.go

    		// Base is a power of 2 and 2 <= base <= len(digits) where len(digits) is 36.
    		// The largest power of 2 below or equal to 36 is 32, which is 1 << 5;
    		// i.e., the largest possible shift count is 5. By &-ind that value with
    		// the constant 7 we tell the compiler that the shift count is always
    		// less than 8 which is smaller than any register width. This allows
    		// the compiler to generate better code for the shift operation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top