Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 410 for Unpack (0.14 sec)

  1. tensorflow/compiler/mlir/lite/tests/canonicalize.mlir

      %0:2 = "tfl.unpack"(%arg0) {axis = 0 : i32, num = 2 : i32} : (tensor<2x5xf32>) -> (tensor<5xf32>, tensor<5xf32>)
      %1 = "tfl.pack"(%0#0, %0#1) {axis = 0 : i32, values_count = 2 : i32} : (tensor<5xf32>, tensor<5xf32>) -> (tensor<2x5xf32>)
      func.return %1, %0#0: tensor<2x5xf32>, tensor<5xf32>
      // CHECK: %[[UNPACK:.*]]:2 = "tfl.unpack"
      // CHECK-NOT: pack
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

                            f.parentFile.mkdirs()
                            f.text = val
                        }
                    }
                }
            """
        }
    
        def "emits pack/unpack and store/load operations for local"() {
            def localCache = new TestBuildCache(file("local-cache"))
            settingsFile << localCache.localCacheConfiguration()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/CommonsTarPacker.java

                PackerUtils.packEntry(input, tarOutput, buffer);
                tarOutput.closeArchiveEntry();
            }
            tarOutput.close();
        }
    
        @Override
        public void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException {
            TarArchiveInputStream tarInput = new TarArchiveInputStream(input.openInput());
            while (true) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/wrapper-workflow.graffle

    D2146Styl{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf100 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0 \f0\fs28 \cf0 2. Store and \ unpack \ distribution}WrapNOBounds{{127.0625, 182.78434999999999}, {91, 47}}ClassShapedGraphicFi{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf100 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerPermissionTest.groovy

            def unixMode = Integer.parseInt(mode, 8)
    
            when:
            pack output, prop(FILE, sourceOutputFile)
    
            then:
            1 * filePermissionAccess.getUnixMode(sourceOutputFile) >> unixMode
            _ * sourceOutputFile._
            0 * _
    
            when:
            def input = new ByteArrayInputStream(output.toByteArray())
            unpack input, prop(FILE, targetOutputFile)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

                outputFile = "${sourceSets.main.get().output.resourcesDir}/output.js"
                sourceMap = true
            }
        }
        val unpackKotlinJsStdlib by registering {
            group = "build"
            description = "Unpack the Kotlin JavaScript standard library"
            val outputDir = file("$buildDir/$name")
            inputs.property("compileClasspath", configurations.compileClasspath.get())
            outputs.dir(outputDir)
            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ZipPacker.java

                zipOutput.putNextEntry(entry);
                PackerUtils.packEntry(input, zipOutput, buffer);
                zipOutput.closeEntry();
            }
            zipOutput.close();
        }
    
        @Override
        public void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException {
            ZipInputStream zipInput = new ZipInputStream(input.openInput());
            while (true) {
                ZipEntry entry = zipInput.getNextEntry();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxy.java

         */
        public static Map<String, Object> unpackProperties(Object parameter) {
            if (parameter == null) {
                throw new IllegalArgumentException("Cannot unpack properties from null");
            }
    
            Class<?> parameterInterface = getConsumerParameterInterface(parameter);
    
            // Intentionally including methods from the potential super-interfaces,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:27:26 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/JTarPacker.java

                tarOutput.putNextEntry(entry);
                PackerUtils.packEntry(input, tarOutput, buffer);
            }
            tarOutput.close();
        }
    
        @Override
        public void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException {
            TarInputStream tarInput = new TarInputStream(input.openInput());
            while (true) {
                TarEntry entry = tarInput.getNextEntry();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top