Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for div1 (0.33 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

      DependentInductionVar div0 =
          CreateDependentLoopInvariantValue(root, "div0", "loop", iv.loop_cond, 0);
      DependentInductionVar div1 =
          CreateDependentLoopInvariantValue(root, "div1", "loop", iv.loop_cond, 0);
      FixupSourceAndSinkEdges(root.graph());
      TF_ASSERT_OK(root.graph()->UpdateEdge(div1.induction_var.node(), 0,
                                            div0.latch.output_true.node(), 0));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

                  (MHLO_AddOp
                    (MHLO_DivOp:$div
                      (MHLO_SubtractOp $arg0, $rem2),
                      $arg1b),
                    (MHLO_ConstantOp $cst_neg1)),
                  $div1)),
              (TF_FloorDivOp $arg0, $arg1),
              [(ValueEquals<"0.0"> $cst),
               (ValueEquals<"-1.0"> $cst_neg1),
               (SameValue $div, $div1),
               (SameValue $rem, $rem1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/anames.go

    	"BLTZAL",
    	"BNE",
    	"BREAK",
    	"CLO",
    	"CLZ",
    	"CMOVF",
    	"CMOVN",
    	"CMOVT",
    	"CMOVZ",
    	"CMPEQD",
    	"CMPEQF",
    	"CMPGED",
    	"CMPGEF",
    	"CMPGTD",
    	"CMPGTF",
    	"DIV",
    	"DIVD",
    	"DIVF",
    	"DIVU",
    	"DIVW",
    	"GOK",
    	"LL",
    	"LLV",
    	"LUI",
    	"MADD",
    	"MOVB",
    	"MOVBU",
    	"MOVD",
    	"MOVDF",
    	"MOVDW",
    	"MOVF",
    	"MOVFD",
    	"MOVFW",
    	"MOVH",
    	"MOVHU",
    	"MOVW",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/anames.go

    	"CMPEQF",
    	"CMPGED",
    	"CMPGEF",
    	"CMPGTD",
    	"CMPGTF",
    	"LU12IW",
    	"LU32ID",
    	"LU52ID",
    	"PCALAU12I",
    	"PCADDU12I",
    	"JIRL",
    	"BGE",
    	"BLT",
    	"BLTU",
    	"BGEU",
    	"DIV",
    	"DIVD",
    	"DIVF",
    	"DIVU",
    	"DIVW",
    	"LL",
    	"LLV",
    	"LUI",
    	"MOVB",
    	"MOVBU",
    	"MOVD",
    	"MOVDF",
    	"MOVDW",
    	"MOVF",
    	"MOVFD",
    	"MOVFW",
    	"MOVH",
    	"MOVHU",
    	"MOVW",
    	"MOVWD",
    	"MOVWF",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    // Fusing-LABEL: FusingdivRelu
    // Fusing:  %[[div:[0-9].*]] = tfl.div %arg0, %arg1 {fused_activation_function = "NONE"} : tensor<1xf32>
    // Fusing:  %[[div1:[0-9].*]] = tfl.div %arg0, %[[div]] {fused_activation_function = "RELU"} : tensor<1xf32>
    // Fusing:  %[[relu:[0-9].*]] = "tfl.relu"(%arg0) : (tensor<1xf32>) -> tensor<1xf32>
    // Fusing:  %[[div2:[0-9].*]] = tfl.div %[[relu]], %[[div1]] {fused_activation_function = "RELU6"} : tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            flatten(set) == [parent.path, "1:dir1", "1:common", "2:dir2", "2:dir3"]
        }
    
        def "creates from files where one file is ancestor of the others"() {
            def dir1 = tmpDir.createDir("dir1")
            def dir2 = dir1.createDir("dir2")
    
            expect:
            def set = from(dir2, dir1)
            set.contains(dir1)
            set.contains(dir2)
            set.contains(dir1.file("child"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

            flatten(set) == [parent.path, "1:common", "2:dir2", "3:child", "2:dir3", "3:child", "1:dir1", "2:child"]
        }
    
        def "creates from files where one file is ancestor of the others"() {
            def dir1 = tmpDir.createDir("dir1")
            def dir2 = dir1.createDir("dir2")
            def dir1Child = dir1.file("child")
            dir1Child.createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

        def "can determine a VS2017 version of an install from command line"() {
            def dir1 = tmpDir.createDir("dir1")
            def dir2 = tmpDir.createDir("dir2")
            def dir3 = tmpDir.createDir("dir3")
    
            given:
            vswhereInstall(dir1, "15.3.26730.16")
            vswhereInstall(dir2, "14.0")
            vswhereInstall(dir3, "12.0")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultSourceDirectorySetTest.groovy

        }
    
        void addsResolvedSourceDirectory() {
            when:
            set.srcDir 'dir1'
    
            then:
            set.srcDirs equalTo([new File(testDir, 'dir1')] as Set)
        }
    
        void addsResolvedSourceDirectories() {
            when:
            set.srcDir {-> ['dir1', 'dir2'] }
    
            then:
            set.srcDirs equalTo([new File(testDir, 'dir1'), new File(testDir, 'dir2')] as Set)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/SingleIncludePatternFileTreeSpec.groovy

            1 * visitor.visitDir({ it.file == tempDir.file("dir2/dir1") })
            1 * visitor.visitDir({ it.file == tempDir.file("dir2/dir2") })
            1 * visitor.visitFile({ it.file == tempDir.file("dir2/dir1/file1") })
            1 * visitor.visitFile({ it.file == tempDir.file("dir2/dir1/file2") })
            1 * visitor.visitFile({ it.file == tempDir.file("dir2/dir1/file3") })
            0 * _
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top