Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 157 for op_names (0.14 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // Iterate over nodes in sorted order so that compiler fuel is deterministic.
      // We can't simply pass op_nodes().begin() and op_nodes().end() to the
      // std::vector constructor because they're not proper iterators, with
      // iterator_traits defined and so on.
      std::vector<Node*> sorted_nodes;
      for (Node* node : graph_->op_nodes()) {
        sorted_nodes.push_back(node);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled
    // with gcc 4.
    //
    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    #define GTEST_IMPL_CMP_HELPER_(op_name, op)\
    template <typename T1, typename T2>\
    AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
                                       const T1& val1, const T2& val2) {\
      if (val1 op val2) {\
        return AssertionSuccess();\
      } else {\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.yaml

        args:
          - name: podNames
            type: "[]string"
    
      - name: "ConflictingTelemetryWorkloadSelectors"
        code: IST0159
        level: Error
        description: "A Telemetry resource selects the same workloads as another Telemetry resource"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                                    PatternRewriter &rewriter) const override {
        Value result = op.getX();
        for (StringRef op_name : op.getOpNames().getAsValueRange<StringAttr>()) {
          std::string full_name = "tf." + op_name.str();
          // All ops in the sequences have the same result type as the original
          // result type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled
    // with gcc 4.
    //
    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    #define GTEST_IMPL_CMP_HELPER_(op_name, op)\
    template <typename T1, typename T2>\
    AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
                                       const T1& val1, const T2& val2) {\
      if (val1 op val2) {\
        return AssertionSuccess();\
      } else {\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    //sys	socket(af int32, typ int32, protocol int32) (handle Handle, err error) [failretval==InvalidHandle] = ws2_32.socket
    //sys	Setsockopt(s Handle, level int32, optname int32, optval *byte, optlen int32) (err error) [failretval==socket_error] = ws2_32.setsockopt
    //sys	Getsockopt(s Handle, level int32, optname int32, optval *byte, optlen *int32) (err error) [failretval==socket_error] = ws2_32.getsockopt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	testForceDetachMetric(t, int(initialForceDetachCount)+1, metrics.ForceDetachReasonOutOfService)
    }
    
    func Test_ReportMultiAttachError(t *testing.T) {
    	type nodeWithPods struct {
    		name     k8stypes.NodeName
    		podNames []string
    	}
    	tests := []struct {
    		name           string
    		nodes          []nodeWithPods
    		expectedEvents []string
    	}{
    		{
    			"no pods use the volume",
    			[]nodeWithPods{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

      status->status = MessageToBuffer(def, output_graph_def);
    }
    
    void TF_GraphGetOpDef(TF_Graph* graph, const char* op_name,
                          TF_Buffer* output_op_def, TF_Status* status) {
      const OpDef* op_def;
      {
        mutex_lock l(graph->mu);
        status->status = graph->graph.op_registry()->LookUpOpDef(op_name, &op_def);
        if (!status->status.ok()) return;
      }
      status->status = MessageToBuffer(*op_def, output_op_def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    // Returns the serialized OpDef proto with name `op_name`, or a bad status if no
    // such op exists. This can return OpDefs of functions copied into the graph.
    TF_CAPI_EXPORT extern void TF_GraphGetOpDef(TF_Graph* graph,
                                                const char* op_name,
                                                TF_Buffer* output_op_def,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    expected to create these operators.
      }];
    
      let arguments = (ins
        TensorOf<[TF_Float16, TF_Float32, TF_Float64]>:$x,
    
        StrArrayAttr:$op_names
      );
    
      let results = (outs
        TensorOf<[TF_Float16, TF_Float32, TF_Float64]>:$y
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top