Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 751 for Combine (0.11 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    			if cccB == 0 {
    				s = k - 1
    			} else {
    				blocked = s != k-1 && cccB >= cccC
    			}
    			if !blocked {
    				combined := combine(rb.runeAt(s), rb.runeAt(i))
    				if combined != 0 {
    					rb.assignRune(s, combined)
    					continue
    				}
    			}
    		}
    		b[k] = b[i]
    		k++
    	}
    	rb.nrune = k
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/examples/mnist/mnist_train_test.py

        strategy_combinations.one_device_strategy_gpu,
        strategy_combinations.tpu_strategy,
    ]
    
    
    class MnistTrainTest(test_util.TensorFlowTestCase, parameterized.TestCase):
    
      @combinations.generate(combinations.combine(strategy=strategies))
      def testMnistTrain(self, strategy):
        accuracy = mnist_train.main(strategy)
        self.assertGreater(accuracy, 0.7, 'accuracy sanity check')
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 03:38:45 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/impl/none.h

      /// Equality operator.
      bool operator==(const None& other) const { return true; }
    
      /// Overload AbslHashValue.
      template <typename H>
      friend H AbslHashValue(H h, const None& n) {
        return H::combine(std::move(h), 34559);
      }
    
     private:
      // Private contructor.
      None() {}
    };
    
    // Defined in iostream.cc.
    std::ostream& operator<<(std::ostream& o, const None& none);
    
    }  // namespace impl
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 03 20:03:31 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. tensorflow/c/eager/gradients_test.cc

    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, CppGradients,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
                           /*executing_eagerly*/ ::testing::Values(true, false)));
    #else
    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, CppGradients,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. tools/build-kind-image.sh

    images=()
    for arch in "${__arches__[@]}"; do
        image="${registry}-${arch}"
        kind build node-image --image="${image}" --arch="${arch}" "${kdir}"
        images+=("${image}")
    done
    
    # combine to manifest list tagged with kubernetes version
    export DOCKER_CLI_EXPERIMENTAL=enabled
    # images must be pushed to be referenced by docker manifest
    # we push only after all builds have succeeded
    for image in "${images[@]}"; do
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/impl/tensor_spec.h

        return dtype == o.dtype && shape.IsIdenticalTo(o.shape);
      }
    
      /// Overload AbslHashValue to make TensorSpec hashable.
      template <typename H>
      friend H AbslHashValue(H h, const TensorSpec& t) {
        return H::combine(std::move(h), t.shape.DebugString(), t.dtype);
      }
    };
    
    // Defined in `iostream.cc`.
    std::ostream& operator<<(std::ostream& o, const TensorSpec& x);
    
    }  // namespace impl
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 09 21:11:15 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. ci/official/bisect.sh

    #     ci/official/wheel.sh
    #   TFCI: The env config path, relative to the TF root dir, e.g.
    #     ci/official/envs/an_env_config
    #
    # Note that you can combine bisect.sh with any.sh to bisect a single test:
    #
    #   export TFCI=...
    #   export TF_BISECT_SCRIPT=ci/official/any.sh
    #   export TF_BISECT_GOOD=a_good_commit_sha
    #   export TF_BISECT_BAD=a_failing_commit_sha
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/c/eager/gradient_checker_test.cc

    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, GradientCheckerTest,
        ::testing::Combine(::testing::Values("graphdef"),
                           /*tfrt*/ ::testing::Values(false),
                           /*use_function*/ ::testing::Values(true, false)));
    #else
    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, GradientCheckerTest,
        ::testing::Combine(::testing::Values("graphdef"),
                           /*tfrt*/ ::testing::Values(false),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 10:03:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/reporting-plugin-config/sub/pom.xml

          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-configuration</artifactId>
            <version>2.1-SNAPSHOT</version>
            <configuration>
              <stringParams combine.children="append">
                <stringParam>  childParam  </stringParam>
                <stringParam xml:space="preserve">  preserve space  </stringParam>
              </stringParams>
            </configuration>
          </plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/composition.go

    			if cccB == 0 {
    				s = k - 1
    			} else {
    				blocked = s != k-1 && cccB >= cccC
    			}
    			if !blocked {
    				combined := combine(rb.runeAt(s), rb.runeAt(i))
    				if combined != 0 {
    					rb.assignRune(s, combined)
    					continue
    				}
    			}
    		}
    		b[k] = b[i]
    		k++
    	}
    	rb.nrune = k
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
Back to top