Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for output_1 (0.23 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/output.txt

    Jacek Ewertowski <******@****.***> 1701261434 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 378 bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsRenderer.java

                hiddenNonBuildable = true;
                return;
            }
            StyledTextOutput output = builder.getOutput();
            GraphRenderer renderer = new GraphRenderer(output);
            renderer.visit(output1 -> {
                output1.withStyle(Identifier).text(component.getName());
                output1.withStyle(Description).text(" - Components that depend on " + component.getDisplayName());
            }, true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/cc/tools/freeze_saved_model_test.cc

      std::unordered_set<string> outputs;
      TF_ASSERT_OK(FreezeSavedModel(saved_model_bundle, &frozen_graph_def, &inputs,
                                    &outputs));
      std::unordered_set<string> expected_inputs = {"input0:0", "input1:0"};
      std::unordered_set<string> expected_outputs = {"output0:0", "output1:0"};
      EXPECT_EQ(expected_inputs, inputs);
      EXPECT_EQ(expected_outputs, outputs);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/TestLauncherDebugCrossVersionTest.groovy

            setup:
            sampleBuildWithTest()
    
            when:
            String output1 = runTaskAndTestClassUsing(firstDebug)
            String output2 = runTaskAndTestClassUsing(secondDebug)
    
            then:
            assertTestDebugMode(output1, firstDebug)
            assertTestDebugMode(output2, secondDebug)
    
            where:
            scenarioName                     | firstDebug | secondDebug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:00:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/c/ops_test.cc

      TF_OpDefinitionBuilderAddInput(builder, "input1: uint8");
      TF_OpDefinitionBuilderAddInput(builder, "input2: uint32");
      TF_OpDefinitionBuilderAddOutput(builder, "output1: uint8");
      TF_OpDefinitionBuilderAddOutput(builder, "output2: uint8");
      TF_OpDefinitionBuilderSetShapeInferenceFunction(
          builder, &TF_ShapeInferenceContextSetUnknownShape);
      TF_Status* status = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/ops.h

      Node* node() const { return output_.node(); }
      std::string node_name() const { return node_name_; }
      int32 index() const { return node_name_.empty() ? output_.index() : index_; }
      DataType data_type() const { return data_type_; }
      Status status() const { return status_; }
      const Tensor& tensor() const { return tensor_; }
    
     private:
      Status status_;
      Output output_ = Output(Operation(nullptr), 0);
      Tensor tensor_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. test/fixedbugs/issue23545.go

    		panic("FAIL")
    	}
    }
    
    func dummyID(x int) [Size]interface{} {
    	var out [Size]interface{}
    	out[0] = x
    	return out
    }
    
    const Size = 32
    
    type OutputID [Size]interface{}
    
    //go:noinline
    func Get() OutputID {
    	return dummyID(1234)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 10 01:20:45 UTC 2018
    - 557 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/executor_tpuv1_island_coarsening.mlir

        %outputs_6, %control_6 = tf_executor.island wraps "tf.AddV2"(%outputs_0, %outputs_3) {_xla_compile_device_type = "TPU", _replication_info = "cluster2"} : (tensor<i32>, tensor<i32>) -> tensor<i32>
        %outputs_7, %control_7 = tf_executor.island wraps "tf.AddV2"(%outputs_5, %outputs) {_xla_compile_device_type = "TPU", _replication_info = "cluster1"} : (tensor<i32>, tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 02 03:15:59 UTC 2022
    - 36.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/python/op_reg_gen.py

        for attr in all_dec_args.get('derived_attrs', []):
          py_str = attr.replace('"', "'")
          cxx_reg_code.append('.Attr("{}")'.format(py_str))
        for output_ in all_dec_args.get('outputs', []):
          cxx_reg_code.append('.Output("{}")'.format(output_))
        cxx_reg_code[-1] += ';\n'
        self.emit('\n    '.join(cxx_reg_code))
    
    
    class OpRegGen(transpiler.GenericTranspiler):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5K bytes
    - Viewed (0)
Back to top