Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for Fpack (0.04 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/tests/get-alternative-subgraph.mlir

      }
    
      func.func private @func_2_CPU_FLOAT(%arg0: tensor<1xf32>, %arg1: tensor<1xf32>) -> tensor<2x1xf32> attributes {tac.device = "CPU", tac.inference_type = "FLOAT", tac.interface_name = "func_2"} {
        %0 = "tfl.pack"(%arg0, %arg1) {axis = 0 : i32, tac.device = "CPU", tac.inference_type = "FLOAT", values_count = 2 : i32} : (tensor<1xf32>, tensor<1xf32>) -> tensor<2x1xf32>
        func.return %0 : tensor<2x1xf32>
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

      return builder.create<TF::PadV2Op>(
          loc, RankedTensorType::get(output_shape, builder.getI8Type()), input,
          temp_padding,
          CreateScalarConstValue<int8_t>(builder, loc, input_zp_value));
    }
    
    // Pack value using following formula:
    // Consider value of rank=4, pack_dim=1 for example.
    //
    // if value.shape[1] % 2:
    //   value = pad(value, [0, 1, 0, 0])
    //
    // slice_shape = value.shape
    // slice_shape[1] /= 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/runtime/mgcscavenge_test.go

    		}
    		find(0, 0)
    	})
    }
    
    func TestScavChunkDataPack(t *testing.T) {
    	if !CheckPackScavChunkData(1918237402, 512, 512, 0b11) {
    		t.Error("failed pack/unpack check for scavChunkData 1")
    	}
    	if !CheckPackScavChunkData(^uint32(0), 12, 0, 0b00) {
    		t.Error("failed pack/unpack check for scavChunkData 2")
    	}
    }
    
    func FuzzPIController(f *testing.F) {
    	isNormal := func(x float64) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/cmd/link/link_test.go

    	runGo("tool", "compile", "-importcfg="+importcfgfile, "-p=main", "main.go")
    	runGo("tool", "pack", "c", "main.a", "main.o")
    
    	// Add an extra section with a short, non-.o name.
    	// This simulates an alternative build system.
    	write(".facts", "this is not an object file")
    	runGo("tool", "pack", "r", "main.a", ".facts")
    
    	// Verify that the linker does not attempt
    	// to compile the extra section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental.cc

          // One of the inputs we're trying to pack is on a custom device. We'll let
          // the first custom device we see handle all of the packing.
          auto* custom_device_handle =
              tensorflow::down_cast<tensorflow::CustomDeviceTensorHandle*>(
                  unwrapped_handle);
          tensorflow::ImmediateExecutionTensorHandle* result;
          status->status = custom_device_handle->device()->Pack(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

        # Add `AssetFileDef`s to the collection so that correct values are fed to
        # the tensors that accept asset file paths.
        for asset_file_def in asset_file_defs:
          asset_any_proto = Any()
          asset_any_proto.Pack(asset_file_def)
          ops.add_to_collection(
              saved_model_constants.ASSETS_KEY,
              asset_any_proto,
          )
    
        model_saver = None
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_experimental.h

      // custom device.
      //
      // Many devices will want to simply return an "unimplemented" status
      // here. This is the default behavior if `pack` is null when passed to
      // TFE_RegisterCustomDevice.
      TFE_TensorHandle* (*pack)(TFE_Context* context, TFE_TensorHandle** handles,
                                int num_handles, TF_Status* s,
                                void* device_info) = nullptr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/pgen.go

    	// them altogether.
    	ap = a.Needzero()
    	bp = b.Needzero()
    	if ap != bp {
    		return ap
    	}
    
    	// Sort variables in descending alignment order, so we can optimally
    	// pack variables into the frame.
    	if a.Type().Alignment() != b.Type().Alignment() {
    		return a.Type().Alignment() > b.Type().Alignment()
    	}
    
    	// Sort normal variables before open-coded-defer slots, so that the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top