Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,077 for zout (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/force_shared_name_for_resource_ops.pbtxt

        value {
          s: ""
        }
      }
    }
    node {
      name: "Call"
      op: "PartitionedCall"
      attr {
        key: "Tin"
        value {
          list {
          }
        }
      }
      attr {
        key: "Tout"
        value {
          list {
            type: DT_RESOURCE
          }
        }
      }
      attr {
        key: "f"
        value {
          func {
            name: "create_resource"
          }
        }
      }
    }
    node: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 31 02:37:48 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/gradients.cc

      std::unordered_map<Node*, int> requested_grads;
      for (const Output& nout : inputs_) {
        if (pending_[nout.node()->id()] > 0) {
          DCHECK_GT(nout.node()->num_outputs(), 1);
          int idx = input_nodes_[nout];
          DCHECK(((*grad_outputs_)[idx].node() == nullptr));
          TF_RETURN_IF_ERROR(SumGradients(nout, &(*grad_outputs_)[idx]));
          ++requested_grads[nout.node()];
        }
      }
      for (const auto& p : requested_grads) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. src/encoding/ascii85/ascii85.go

    		if e.nbuf < 4 {
    			return
    		}
    		nout := Encode(e.out[0:], e.buf[0:])
    		if _, e.err = e.w.Write(e.out[0:nout]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 4 {
    		nn := len(e.out) / 5 * 4
    		if nn > len(p) {
    			nn = len(p)
    		}
    		nn -= nn % 4
    		if nn > 0 {
    			nout := Encode(e.out[0:], p[0:nn])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithDiamondDependencyHelloWorldApp.groovy

                    #else
                    return "${HELLO_WORLD}";
                    #endif
                }
    
                int main () {
                    std::cout << getExeHello() << " ";
                    std::cout << getHello() << " ";
                    sayHello();
                    return 0;
                }
            """)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCppHelloWorldApp.groovy

                const char* greeting() {
                    return "${HELLO_WORLD_FRENCH}";
                }
                #endif
    
                void DLL_FUNC sayHello() {
                    #ifdef FRENCH
                    std::cout << greeting() << std::endl;
                    #else
                    NSString *helloWorld = @"${HELLO_WORLD}\\n";
                    NSFileHandle *stdout = [NSFileHandle fileHandleWithStandardOutput];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. docs/fr/docs/features.md

    ### Court
    
    Des **valeurs par défaut** sont définies pour tout, des configurations optionnelles sont présentent partout. Tous ces paramètres peuvent être ajustés afin de faire ce que vous voulez et définir l'API dont vous avez besoin.
    
    Mais, **tout fonctionne** par défaut.
    
    ### Validation
    
    * Validation pour la plupart (ou tous?) les **types de données** Python incluant:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/tasks/CppUnexportMainSymbolIntegrationTest.groovy

            makeSingleProject()
            file("src/main/cpp/main.cpp") << """
                #include <iostream>
    
                int wmain(int argc, wchar_t *argv[], wchar_t *envp[] ) {
                    std::cout << "hello world!" << std::endl;
                    return 0;
                }
            """
    
            when:
            succeeds("unexport")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppGreeterWithOptionalFeature.groovy

    #include <iostream>
    #include "greeter.h"
    
    void Greeter::sayHello() {
    #ifdef WITH_FEATURE
    #pragma message("compiling with feature enabled")
        std::cout << "${HelloWorldApp.HELLO_WORLD_FRENCH}" << std::endl;
    #else
        std::cout << "${HelloWorldApp.HELLO_WORLD}" << std::endl;
    #endif
    }
    """))
    
        final SourceElement publicHeaders = header
        final SourceElement sources = source
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

    tfr.func @tf__my_identity(%value: !tfr.tensor) -> !tfr.tensor {
      tfr.return %value : !tfr.tensor
    }
    
    tfr.func @tf__my_cast(%value: !tfr.tensor, %tout: !tfr.attr{tfr.name="Tout"}) -> !tfr.tensor {
      %0 = tfr.call @tf__risc_cast(%value, %tout) : (!tfr.tensor, !tfr.attr) -> !tfr.tensor
      tfr.return %0 : !tfr.tensor
    }
    
    tfr.func @tf__my_rsqrt(%value: !tfr.tensor) -> !tfr.tensor {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-order.mlir

        // CHECK-NEXT: op: "PartitionedCall"
        // CHECK:   func {
        // CHECK:     name: "foo"
        // CHECK:   }
        // CHECK: }
        %0 = tf_executor.island wraps "tf.PartitionedCall"() {Tin = [], Tout = [], config = "", config_proto = "", device = "", executor_type = "", f = @foo, name = "Call_foo"} : () -> ()
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK:      library {
    // CHECK:        function {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 18:52:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top