Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for copy_v2 (0.23 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

            # Construct the destination assets file path.
            curr_dst_dir = curr_dir.replace(src_assets_path, dst_assets_path)
            dst_asset_file = file_io.join(curr_dst_dir, asset_file_name)
    
            file_io.copy_v2(src_asset_file, dst_asset_file)
            logging.info(
                'Copied asset file: %s -> %s', src_asset_file, dst_asset_file
            )
    
    
    def _validate_representative_dataset(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

                    from file('source1')
                    into file('target')
                }
    
                task copy2(type: Copy) {
                    from file('source2')
                    into file('target')
                }
    
                task copyAll {
                    dependsOn copy1, copy2
                }
            """
    
            when:
            result = runWithMostRecentFinalRelease(taskPath)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

            "TaskProvider"                   | "copy1"                | "[copy1]"
            "Array[Task, TaskProvider]"      | "copy1.get(), copy2"   | "[copy1, copy2]"
            "Collection(Task, TaskProvider)" | "[copy1.get(), copy2]" | "[copy1, copy2]"
        }
    
        def "using a tasks from another project as 'files(#type)' input is prohibited"() {
            settingsFile << """
                include ':foo'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/ops.h

          typedef typename RealType<T>::type RealT;
          Tensor t(DataTypeToEnum<RealT>::v(),
                   TensorShape{static_cast<int>(v.size())});
          std::copy_n(v.begin(), v.size(), t.flat<RealT>().data());
          tensor = t;
        }
    
        /// Construct from a initializer list of scalars and an explicit shape.
        template <typename T, typename = typename std::enable_if<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/codegen.cc

    // parameter buffers.
    std::vector<BufferInfo> ExtractEntryParamBufferInfos(
        const std::vector<BufferInfo>& buffer_infos) {
      std::vector<BufferInfo> result;
      std::copy_if(buffer_infos.begin(), buffer_infos.end(),
                   std::back_inserter(result), [](const BufferInfo& buffer_info) {
                     return buffer_info.is_entry_parameter();
                   });
      return result;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            copy.getOrNull() == null
    
            def state2 = property.unpackState()
            def copy2 = managedFactory().fromState(property.publicType(), state2)
            !copy2.is(property)
            copy2.get() == someValue()
    
            property.set(someOtherValue())
            copy.getOrNull() == null
            copy2.get() == someValue()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    // CHECK:           %[[VALUES:.*]], %[[INDICES:.*]] = "tfl.topk_v2"(%[[ARG]], %[[K]]) : (tensor<3x10xf32>, tensor<i32>) -> (tensor<3x5xf32>, tensor<3x5xi32>)
    // CHECK:           return %[[VALUES]] : tensor<3x5xf32>
    // CHECK:         }
    func.func @optimizeTopKOnlyValues(%arg: tensor<3x10xf32>) -> tensor<3x5xf32>{
      %K = arith.constant dense<10> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      TRANSPOSE = 39,
      MEAN = 40,
      SUB = 41,
      DIV = 42,
      SQUEEZE = 43,
      UNIDIRECTIONAL_SEQUENCE_LSTM = 44,
      STRIDED_SLICE = 45,
      BIDIRECTIONAL_SEQUENCE_RNN = 46,
      EXP = 47,
      TOPK_V2 = 48,
      SPLIT = 49,
      LOG_SOFTMAX = 50,
      // DELEGATE is a special op type for the operations which are delegated to
      // other backends.
      // WARNING: Experimental interface, subject to change
      DELEGATE = 51,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %0, %1 = "tfl.topk_v2"(%arg0, %arg1) : (tensor<8xf32>, tensor<i32>) -> (tensor<?xf32>, tensor<?xi32>)
      func.return %0, %1: tensor<?xf32>, tensor<?xi32>
    }
    
    // -----
    
    // CHECK-LABEL: topk
    func.func @topk(%arg0: tensor<*xf32>, %arg1: tensor<i32>) -> (tensor<*xf32>, tensor<*xi32>) {
      %0, %1 = "tfl.topk_v2"(%arg0, %arg1) : (tensor<*xf32>, tensor<i32>) -> (tensor<*xf32>, tensor<*xi32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema.fbs

      TRANSPOSE = 39,
      MEAN = 40,
      SUB = 41,
      DIV = 42,
      SQUEEZE = 43,
      UNIDIRECTIONAL_SEQUENCE_LSTM = 44,
      STRIDED_SLICE = 45,
      BIDIRECTIONAL_SEQUENCE_RNN = 46,
      EXP = 47,
      TOPK_V2 = 48,
      SPLIT = 49,
      LOG_SOFTMAX = 50,
      // DELEGATE is a special op type for the operations which are delegated to
      // other backends.
      // WARNING: Experimental interface, subject to change
      DELEGATE = 51,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top