Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,064 for output2 (0.49 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
        # respectively. These paths will be cleaned up after each test case.
        self._input_saved_model_path = self.create_tempdir('input').full_path
        self._output_saved_model_path = self.create_tempdir('output').full_path
        # Extra output path occasionally used for comparing two different
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

                    void myAction() {
                        def output = outputFile.get().asFile
                        output << launcher1.get().executablePath
                        output << launcher2.get().executablePath
                    }
                }
    
                tasks.register("myToolchainTask", ToolchainTask) {
                    outputFile = layout.buildDirectory.file("output.txt")
                    launcher1 = javaToolchains.launcherFor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.mlir

      func.func @serving_default(%arg0: tensor<1024x1024xf32> {tf_saved_model.index_path = ["input_tensor"]}) -> (tensor<1024x3xf32> {tf_saved_model.index_path = ["output1"]}, tensor<1024x3xf32> {tf_saved_model.index_path = ["output2"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input_tensor:0", outputs = "PartitionedCall:0"}, tf_saved_model.exported_names = ["serving_default"]} {
        %0 = stablehlo.constant dense<1.000000e+03> : tensor<1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  4. src/os/exec/exec_test.go

    	c.Env = append(os.Environ(), "CGO_ENABLED=0")
    	if output, err := c.CombinedOutput(); err != nil {
    		t.Logf("go build -o %s read3.go\n%s", exe, output)
    		t.Fatalf("go build failed: %v", err)
    	}
    
    	// Use a deadline to try to get some output even if the program hangs.
    	ctx := context.Background()
    	if deadline, ok := t.Deadline(); ok {
    		// Leave a 20% grace period to flush output, which may be large on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  5. tensorflow/c/kernels_test.cc

                output->DebugString(100));
    }
    
    REGISTER_OP("AllocateOutputOp0").Output("output1: float");
    
    TEST_F(DeviceKernelOpTest, TestAllocateEmptyOutput) {
      auto my_compute_func = [](void* kernel, TF_OpKernelContext* ctx) {
        TF_Status* s = TF_NewStatus();
        // Allocate empty output
        int64_t dim = 0;
        TF_Tensor* output = TF_AllocateOutput(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            Args:
              input_tensor: Input tensor to matmul with the filter.
    
            Returns:
              A 'output' -> output tensor mapping
            """
            out = math_ops.matmul(input_tensor, random_tensor_gen_fn((2, 3)))
            out = math_ops.matmul(out, random_tensor_gen_fn((3, 4)))
            return {'output': out}
    
        model = TwoMatmulModel()
        input_shape = (1, 2)
    
        save.save(
            model,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          )
    
          inputs = {'input_vocabs': input_vocabs_placeholder}
          outputs = {
              'lookup': lookup_tensor,
              'output': output_tensor,
          }
    
          self._save_tf1_model(
              sess,
              output_path,
              signature_def_key,
              tags,
              inputs=inputs,
              outputs=outputs,
              init_op=lookup_ops.tables_initializer(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. test/copy.go

    	input8, output8 = output8, input8
    	input16, output16 = output16, input16
    	input32, output32 = output32, input32
    	input64, output64 = output64, input64
    	in := 0
    	out := 13
    	for i := range input8 {
    		input8[i] = u8(in)
    		output8[i] = u8(out)
    		outputS[i] = u8(out)
    		input16[i] = u16(in)
    		output16[i] = u16(out)
    		input32[i] = u32(in)
    		output32[i] = u32(out)
    		input64[i] = u64(in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/input_output_names_attr.mlir

    // Tests input and output names from FlatBuffer are added to `tf.entry_function` attribute.
    
    // CHECK-LABEL: @main
    func.func @main(%arg0: tensor<4xi8>, %arg1: tensor<4xi32>) -> (tensor<4xi32>, tensor<4xi8>)
    // CHECK: attributes {tf.entry_function = {inputs = "input0,input1", outputs = "output0,output1"}}
    attributes {tf.entry_function = {inputs = "input0,input1", outputs = "output0,output1"}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 726 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/multi_output_op.json

              ],
              "name": "output0",
              "quantization": {
              }
            },
            {
              "shape": [
                128,
                32,
                32,
                3
              ],
              "name": "output1",
              "quantization": {
              }
            }
          ],
          "inputs": [
            0,
            1
          ],
          "outputs": [
            2,
            3
          ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 03 00:08:31 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top