Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Fpack (0.41 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

                    when (filePropertyType) {
                        OutputFilePropertyType.DIRECTORY -> dir(pack(propertyValue))
                        OutputFilePropertyType.DIRECTORIES -> dirs(pack(propertyValue))
                        OutputFilePropertyType.FILE -> file(pack(propertyValue))
                        OutputFilePropertyType.FILES -> files(pack(propertyValue))
                    }
                }.run {
                    withPropertyName(propertyName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

      // Import input_model to a MLIR module
      flatbuffers::FlatBufferBuilder input_builder;
      flatbuffers::Offset<tflite::Model> input_model_location =
          tflite::Model::Pack(input_builder, &input_model);
      tflite::FinishModelBuffer(input_builder, input_model_location);
    
      std::string serialized_model(
          reinterpret_cast<const char*>(input_builder.GetBufferPointer()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

            "//tensorflow/lite/tools/optimize:testdata/mixed16x8.bin",
            "//tensorflow/lite/tools/optimize:testdata/multi_input_add_reshape.bin",
            "//tensorflow/lite/tools/optimize:testdata/pack.bin",
            "//tensorflow/lite/tools/optimize:testdata/single_avg_pool_min_minus_5_max_plus_5.bin",
            "//tensorflow/lite/tools/optimize:testdata/single_conv_no_bias.bin",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

      %2 = "tfl.add"(%arg0, %arg3) {fused_activation_function = "RELU6", per_device_costs = {CPU = 5.0 : f32, GPU = 1.0 : f32}, tac.device = "GPU"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
      %3 = "tfl.pack"(%1, %2) {axis = 0 : i32, per_device_costs = {CPU = 2.0 : f32, GPU = -1.0 : f32}, values_count = 2 : i32, tac.device = "CPU"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<2x1xf32>
      func.return %3 : tensor<2x1xf32>
    })";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // CHECK: "tfl.pack"(%arg0, %arg1) <{axis = 0 : i32, values_count = 2 : i32}>
      %0 = "tfl.pack"(%arg0, %arg1) {axis = 0 : i32, values_count = 2 : i32} : (tensor<2x!quant.uniform<i8:f32, 0.1>>, tensor<2x!quant.uniform<i8:f32, 0.1>>) -> tensor<2x2x!quant.uniform<i8:f32, 0.1>>
      func.return %0 : tensor<2x2x!quant.uniform<i8:f32, 0.1>>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

      // Import input_model to a MLIR module
      flatbuffers::FlatBufferBuilder input_builder;
      flatbuffers::Offset<tflite::Model> input_model_location = tflite::Model::Pack(
          input_builder, CreateMutableModelFromFile(input_model).get());
      tflite::FinishModelBuffer(input_builder, input_model_location);
    
      std::string serialized_model(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. go.mod

    	github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
    	github.com/pkg/errors v0.9.1 // indirect
    	github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
    	github.com/quic-go/qpack v0.4.0 // indirect
    	github.com/rivo/uniseg v0.4.6 // indirect
    	github.com/rogpeppe/go-internal v1.12.0 // indirect
    	github.com/russross/blackfriday/v2 v2.1.0 // indirect
    	github.com/sagikazarmark/locafero v0.4.0 // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        auto result_ty = tensorflow::GetTypeFromTFTensorShape(
            result_shape, list_element_ty.getElementType());
    
        // If the list is empty, directly create the final result instead of
        // creating the tf.Pack op. tf.Pack op requires at least one operand.
        if (tensors.empty()) {
          tensorflow::Tensor tensor(list->element_dtype,
                                    tensorflow::TensorShape(result_shape));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // CHECK:  return
    }
    
    func.func @pack2Tensors(%arg0: tensor<2xi32>, %arg1: tensor<2xi32>) -> tensor<2x2xi32> {
      %0 = "tf.Pack"(%arg0, %arg1) : (tensor<2xi32>, tensor<2xi32>) -> tensor<2x2xi32>
      func.return %0 : tensor<2x2xi32>
    
    // CHECK-LABEL: pack2Tensors
    // CHECK: "tfl.pack"(%arg0, %arg1) <{axis = 0 : i32, values_count = 2 : i32}> : (tensor<2xi32>, tensor<2xi32>) -> tensor<2x2xi32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    	}
    
    	// Pack into archive in objdir directory.
    	// If the Go compiler wrote an archive, we only need to add the
    	// object files for non-Go sources to the archive.
    	// If the Go compiler wrote an archive and the package is entirely
    	// Go sources, there is no pack to execute at all.
    	if len(objects) > 0 {
    		if err := BuildToolchain.pack(b, a, objpkg, objects); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top