Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for ij (0.18 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/projectStructure/KotlinAnchorModuleProvider.kt

    /**
     * [KotlinAnchorModuleProvider] provides modules which contain dependencies of libraries.
     *
     * In the IJ monorepo, anchor modules are required for navigation from Kotlin compiler library sources to IJ platform sources. The Kotlin
     * compiler depends on the IJ platform, but this dependency is not represented as JARs in the monorepo, but rather by certain monorepo
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/linalg_grad_test.cc

      auto y = Einsum(scope_, {x}, "ij->ji");
      TensorShape y_shape({3, 2});
      RunTest({x}, {x_shape}, {y}, {y_shape});
    }
    
    TEST_F(LinalgGradTest, Einsum_TransposeBroadcast) {
      TensorShape x_shape({3, 2, 3});
      Output x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      auto y = Einsum(scope_, {x}, "...ij->...ji");
      TensorShape y_shape({3, 3, 2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/references/ReadWriteAccessCheckerDescriptorsImpl.kt

            // Various parts of the IJ plugin use the read/write access checker without being aware that it uses `analyze` under the hood. For
            // now, it makes more sense to allow analysis on EDT/from write actions here, as there are many such usages in the IJ plugin.
            return allowAnalysisOnEdt {
                allowAnalysisFromWriteAction {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. test/codegen/switch.go

    		return 1
    	case int16:
    		return 2
    	case int32:
    		return 3
    	case int64:
    		return 4
    	}
    	return 7
    }
    
    type I interface {
    	foo()
    }
    type J interface {
    	bar()
    }
    type IJ interface {
    	I
    	J
    }
    type K interface {
    	baz()
    }
    
    // use a runtime call for type switches to interface types.
    func interfaceSwitch(x any) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:39:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/analysis-api-fir-generator/build.gradle.kts

        implementation(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
    
        /*
         We do not need guava in the generator, but because of a bug in the IJ project importing, we need to have a dependency on intellijCore
         the same as it is in `:fir:tree:tree-generator` module to the project be imported correctly
         */
        compileOnly(intellijCore())
        compileOnly(libs.guava)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 18 18:42:40 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/map.go

    func nlTitle(c *context) bool {
    	// From CLDR:
    	// # Special titlecasing for Dutch initial "ij".
    	// ::Any-Title();
    	// # Fix up Ij at the beginning of a "word" (per Any-Title, notUAX #29)
    	// [:^WB=ALetter:] [:WB=Extend:]* [[:WB=MidLetter:][:WB=MidNumLet:]]? { Ij } → IJ ;
    	if c.src[c.pSrc] != 'I' && c.src[c.pSrc] != 'i' {
    		return title(c)
    	}
    
    	if !c.writeString("I") || !c.next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/webhook/certs_test.go

    aG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOdm+G8iCaVA8kyq
    ORYgmuRJIsuwgnfFKJXkqJkI4ec2RrCG4M/Uao2kzCxdI6m84fYsdg0Ep2PsN9i6
    jzNrDitfv2rZngmvJuW72a0aA8T9k96UB08ntAvViO46qLJjKrkRWpGmNTg8Q0T1
    hfQkYIRRetjXB3587VtqzIhGLbg0ZGRrKSS/weTgMxIC6+Ij/EyjJakroWkIYudn
    RGaNKSdSHuLqfMcVynqKnzt1klQ3kaY/59LWEgC4TgnRp9ETGr+cH2ZsXX2aSlIQ
    a3MRX3ogweXO8XZZ84h62OZakkDwh8QEG0tYzGleGnYcQ8xeereUVOv+Xlj2eCL5
    U0bWJjcCAwEAAaNVMFMwCQYDVR0TBAIwADALBgNVHQ8EBAMCBeAwHQYDVR0lBBYw
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 14:39:30 UTC 2022
    - 16K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/linalg_grad.cc

      //
      // Proof: For unary einsum equations involving only transpose ("ij->ji") and
      //   traces ("ii->i"), the linear mapping's Jacobian at input x is given
      //   by the function itself. We can verify that the linear map given by the
      //   VJP are einsums with the equations "ji->ij" and "i->ii" respectively,
      //   where the latter represents 'un-tracing', or filling the diagonal with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  9. src/regexp/testdata/basic.dat

    E	a|b|c|d|e		e		(0,1)
    E	(a|b|c|d|e)f		ef		(0,2)(0,1)
    E	((a*|b))*		-		(0,0)(0,0)(0,0)
    BE	abcd*efg		abcdefg		(0,7)
    BE	ab*			xabyabbbz	(1,3)
    BE	ab*			xayabbbz	(1,2)
    E	(ab|cd)e		abcde		(2,5)(2,4)
    BE	[abhgefdc]ij		hij		(0,3)
    E	(a|b)c*d		abcd		(1,4)(1,2)
    E	(ab|ab*)bc		abc		(0,3)(0,1)
    E	a([bc]*)c*		abc		(0,3)(1,3)
    E	a([bc]*)(c*d)		abcd		(0,4)(1,3)(3,4)
    E	a([bc]+)(c*d)		abcd		(0,4)(1,3)(3,4)
    E	a([bc]*)(c+d)		abcd		(0,4)(1,2)(2,4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/einsum.mlir

      %0 = "tf.Einsum"(%arg0, %arg1) {T = "tfdtype$DT_FLOAT", equation = "ij,?zw->kq->i"}: (tensor<4x5xf32>, tensor<5xf32>) -> tensor<4xf32>
      func.return %0 : tensor<4xf32>
    // CHECK-LABEL: einsum_illegal_no_match
    // CHECK: %[[v0:.*]] = "tf.Einsum"(%arg0, %arg1) <{equation = "ij,?zw->kq->i"}> {T = "tfdtype$DT_FLOAT"} : (tensor<4x5xf32>, tensor<5xf32>) -> tensor<4xf32>
    // CHECK: return %[[v0]]
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top